2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* input-dialog.cpp - an input field example *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
|
|
|
* Copyright 2015-2017 Markus Gans *
|
|
|
|
* *
|
|
|
|
* The 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 *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* The Final Cut is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* 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
|
|
|
|
2017-10-31 00:41:59 +01:00
|
|
|
#include <final/final.h>
|
|
|
|
|
2015-05-24 19:15:03 +02:00
|
|
|
|
|
|
|
// function prototypes
|
2017-02-24 00:30:07 +01:00
|
|
|
void cb_quit (FWidget*, FWidget::data_ptr);
|
|
|
|
void cb_publish (FWidget*, FWidget::data_ptr);
|
2015-05-24 19:15:03 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// callback functions
|
|
|
|
//----------------------------------------------------------------------
|
2017-02-24 00:30:07 +01:00
|
|
|
void cb_quit (FWidget*, FWidget::data_ptr data)
|
2015-05-24 19:15:03 +02:00
|
|
|
{
|
2017-02-24 00:30:07 +01:00
|
|
|
FApplication* app = static_cast<FApplication*>(data);
|
2015-05-24 19:15:03 +02:00
|
|
|
app->quit();
|
|
|
|
}
|
|
|
|
|
2017-02-24 00:30:07 +01:00
|
|
|
void cb_publish (FWidget* widget, FWidget::data_ptr data)
|
2015-05-24 19:15:03 +02:00
|
|
|
{
|
|
|
|
FCheckBox* cbox1 = static_cast<FCheckBox*>(widget);
|
2017-02-24 00:30:07 +01:00
|
|
|
FCheckBox* cbox2 = static_cast<FCheckBox*>(data);
|
2015-05-24 19:15:03 +02:00
|
|
|
|
|
|
|
if ( cbox1->isChecked() )
|
|
|
|
cbox2->setEnable();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cbox2->unsetChecked();
|
|
|
|
cbox2->setDisable();
|
|
|
|
}
|
|
|
|
cbox2->redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// main part
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
// Create the application object
|
|
|
|
FApplication app(argc, argv);
|
|
|
|
|
|
|
|
// Create a simple dialog box
|
|
|
|
FDialog dgl(&app);
|
|
|
|
dgl.setText ("Data input");
|
2015-05-26 22:55:53 +02:00
|
|
|
dgl.setGeometry (4, 2, 37, 22);
|
2015-05-24 19:15:03 +02:00
|
|
|
dgl.setShadow();
|
|
|
|
|
|
|
|
// Create input fields
|
|
|
|
FLineEdit* name_field = new FLineEdit(&dgl);
|
|
|
|
FLineEdit* email_field = new FLineEdit(&dgl);
|
|
|
|
FLineEdit* org_field = new FLineEdit(&dgl);
|
|
|
|
FLineEdit* city_field = new FLineEdit(&dgl);
|
|
|
|
FLineEdit* st_field = new FLineEdit(&dgl);
|
|
|
|
FLineEdit* c_field = new FLineEdit(&dgl);
|
|
|
|
|
2016-11-13 22:08:40 +01:00
|
|
|
name_field->setLabelText(L"&Name");
|
|
|
|
email_field->setLabelText(L"&Email");
|
|
|
|
org_field->setLabelText(L"Or&ganization");
|
|
|
|
city_field->setLabelText(L"&City");
|
|
|
|
st_field->setLabelText(L"&State");
|
|
|
|
c_field->setLabelText(L"&Country");
|
2015-05-24 19:15:03 +02:00
|
|
|
|
|
|
|
name_field->setGeometry(15, 1, 19, 1);
|
|
|
|
email_field->setGeometry(15, 3, 19, 1);
|
|
|
|
org_field->setGeometry(15, 5, 19, 1);
|
|
|
|
city_field->setGeometry(15, 7, 19, 1);
|
|
|
|
st_field->setGeometry(15, 9, 19, 1);
|
|
|
|
c_field->setGeometry(15, 11, 4, 1);
|
|
|
|
|
|
|
|
// Create the button group
|
|
|
|
FButtonGroup* radioButtonGroup = new FButtonGroup("Sex", &dgl);
|
|
|
|
radioButtonGroup->setGeometry(2, 13, 13, 4);
|
2015-05-26 23:15:49 +02:00
|
|
|
|
2015-05-24 19:15:03 +02:00
|
|
|
// Create radio buttons
|
|
|
|
FRadioButton* male = new FRadioButton("&Male", radioButtonGroup);
|
2017-02-18 23:37:10 +01:00
|
|
|
FRadioButton* female = new FRadioButton("&Female", radioButtonGroup);
|
2017-03-12 00:29:56 +01:00
|
|
|
male->setGeometry(1, 1, 8, 1);
|
|
|
|
female->setGeometry(1, 2, 10, 1);
|
2015-05-26 23:15:49 +02:00
|
|
|
|
2015-05-24 19:15:03 +02:00
|
|
|
// Create another button group
|
|
|
|
FButtonGroup* checkButtonGroup = new FButtonGroup("&Data options", &dgl);
|
|
|
|
checkButtonGroup->setGeometry(16, 13, 19, 4);
|
|
|
|
|
|
|
|
// Create checkbox buttons
|
|
|
|
FCheckBox* check1 = new FCheckBox("Save data", checkButtonGroup);
|
|
|
|
FCheckBox* check2 = new FCheckBox("Encrypt data", checkButtonGroup);
|
2017-03-12 00:29:56 +01:00
|
|
|
check1->setGeometry(1, 1, 13, 1);
|
|
|
|
check2->setGeometry(1, 2, 16, 1);
|
2015-05-24 19:15:03 +02:00
|
|
|
check2->setDisable();
|
|
|
|
|
|
|
|
// Create a OK button
|
|
|
|
FButton btn("&OK", &dgl);
|
|
|
|
btn.setGeometry (24, 18, 10, 1);
|
|
|
|
|
|
|
|
// Connect checkbox signal "clicked" with a callback function
|
|
|
|
check1->addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_FUNCTION_CALLBACK (&cb_publish),
|
2015-05-24 19:15:03 +02:00
|
|
|
check2
|
|
|
|
);
|
|
|
|
|
|
|
|
// Connect the button signal "clicked" with the callback function
|
|
|
|
btn.addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_FUNCTION_CALLBACK (&cb_quit),
|
2015-05-24 19:15:03 +02:00
|
|
|
&app
|
|
|
|
);
|
|
|
|
|
2017-09-19 06:18:03 +02:00
|
|
|
// Set dialog object as main widget
|
2015-05-24 19:15:03 +02:00
|
|
|
app.setMainWidget(&dgl);
|
2017-09-19 06:18:03 +02:00
|
|
|
|
|
|
|
// Show and start the application
|
2015-05-24 19:15:03 +02:00
|
|
|
dgl.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|