2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* dialog.cpp - A FDialog example *
|
|
|
|
* *
|
2020-07-08 21:32:47 +02: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
|
|
|
* *
|
2020-07-08 21:32:47 +02: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. *
|
|
|
|
* *
|
2020-07-08 21:32:47 +02:00
|
|
|
* 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-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
|
|
|
|
2019-01-21 03:42:18 +01:00
|
|
|
using finalcut::FPoint;
|
|
|
|
using finalcut::FSize;
|
|
|
|
|
2015-05-24 19:15:03 +02:00
|
|
|
// function prototype
|
2020-08-12 22:28:02 +02:00
|
|
|
void cb_quit (const finalcut::FApplication&);
|
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
|
|
|
|
//----------------------------------------------------------------------
|
2020-08-12 22:28:02 +02:00
|
|
|
void cb_quit (const finalcut::FApplication& app)
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2018-12-19 22:04:02 +01:00
|
|
|
app.quit();
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
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
|
2020-05-02 00:07:35 +02:00
|
|
|
finalcut::FApplication app{argc, argv};
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
// Create a simple dialog box
|
2020-05-02 00:07:35 +02:00
|
|
|
finalcut::FDialog dgl{&app};
|
2015-05-23 13:35:12 +02:00
|
|
|
dgl.setText ("FDialog");
|
2020-05-02 00:07:35 +02:00
|
|
|
dgl.setGeometry (FPoint{4, 3}, FSize{41, 11});
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
// Create text labels
|
2020-05-02 00:07:35 +02:00
|
|
|
finalcut::FLabel label_1{&dgl};
|
|
|
|
finalcut::FLabel label_2{&dgl};
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2020-12-31 20:45:10 +01:00
|
|
|
label_1 << finalcut::UniChar::BlackUpPointingTriangle
|
2020-05-02 00:07:35 +02:00
|
|
|
<< std::wstring{L"\n"}
|
2020-12-31 20:45:10 +01:00
|
|
|
<< finalcut::UniChar::BoxDrawingsUpAndRight
|
|
|
|
<< finalcut::FString{2, finalcut::UniChar::BoxDrawingsHorizontal}
|
2017-09-20 05:44:41 +02:00
|
|
|
<< " 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
|
|
|
|
2020-05-02 00:07:35 +02:00
|
|
|
label_1.setGeometry (FPoint{1, 1}, FSize{38, 2});
|
|
|
|
label_2.setGeometry (FPoint{5, 3}, FSize{34, 3});
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
// Create the quit button
|
2020-05-02 00:07:35 +02:00
|
|
|
finalcut::FButton btn{"&Quit", &dgl};
|
|
|
|
btn.setGeometry (FPoint{16, 7}, FSize{9, 1});
|
2015-05-23 13:35:12 +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-23 13:35:12 +02:00
|
|
|
);
|
|
|
|
|
2017-09-19 06:18:03 +02:00
|
|
|
// Set dialog object as main widget
|
2020-04-13 12:40:11 +02:00
|
|
|
finalcut::FWidget::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();
|
|
|
|
}
|