2015-09-25 21:37:19 +02:00
|
|
|
// File: hello.cpp
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include <final/fapplication.h>
|
|
|
|
#include <final/fmessagebox.h>
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
// Create the application object
|
|
|
|
FApplication app(argc, argv);
|
|
|
|
|
|
|
|
// Create a simple dialog box
|
|
|
|
FMessageBox mbox(&app);
|
|
|
|
mbox.setText("Hello world");
|
2017-09-19 06:18:03 +02:00
|
|
|
|
|
|
|
// Start the application
|
2015-05-23 13:35:12 +02:00
|
|
|
mbox.exec();
|
|
|
|
}
|