2015-09-25 21:37:19 +02:00
|
|
|
// File: dialog.cpp
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
#include "fapp.h"
|
|
|
|
#include "fbutton.h"
|
|
|
|
#include "fdialog.h"
|
|
|
|
#include "flabel.h"
|
|
|
|
|
2015-05-24 19:15:03 +02:00
|
|
|
// function prototype
|
|
|
|
void cb_quit (FWidget*, void* data_ptr);
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// callback function
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void cb_quit (FWidget*, void* data_ptr)
|
|
|
|
{
|
|
|
|
FApplication* app = static_cast<FApplication*>(data_ptr);
|
|
|
|
app->quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// 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
|
|
|
|
FLabel label_1(&dgl),
|
2015-07-18 21:31:26 +02:00
|
|
|
label_2(&dgl);
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2015-07-18 21:31:26 +02:00
|
|
|
label_1.setText ( wchar_t(fc::BlackUpPointingTriangle)
|
|
|
|
+ std::wstring(L"\n")
|
|
|
|
+ wchar_t(fc::BoxDrawingsUpAndRight)
|
2015-05-23 13:35:12 +02:00
|
|
|
+ FString(2, wchar_t(fc::BoxDrawingsHorizontal))
|
2015-07-18 21:31:26 +02:00
|
|
|
+ " Double click the title bar button," );
|
|
|
|
label_2.setText ( "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",
|
2015-09-24 19:01:27 +02:00
|
|
|
_FUNCTION_CALLBACK (&cb_quit),
|
2015-05-23 13:35:12 +02:00
|
|
|
&app
|
|
|
|
);
|
|
|
|
|
|
|
|
app.setMainWidget(&dgl);
|
|
|
|
dgl.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|