2017-05-20 22:43:55 +02:00
|
|
|
// File: listbox.cpp
|
2017-04-23 18:54:46 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
2017-09-11 03:06:02 +02:00
|
|
|
#include <list>
|
|
|
|
#include <map>
|
2017-04-23 18:54:46 +02:00
|
|
|
#include <fstream>
|
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include <final/fapplication.h>
|
|
|
|
#include <final/fdialog.h>
|
|
|
|
#include <final/flistbox.h>
|
|
|
|
#include <final/fmessagebox.h>
|
2017-05-19 22:16:50 +02:00
|
|
|
|
2017-04-23 18:54:46 +02:00
|
|
|
|
|
|
|
// Global application object
|
|
|
|
static FString* temp_str = 0;
|
|
|
|
|
|
|
|
// Function prototypes
|
2017-05-19 22:16:50 +02:00
|
|
|
void doubleToItem (FListBoxItem&, FWidget::data_ptr container, int index);
|
2017-04-23 18:54:46 +02:00
|
|
|
FString& doubleToString (std::list<double>::const_iterator iter);
|
|
|
|
FString& mapToString (std::map<FString, FString>::const_iterator iter);
|
|
|
|
|
2017-05-19 22:16:50 +02:00
|
|
|
// Lazy conversion import function
|
|
|
|
void doubleToItem (FListBoxItem& item, FWidget::data_ptr container, int index)
|
|
|
|
{
|
|
|
|
typedef std::list<double>* double_list_ptr;
|
|
|
|
double_list_ptr dbllist = static_cast<double_list_ptr>(container);
|
|
|
|
std::list<double>::iterator iter = dbllist->begin();
|
|
|
|
std::advance (iter, index);
|
|
|
|
item.setText (FString().setNumber(*iter));
|
|
|
|
item.setData (FWidget::data_ptr(&(*iter)));
|
|
|
|
}
|
|
|
|
|
2017-04-23 18:54:46 +02:00
|
|
|
// Import converter functions
|
|
|
|
FString& doubleToString (std::list<double>::const_iterator iter)
|
|
|
|
{
|
|
|
|
return temp_str->setNumber(*iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
FString& mapToString (std::map<FString, FString>::const_iterator iter)
|
|
|
|
{
|
|
|
|
return *temp_str = iter->first + ": " + iter->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class Listbox
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class Listbox : public FDialog
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
public:
|
|
|
|
// Constructor
|
|
|
|
explicit Listbox (FWidget* = 0);
|
|
|
|
// Destructor
|
|
|
|
~Listbox();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Disable copy constructor
|
|
|
|
Listbox (const Listbox&);
|
|
|
|
// Disable assignment operator (=)
|
|
|
|
Listbox& operator = (const Listbox&);
|
|
|
|
|
|
|
|
// Event handlers
|
|
|
|
void onClose (FCloseEvent*);
|
|
|
|
|
|
|
|
// Callback method
|
|
|
|
void cb_exitApp (FWidget*, data_ptr);
|
|
|
|
|
|
|
|
// Data Member
|
|
|
|
std::list<double>* double_list;
|
2017-04-23 18:54:46 +02:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
Listbox::Listbox (FWidget* parent)
|
|
|
|
: FDialog(parent)
|
2017-05-19 22:16:50 +02:00
|
|
|
, double_list()
|
2017-04-23 18:54:46 +02:00
|
|
|
{
|
|
|
|
temp_str = new FString;
|
|
|
|
|
|
|
|
// listbox 1
|
|
|
|
FListBox* list1 = new FListBox (this);
|
|
|
|
list1->setGeometry(2, 1, 18, 10);
|
|
|
|
list1->setText ("FListBoxItem");
|
|
|
|
|
|
|
|
for (int i=1; i < 30; i++)
|
|
|
|
list1->insert (L"----- " + FString().setNumber(i) + L" -----");
|
|
|
|
|
|
|
|
// listbox 2
|
2017-05-19 22:47:13 +02:00
|
|
|
double_list = new std::list<double>;
|
|
|
|
|
|
|
|
for (double i=1; i<=15; i++)
|
2017-08-27 09:50:30 +02:00
|
|
|
double_list->push_back(2 * i + (i / 100));
|
2017-05-19 22:47:13 +02:00
|
|
|
|
2017-04-23 18:54:46 +02:00
|
|
|
FListBox* list2 = new FListBox (this);
|
|
|
|
list2->setGeometry(21, 1, 10, 10);
|
|
|
|
list2->setText ("double");
|
|
|
|
|
2017-05-19 22:16:50 +02:00
|
|
|
//
|
|
|
|
// Import via lazy conversion on print
|
|
|
|
//
|
2017-05-19 22:47:13 +02:00
|
|
|
list2->insert (double_list, doubleToItem);
|
2017-04-23 18:54:46 +02:00
|
|
|
|
2017-05-19 22:16:50 +02:00
|
|
|
//
|
|
|
|
// Direct import of the complete list
|
|
|
|
//
|
2017-05-19 22:47:13 +02:00
|
|
|
//list2->insert (double_list->begin(), double_list->end(), doubleToString);
|
2017-04-23 18:54:46 +02:00
|
|
|
|
|
|
|
// listbox 3
|
|
|
|
std::map<FString, FString> TLD;
|
|
|
|
TLD["com"] = "Commercial";
|
|
|
|
TLD["org"] = "Organization";
|
|
|
|
TLD["net"] = "Network";
|
|
|
|
TLD["edu"] = "Education";
|
|
|
|
TLD["gov"] = "Government";
|
|
|
|
|
|
|
|
FListBox* list3;
|
|
|
|
list3 = new FListBox (TLD.begin(), TLD.end(), mapToString, this);
|
|
|
|
list3->setGeometry(32, 1, 21, 10);
|
|
|
|
list3->setText ("key: value");
|
|
|
|
|
|
|
|
// Quit button
|
|
|
|
FButton* Quit = new FButton (this);
|
|
|
|
Quit->setGeometry(42, 12, 10, 1);
|
|
|
|
Quit->setText (L"&Quit");
|
|
|
|
|
2017-08-01 00:56:12 +02:00
|
|
|
// Add quit button function callback
|
2017-04-23 18:54:46 +02:00
|
|
|
Quit->addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
|
|
|
F_METHOD_CALLBACK (this, &Listbox::cb_exitApp)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-09-11 03:06:02 +02:00
|
|
|
Listbox::~Listbox() // destructor
|
2017-04-23 18:54:46 +02:00
|
|
|
{
|
|
|
|
delete temp_str;
|
2017-05-19 22:16:50 +02:00
|
|
|
delete double_list;
|
2017-04-23 18:54:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void Listbox::onClose (FCloseEvent* ev)
|
|
|
|
{
|
|
|
|
int ret = FMessageBox::info ( this, "Quit"
|
|
|
|
, "Do you really want\n"
|
|
|
|
"to quit the program ?"
|
|
|
|
, FMessageBox::Yes
|
|
|
|
, FMessageBox::No );
|
|
|
|
if ( ret == FMessageBox::Yes )
|
|
|
|
ev->accept();
|
|
|
|
else
|
|
|
|
ev->ignore();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void Listbox::cb_exitApp (FWidget*, data_ptr)
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// main part
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
if ( argv[1] && ( std::strcmp(argv[1], "--help") == 0
|
|
|
|
|| std::strcmp(argv[1], "-h") == 0 ) )
|
|
|
|
{
|
|
|
|
std::cout << "Generic options:" << std::endl
|
|
|
|
<< " -h, --help "
|
|
|
|
<< "Display this help and exit" << std::endl;
|
|
|
|
FApplication::print_cmd_Options();
|
|
|
|
std::exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
FApplication app(argc, argv);
|
|
|
|
|
|
|
|
Listbox d(&app);
|
|
|
|
d.setText (L"Listbox");
|
2017-07-18 23:50:51 +02:00
|
|
|
d.setGeometry (int(1 + (app.getWidth() - 56) / 2), 5, 56, 16);
|
2017-04-23 18:54:46 +02:00
|
|
|
d.setShadow();
|
|
|
|
|
|
|
|
app.setMainWidget(&d);
|
|
|
|
d.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|