2017-10-02 07:32:33 +02:00
|
|
|
/************************************************************************
|
|
|
|
* dialog.cpp - A FDialog 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 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 General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
************************************************************************/
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-10-31 00:41:59 +01:00
|
|
|
#include <final/final.h>
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2015-05-24 19:15:03 +02:00
|
|
|
// function prototype
|
2017-02-24 00:30:07 +01:00
|
|
|
void cb_quit (FWidget*, FWidget::data_ptr);
|
2015-05-24 19:15:03 +02:00
|
|
|
|
2017-10-02 07:32:33 +02:00
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// callback function
|
|
|
|
//----------------------------------------------------------------------
|
2017-02-24 00:30:07 +01:00
|
|
|
void cb_quit (FWidget*, FWidget::data_ptr data)
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2017-02-24 00:30:07 +01:00
|
|
|
FApplication* app = static_cast<FApplication*>(data);
|
2015-05-23 13:35:12 +02:00
|
|
|
app->quit();
|
|
|
|
}
|
|
|
|
|
2017-10-02 07:32:33 +02:00
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// 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 ("FDialog");
|
|
|
|
dgl.setGeometry (4, 3, 41, 11);
|
|
|
|
|
|
|
|
// Create text labels
|
2017-09-20 05:44:41 +02:00
|
|
|
FLabel label_1(&dgl);
|
|
|
|
FLabel label_2(&dgl);
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-09-20 05:44:41 +02:00
|
|
|
label_1 << wchar_t(fc::BlackUpPointingTriangle)
|
|
|
|
<< std::wstring(L"\n")
|
|
|
|
<< wchar_t(fc::BoxDrawingsUpAndRight)
|
|
|
|
<< FString(2, wchar_t(fc::BoxDrawingsHorizontal))
|
|
|
|
<< " Double click the title bar button,";
|
|
|
|
label_2 << "press Q on the keyboard,\n"
|
|
|
|
<< "or push the button below to exit\n"
|
|
|
|
<< "the program.";
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2015-07-18 21:31:26 +02:00
|
|
|
label_1.setGeometry (1, 1, 38, 2);
|
|
|
|
label_2.setGeometry (5, 3, 34, 3);
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
// Create the quit button
|
|
|
|
FButton btn("&Quit", &dgl);
|
|
|
|
btn.setGeometry (16, 7, 9, 1);
|
|
|
|
|
|
|
|
// 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-23 13:35:12 +02:00
|
|
|
&app
|
|
|
|
);
|
|
|
|
|
2017-09-19 06:18:03 +02:00
|
|
|
// Set dialog object as main widget
|
2015-05-23 13:35:12 +02:00
|
|
|
app.setMainWidget(&dgl);
|
2017-09-19 06:18:03 +02:00
|
|
|
|
|
|
|
// Show and start the application
|
2015-05-23 13:35:12 +02:00
|
|
|
dgl.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|