2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* choice.cpp - FButtonGroup with scroll view *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
2020-02-02 22:34:27 +01:00
|
|
|
* Copyright 2017-2020 Markus Gans *
|
2017-11-04 07:03:53 +01:00
|
|
|
* *
|
|
|
|
* 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/>. *
|
|
|
|
***********************************************************************/
|
2017-03-12 00:29:56 +01:00
|
|
|
|
2019-08-06 23:45:28 +02:00
|
|
|
#include <memory>
|
2018-11-20 21:11:04 +01:00
|
|
|
#include <vector>
|
2017-10-31 00:41:59 +01:00
|
|
|
#include <final/final.h>
|
|
|
|
|
2019-01-21 03:42:18 +01:00
|
|
|
using finalcut::FPoint;
|
|
|
|
using finalcut::FSize;
|
|
|
|
|
2018-12-19 22:04:02 +01:00
|
|
|
// Typedef
|
|
|
|
typedef std::shared_ptr<finalcut::FRadioButton> FRadioButtonPtr;
|
2017-03-12 00:29:56 +01:00
|
|
|
|
2018-12-19 22:04:02 +01:00
|
|
|
// Function prototypes
|
2018-12-27 00:14:46 +01:00
|
|
|
void cb_quit (finalcut::FWidget*, FDataPtr);
|
2018-12-19 22:04:02 +01:00
|
|
|
void populateChoice (std::vector<FRadioButtonPtr>&, finalcut::FButtonGroup&);
|
|
|
|
void preset (std::vector<FRadioButtonPtr>&);
|
2017-03-12 00:29:56 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-12-19 22:04:02 +01:00
|
|
|
// Callback functions
|
2017-03-12 00:29:56 +01:00
|
|
|
//----------------------------------------------------------------------
|
2018-12-27 00:14:46 +01:00
|
|
|
void cb_quit (finalcut::FWidget*, FDataPtr data)
|
2017-03-12 00:29:56 +01:00
|
|
|
{
|
2018-12-15 00:50:09 +01:00
|
|
|
auto dlg = static_cast<finalcut::FDialog*>(data);
|
2017-03-12 00:29:56 +01:00
|
|
|
dlg->close();
|
|
|
|
}
|
|
|
|
|
2018-02-24 18:13:42 +01:00
|
|
|
//----------------------------------------------------------------------
|
2018-12-19 22:04:02 +01:00
|
|
|
void populateChoice ( std::vector<FRadioButtonPtr>& os
|
|
|
|
, finalcut::FButtonGroup& group )
|
2018-02-24 18:13:42 +01:00
|
|
|
{
|
2018-12-19 22:04:02 +01:00
|
|
|
os[0] = std::make_shared<finalcut::FRadioButton>("AIX", &group);
|
|
|
|
os[1] = std::make_shared<finalcut::FRadioButton>("Cygwin", &group);
|
|
|
|
os[2] = std::make_shared<finalcut::FRadioButton>("FreeBSD", &group);
|
|
|
|
os[3] = std::make_shared<finalcut::FRadioButton>("HP-UX", &group);
|
|
|
|
os[4] = std::make_shared<finalcut::FRadioButton>("Linux", &group);
|
|
|
|
os[5] = std::make_shared<finalcut::FRadioButton>("Mac OS X", &group);
|
|
|
|
os[6] = std::make_shared<finalcut::FRadioButton>("NetBSD", &group);
|
|
|
|
os[7] = std::make_shared<finalcut::FRadioButton>("OpenBSD", &group);
|
|
|
|
os[8] = std::make_shared<finalcut::FRadioButton>("Solaris", &group);
|
2018-02-24 18:13:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-12-19 22:04:02 +01:00
|
|
|
void preset (std::vector<FRadioButtonPtr>& os)
|
2018-02-24 18:13:42 +01:00
|
|
|
{
|
|
|
|
#if defined(_AIX)
|
|
|
|
os[0]->setChecked();
|
|
|
|
os[0]->setFocus();
|
|
|
|
#elif defined(__CYGWIN__)
|
|
|
|
os[1]->setChecked();
|
|
|
|
os[1]->setFocus();
|
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
os[2]->setChecked();
|
|
|
|
os[2]->setFocus();
|
|
|
|
#elif defined(__hpux)
|
|
|
|
os[3]->setChecked();
|
|
|
|
os[3]->setFocus();
|
|
|
|
#elif defined(__linux__)
|
|
|
|
os[4]->setChecked();
|
|
|
|
os[4]->setFocus();
|
|
|
|
#elif defined(__APPLE__) && defined(__MACH__)
|
|
|
|
os[5]->setChecked();
|
|
|
|
os[5]->setFocus();
|
|
|
|
#elif defined(__NetBSD__)
|
|
|
|
os[6]->setChecked();
|
|
|
|
os[6]->setFocus();
|
|
|
|
#elif defined(__OpenBSD__)
|
|
|
|
os[7]->setChecked();
|
|
|
|
os[7]->setFocus();
|
|
|
|
#elif defined(__sun) && defined(__SVR4)
|
|
|
|
os[8]->setChecked();
|
|
|
|
os[8]->setFocus();
|
|
|
|
#endif
|
|
|
|
}
|
2017-03-12 00:29:56 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// main part
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
2019-08-25 22:16:00 +02:00
|
|
|
finalcut::FString label_text("no OS");
|
2017-03-12 00:29:56 +01:00
|
|
|
|
|
|
|
// Create the application object
|
2018-09-20 23:59:01 +02:00
|
|
|
finalcut::FApplication app(argc, argv);
|
2017-03-12 00:29:56 +01:00
|
|
|
|
2018-10-03 22:23:55 +02:00
|
|
|
{ // Create a simple modal dialog box in this scope
|
|
|
|
finalcut::FDialog dgl(&app);
|
|
|
|
dgl.setModal();
|
|
|
|
dgl.setText ("UNIX select");
|
2020-02-02 22:34:27 +01:00
|
|
|
const std::size_t w{20};
|
|
|
|
const std::size_t h{13};
|
|
|
|
const int x = int(app.getDesktopWidth() - w) / 2;
|
|
|
|
const int y = int(app.getDesktopHeight() - h) / 2;
|
2019-01-21 03:42:18 +01:00
|
|
|
dgl.setGeometry (FPoint(x, y), FSize(w, h));
|
2018-10-03 22:23:55 +02:00
|
|
|
|
|
|
|
// Create a button group
|
|
|
|
finalcut::FButtonGroup checkButtonGroup("choice", &dgl);
|
2019-01-21 03:42:18 +01:00
|
|
|
checkButtonGroup.setGeometry (FPoint(2, 1), FSize(16, 7));
|
2018-10-03 22:23:55 +02:00
|
|
|
|
|
|
|
// Create radio buttons
|
2018-12-24 18:11:16 +01:00
|
|
|
std::vector<FRadioButtonPtr> os(9);
|
2018-12-19 22:04:02 +01:00
|
|
|
populateChoice (os, checkButtonGroup);
|
2018-10-03 22:23:55 +02:00
|
|
|
|
|
|
|
// Set the radio button geometry
|
|
|
|
// => checkButtonGroup.setScrollSize(...) is not required
|
|
|
|
// because a FButtonGroup is self-adjusting
|
2019-08-25 22:16:00 +02:00
|
|
|
for (uInt i{0}; i < os.size(); i++)
|
2019-01-21 03:42:18 +01:00
|
|
|
os[i]->setGeometry(FPoint(1, int(1 + i)), FSize(12, 1));
|
2018-10-03 22:23:55 +02:00
|
|
|
|
|
|
|
preset(os);
|
|
|
|
|
|
|
|
// Scroll to the focused child element
|
|
|
|
finalcut::FFocusEvent cfi (finalcut::fc::ChildFocusIn_Event);
|
2018-12-17 02:06:22 +01:00
|
|
|
finalcut::FApplication::queueEvent(&checkButtonGroup, &cfi);
|
2018-10-03 22:23:55 +02:00
|
|
|
|
|
|
|
// Create a OK button
|
|
|
|
finalcut::FButton ok("&OK", &dgl);
|
2019-01-21 03:42:18 +01:00
|
|
|
ok.setGeometry (FPoint(10, 9), FSize(8, 1));
|
2018-10-03 22:23:55 +02:00
|
|
|
|
|
|
|
// Connect the button signal "clicked" with the callback function
|
|
|
|
ok.addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2019-10-05 23:20:07 +02:00
|
|
|
&cb_quit,
|
2018-10-03 22:23:55 +02:00
|
|
|
&dgl
|
|
|
|
);
|
|
|
|
|
|
|
|
// Show the dialog
|
|
|
|
dgl.show();
|
|
|
|
|
|
|
|
// Get the checked radio button text
|
2019-08-25 22:16:00 +02:00
|
|
|
for (int n{1}; n <= int(checkButtonGroup.getCount()); n++)
|
2017-03-12 00:29:56 +01:00
|
|
|
{
|
2018-10-03 22:23:55 +02:00
|
|
|
if ( checkButtonGroup.isChecked(n) )
|
|
|
|
{
|
|
|
|
label_text = checkButtonGroup.getButton(n)->getText();
|
|
|
|
break;
|
|
|
|
}
|
2017-03-12 00:29:56 +01:00
|
|
|
}
|
2018-10-03 22:23:55 +02:00
|
|
|
} // Hide and destroy the dialog object
|
2017-03-12 00:29:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
// Create and show tooltip for two seconds
|
2018-10-03 22:23:55 +02:00
|
|
|
finalcut::FToolTip tooltip(&app);
|
|
|
|
tooltip.setText ("You have chosen " + label_text);
|
|
|
|
tooltip.show();
|
2017-03-12 00:29:56 +01:00
|
|
|
sleep(2);
|
|
|
|
}
|