finalcut/examples/input-dialog.cpp

144 lines
5.0 KiB
C++
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* input-dialog.cpp - An input field example *
2017-11-04 07:03:53 +01:00
* *
* This file is part of the FINAL CUT widget toolkit *
2017-11-04 07:03:53 +01:00
* *
2020-04-13 12:40:11 +02:00
* Copyright 2015-2020 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* FINAL CUT is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation; either version 3 of *
2017-11-04 07:03:53 +01:00
* the License, or (at your option) any later version. *
* *
* FINAL CUT is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
2017-11-04 07:03:53 +01:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
2015-05-24 19:15:03 +02:00
#include <final/final.h>
using finalcut::FPoint;
using finalcut::FSize;
2015-05-24 19:15:03 +02:00
// function prototypes
2020-08-12 22:28:02 +02:00
void cb_quit (const finalcut::FApplication&);
void cb_publish (const finalcut::FCheckBox&, finalcut::FCheckBox&);
2015-05-24 19:15:03 +02:00
2015-05-24 19:15:03 +02:00
//----------------------------------------------------------------------
// callback functions
//----------------------------------------------------------------------
2020-08-12 22:28:02 +02:00
void cb_quit (const finalcut::FApplication& app)
2015-05-24 19:15:03 +02:00
{
2020-08-11 23:04:46 +02:00
app.quit();
2015-05-24 19:15:03 +02:00
}
2020-08-11 23:04:46 +02:00
//----------------------------------------------------------------------
2020-08-12 22:28:02 +02:00
void cb_publish ( const finalcut::FCheckBox& cbox1
, finalcut::FCheckBox& cbox2 )
2015-05-24 19:15:03 +02:00
{
2020-08-11 23:04:46 +02:00
if ( cbox1.isChecked() )
cbox2.setEnable();
2015-05-24 19:15:03 +02:00
else
{
2020-08-11 23:04:46 +02:00
cbox2.unsetChecked();
cbox2.setDisable();
2015-05-24 19:15:03 +02:00
}
2020-08-11 23:04:46 +02:00
cbox2.redraw();
2015-05-24 19:15:03 +02:00
}
//----------------------------------------------------------------------
// main part
//----------------------------------------------------------------------
int main (int argc, char* argv[])
{
// Create the application object
finalcut::FApplication app{argc, argv};
2015-05-24 19:15:03 +02:00
// Create a simple dialog box
finalcut::FDialog dgl{&app};
2015-05-24 19:15:03 +02:00
dgl.setText ("Data input");
dgl.setGeometry (FPoint{4, 2}, FSize{37, 22});
dgl.setShadow(); // Instead of the transparent window shadow
2015-05-24 19:15:03 +02:00
// Create input fields
finalcut::FLineEdit name_field {&dgl};
finalcut::FLineEdit pw_field {&dgl};
finalcut::FLineEdit email_field {&dgl};
finalcut::FLineEdit city_field {&dgl};
finalcut::FLineEdit st_field {&dgl};
finalcut::FLineEdit c_field {&dgl};
// Set input type to password
pw_field.setInputType (finalcut::FLineEdit::password);
name_field.setLabelText (L"&Name");
pw_field.setLabelText (L"&Password");
email_field.setLabelText (L"&Email");
city_field.setLabelText (L"&City");
st_field.setLabelText (L"&State");
c_field.setLabelText (L"&Country");
name_field.setGeometry (FPoint{11, 1}, FSize{23, 1});
pw_field.setGeometry (FPoint{11, 3}, FSize{23, 1});
email_field.setGeometry (FPoint{11, 5}, FSize{23, 1});
city_field.setGeometry (FPoint{11, 7}, FSize{23, 1});
st_field.setGeometry (FPoint{11, 9}, FSize{23, 1});
c_field.setGeometry (FPoint{11, 11}, FSize{4, 1});
2015-05-24 19:15:03 +02:00
// Create the button group
finalcut::FButtonGroup radiobutton_group {"Sex", &dgl};
radiobutton_group.setGeometry(FPoint{2, 13}, FSize{13, 4});
2015-05-26 23:15:49 +02:00
2015-05-24 19:15:03 +02:00
// Create radio buttons
finalcut::FRadioButton male {"&Male", &radiobutton_group};
finalcut::FRadioButton female {"&Female", &radiobutton_group};
male.setGeometry (FPoint{1, 1}, FSize{8, 1});
female.setGeometry (FPoint{1, 2}, FSize{10, 1});
2015-05-26 23:15:49 +02:00
2015-05-24 19:15:03 +02:00
// Create another button group
finalcut::FButtonGroup checkbutton_group {"&Data options", &dgl};
checkbutton_group.setGeometry(FPoint{16, 13}, FSize{19, 4});
2015-05-24 19:15:03 +02:00
// Create checkbox buttons
finalcut::FCheckBox check1 {"Save data", &checkbutton_group};
finalcut::FCheckBox check2 {"Encrypt data", &checkbutton_group};
check1.setGeometry (FPoint{1, 1}, FSize{13, 1});
check2.setGeometry (FPoint{1, 2}, FSize{16, 1});
check2.setDisable();
2015-05-24 19:15:03 +02:00
// Create a OK button
finalcut::FButton btn {"&OK", &dgl};
btn.setGeometry (FPoint{24, 18}, FSize{10, 1});
2015-05-24 19:15:03 +02:00
// Connect checkbox signal "clicked" with a callback function
check1.addCallback
2015-05-24 19:15:03 +02:00
(
"clicked",
2019-10-05 23:20:07 +02:00
&cb_publish,
2020-08-11 23:04:46 +02:00
std::ref(check1),
std::ref(check2)
2015-05-24 19:15:03 +02:00
);
// Connect the button signal "clicked" with the callback function
btn.addCallback
(
"clicked",
2019-10-05 23:20:07 +02:00
&cb_quit,
2020-08-11 23:04:46 +02:00
std::ref(app)
2015-05-24 19:15:03 +02:00
);
// Set dialog object as main widget
2020-04-13 12:40:11 +02:00
finalcut::FWidget::setMainWidget(&dgl);
// Show and start the application
2015-05-24 19:15:03 +02:00
dgl.show();
return app.exec();
}