1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
/***********************************************************************
* treeview.cpp - Example of a FListView widget with a tree hierarchy *
* *
* This file is part of the FINAL CUT widget toolkit *
* *
* Copyright 2017-2022 Markus Gans *
* *
* 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. *
* *
* 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/>. *
***********************************************************************/
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <final/final.h>
using finalcut::FPoint;
using finalcut::FSize;
// Function prototypes
auto stringToNumber (const finalcut::FString&) -> sInt64;
auto sortAscending (const finalcut::FObject*, const finalcut::FObject*) -> bool;
auto sortDescending (const finalcut::FObject*, const finalcut::FObject*) -> bool;
auto isLessThanInteger (const finalcut::FString&, const finalcut::FString&) -> bool;
auto isLessThanDouble (const finalcut::FString&, const finalcut::FString&) -> bool;
auto isGreaterThanInteger (const finalcut::FString&, const finalcut::FString&) -> bool;
auto isGreaterThanDouble (const finalcut::FString&, const finalcut::FString&) -> bool;
// non-member functions
//----------------------------------------------------------------------
auto stringToNumber (const finalcut::FString& str) -> sInt64
{
// Cut off one character (because LONG_MAX = 2147483647)
auto num_string = str.left(str.getLength() - 1);
num_string = num_string.replace(",", "");
num_string = num_string.replace('.', "");
auto number = sInt64(num_string.toLong());
return number;
}
//----------------------------------------------------------------------
inline auto isLessThanInteger ( const finalcut::FString& lhs
, const finalcut::FString& rhs ) -> bool
{
const sInt64 l_number = stringToNumber(lhs);
const sInt64 r_number = stringToNumber(rhs);
return l_number < r_number; // lhs < rhs
}
//----------------------------------------------------------------------
inline auto isLessThanDouble ( const finalcut::FString& lhs
, const finalcut::FString& rhs ) -> bool
{
std::setlocale(LC_NUMERIC, "C");
const double l_number = lhs.toDouble();
const double r_number = rhs.toDouble();
return l_number < r_number; // lhs < rhs
}
//----------------------------------------------------------------------
inline auto isGreaterThanInteger ( const finalcut::FString& lhs
, const finalcut::FString& rhs ) -> bool
{
const sInt64 l_number = stringToNumber(lhs);
const sInt64 r_number = stringToNumber(rhs);
return l_number > r_number; // lhs > rhs
}
//----------------------------------------------------------------------
inline auto isGreaterThanDouble ( const finalcut::FString& lhs
, const finalcut::FString& rhs ) -> bool
{
std::setlocale(LC_NUMERIC, "C");
const double l_number = lhs.toDouble();
const double r_number = rhs.toDouble();
return l_number > r_number; // lhs > rhs
}
//----------------------------------------------------------------------
auto sortAscending ( const finalcut::FObject* lhs
, const finalcut::FObject* rhs ) -> bool
{
const auto& l_item = static_cast<const finalcut::FListViewItem*>(lhs);
const auto& r_item = static_cast<const finalcut::FListViewItem*>(rhs);
const int column = l_item->getSortColumn();
const auto& l_str = l_item->getText(column);
const auto& r_str = r_item->getText(column);
if ( column == 2 )
return isGreaterThanInteger(l_str, r_str);
if ( column == 3 )
return isGreaterThanDouble(l_str, r_str);
return false;
}
//----------------------------------------------------------------------
auto sortDescending ( const finalcut::FObject* lhs
, const finalcut::FObject* rhs ) -> bool
{
const auto& l_item = static_cast<const finalcut::FListViewItem*>(lhs);
const auto& r_item = static_cast<const finalcut::FListViewItem*>(rhs);
const int column = l_item->getSortColumn();
const auto& l_str = l_item->getText(column);
const auto& r_str = r_item->getText(column);
if ( column == 2 )
return isLessThanInteger(l_str, r_str);
if ( column == 3 )
return isLessThanDouble(l_str, r_str);
return false;
}
//----------------------------------------------------------------------
// class Treeview
//----------------------------------------------------------------------
class Treeview final : public finalcut::FDialog
{
public:
// Constructor
explicit Treeview (finalcut::FWidget* = nullptr);
private:
// Typedefs
struct TreeItem; // forward declaration
// Methods
auto initAfrica() const -> std::vector<TreeItem>;
auto initAsia() const -> std::vector<TreeItem>;
auto initEurope() const -> std::vector<TreeItem>;
auto initNorthAmerica() const -> std::vector<TreeItem>;
auto initSouthAmerica() const -> std::vector<TreeItem>;
auto initOceania() const -> std::vector<TreeItem>;
void initLayout() override;
void adjustSize() override;
// Event handler
void onClose (finalcut::FCloseEvent*) override;
// Data members
bool initialized{false};
finalcut::FListView listview{this};
finalcut::FButton quit{this};
std::vector<TreeItem> africa{initAfrica()};
std::vector<TreeItem> asia{initAsia()};
std::vector<TreeItem> europe{initEurope()};
std::vector<TreeItem> north_america{initNorthAmerica()};
std::vector<TreeItem> south_america{initSouthAmerica()};
std::vector<TreeItem> oceania{initOceania()};
};
//----------------------------------------------------------------------
// struct Treeview::TreeItem
//----------------------------------------------------------------------
struct Treeview::TreeItem
{
using const_iterator = const char* const*;
auto cbegin() const noexcept -> const_iterator
{ return &name; }
auto cend() const noexcept -> const_iterator
{ return std::next(&density); }
// Data members
const char* name;
const char* population;
const char* density;
std::vector<TreeItem> child_element;
};
// constructors and destructor
//----------------------------------------------------------------------
Treeview::Treeview (finalcut::FWidget* parent)
: finalcut::FDialog{parent}
{
// Add columns to the view
listview.addColumn ("Name", 23);
listview.addColumn ("Population");
listview.addColumn ("Density/km²");
// Set right alignment for the second and third column
listview.setColumnAlignment (2, finalcut::Align::Right);
listview.setColumnAlignment (3, finalcut::Align::Right);
// Set the type of sorting
listview.setColumnSortType (1, finalcut::SortType::Name);
listview.setColumnSortType (2, finalcut::SortType::UserDefined);
listview.setColumnSortType (3, finalcut::SortType::UserDefined);
listview.setUserAscendingCompare(sortAscending);
listview.setUserDescendingCompare(sortDescending);
// Activate tree view
listview.setTreeView();
// Populate FListView with a list of items
const std::vector<TreeItem> continent_list
{
{ "Africa", "944,000,000", "31.2", africa },
{ "Asia", "4,010,000,000", "90.3", asia },
{ "Europe", "733,000,000", "69.9", europe },
{ "North America", "523,000,000", "21", north_america },
{ "South America", "381,000,000", "21.4", south_america },
{ "Antarctica", "1000", "0", {} },
{ "Australia/Oceania", "34,000,000", "4", oceania }
};
for (const auto& continent : continent_list)
{
finalcut::FStringList continent_line ( continent.cbegin()
, continent.cend() );
auto iter = listview.insert (continent_line);
for (const auto& country : continent.child_element)
{
finalcut::FStringList country_line ( country.cbegin()
, country.cend() );
listview.insert (country_line, iter);
}
}
// Quit button text
quit.setText (L"&Quit");
// Callback function
quit.addCallback
(
"clicked",
finalcut::getFApplication(),
&finalcut::FApplication::cb_exitApp,
this
);
initialized = true;
}
//----------------------------------------------------------------------
auto Treeview::initAfrica() const -> std::vector<Treeview::TreeItem>
{
auto list = std::vector<Treeview::TreeItem>
{
{ "Algeria", "40,400,000", "15.9", {} },
{ "Angola", "25,789,024", "20.69", {} },
{ "Botswana", "2,250,260", "3.7", {} },
{ "Cameroon", "22,534,532", "39.7", {} },
{ "Chad", "13,670,084", "8.6", {} },
{ "Egypt", "94,666,000", "87", {} },
{ "Ethiopia", "102,374,044", "92.7", {} },
{ "Ivory Coast", "23,740,424", "63.9", {} },
{ "Libya", "6,541,948", "3.55", {} },
{ "Madagascar", "24,430,325", "35.2", {} },
{ "Mali", "14,517,176", "11.7", {} },
{ "Mauritania", "4,301,018", "3.4", {} },
{ "Mozambique", "24,692,144", "28.7", {} },
{ "Namibia", "2,113,077", "2.54", {} },
{ "Niger", "20,672,987", "12.1", {} },
{ "Nigeria", "185,989,640", "197.2", {} },
{ "Somalia", "14,317,996", "19.31", {} },
{ "South Africa", "54,956,900", "42.4", {} },
{ "South Sudan", "12,340,000", "13.33", {} },
{ "Sudan", "39,578,828", "21.3", {} },
{ "Tanzania", "51,820,00", "47.5", {} },
{ "Zambia", "16,212,000", "17.2", {} }
};
return list;
}
//----------------------------------------------------------------------
auto Treeview::initAsia() const -> std::vector<Treeview::TreeItem>
{
auto list = std::vector<Treeview::TreeItem>
{
{ "Afghanistan", "34,656,032", "49.88", {} },
{ "China", "1,403,500,365", "145.0", {} },
{ "India", "1,324,171,354", "393.9", {} },
{ "Indonesia", "261,115,456", "124.66", {} },
{ "Iran", "80,829,192", "48.0", {} },
{ "Iraq", "37,202,572", "82.7", {} },
{ "Japan", "126,740,000", "336.0", {} },
{ "Kazakhstan", "17,987,736", "6.49", {} },
{ "Mongolia", "3,081,677", "1.97", {} },
{ "Myanmar", "51,486,253", "76.0", {} },
{ "Pakistan", "207,774,520", "244.4", {} },
{ "Russia", "144,463,451", "8.4", {} },
{ "Saudi Arabia", "33,000,000", "15.0", {} },
{ "Thailand", "68,863,514", "132.1", {} },
{ "Turkey", "79,814,871", "102.0", {} },
{ "Turkmenistan", "5,662,544", "10.5", {} },
{ "Uzbekistan", "32,979,000", "70.5", {} },
{ "Vietnam", "94,569,072", "276.03", {} },
{ "Yemen", "27,584,213", "44.7", {} }
};
return list;
}
//----------------------------------------------------------------------
auto Treeview::initEurope() const -> std::vector<Treeview::TreeItem>
{
auto list = std::vector<Treeview::TreeItem>
{
{ "Austria", "8,794,267", "104.0", {} },
{ "Belarus", "9,498,700", "45.8", {} },
{ "Bulgaria", "7,101,859", "64.9", {} },
{ "Czech Republic", "10,610,947", "134.0", {} },
{ "Finland", "5,506,312", "16.0", {} },
{ "France", "66,991,000", "103.0", {} },
{ "Germany", "82,175,700", "227.0", {} },
{ "Greece", "11,183,716", "82.0", {} },
{ "Hungary", "9,797,561", "105.3", {} },
{ "Iceland", "332,529", "3.2", {} },
{ "Italy", "60,589,445", "201.3", {} },
{ "Norway", "5,267,146", "15.8", {} },
{ "Poland", "38,634,007", "123.0", {} },
{ "Portugal", "10,309,573", "115.0", {} },
{ "Romania", "19,638,000", "84.4", {} },
{ "Serbia", "7,058,322", "91.1", {} },
{ "Spain", "46,468,102", "92.0", {} },
{ "Sweden", "10,065,389", "22.0", {} },
{ "United Kingdom", "65,648,000", "270.7", {} }
};
return list;
}
//----------------------------------------------------------------------
auto Treeview::initNorthAmerica() const -> std::vector<Treeview::TreeItem>
{
auto list = std::vector<Treeview::TreeItem>
{
{ "Canada", "35,151,728", "3.92", {} },
{ "Cuba", "11,239,224", "102.3", {} },
{ "Greenland", "56,483", "0.028", {} },
{ "Guatemala", "16,582,469", "129.0", {} },
{ "Honduras", "9,112,867", "64.0", {} },
{ "Mexico", "119,530,753", "61.0", {} },
{ "Nicaragua", "6,167,237", "51.0", {} },
{ "USA", "325,365,189", "35.0", {} }
};
return list;
}
//----------------------------------------------------------------------
auto Treeview::initSouthAmerica() const -> std::vector<Treeview::TreeItem>
{
auto list = std::vector<Treeview::TreeItem>
{
{ "Argentina", "43,847,430", "14.4", {} },
{ "Bolivia", "11,410,651", "10.4", {} },
{ "Brazil", "208,064,000", "24.35", {} },
{ "Chile", "18,006,407", "24.0", {} },
{ "Colombia", "49,364,592", "40.74", {} },
{ "Ecuador", "16,385,068", "58.95", {} },
{ "Guyana", "773,303", "3.502", {} },
{ "Paraguay", "6,725,308", "17.2", {} },
{ "Peru", "31,826,018", "23.0", {} },
{ "Venezuela", "31,568,179", "33.75", {} }
};
return list;
}
//----------------------------------------------------------------------
auto Treeview::initOceania() const -> std::vector<Treeview::TreeItem>
{
auto list = std::vector<Treeview::TreeItem>
{
{ "Australia", "24,675,900", "3.2", {} },
{ "Papua New Guinea", "7,059,653", "15.0", {} },
{ "Papua", "3,486,432", "11.0", {} },
{ "New Zealand", "4,823,090", "17.5", {} },
{ "West Papua", "877,437", "6.3", {} },
{ "Solomon Islands", "599,419", "18.1", {} },
{ "New Caledonia", "268,767", "14.5", {} },
{ "Fiji", "898,76", "46.4", {} },
{ "Hawaii", "1,428,557", "82.6", {} },
{ "Vanuatu", "270,402", "19.7", {} },
{ "French Polynesia", "280,208", "76.0", {} },
{ "Samoa", "192,342", "68.0", {} },
{ "Kiribati", "110,136", "152.0", {} }
};
return list;
}
//----------------------------------------------------------------------
void Treeview::initLayout()
{
// Set FListView geometry
listview.setGeometry(FPoint{2, 1}, FSize{53, 14});
// Set quit button geometry
quit.setGeometry(FPoint{24, 16}, FSize{10, 1});
FDialog::initLayout();
}
//----------------------------------------------------------------------
void Treeview::adjustSize()
{
finalcut::FDialog::adjustSize();
std::size_t h = getDesktopHeight() - 4;
setHeight (h, false);
auto x = int((getDesktopWidth() - getWidth()) / 2);
if ( x < 1 )
x = 1;
setPos (FPoint{x, 3}, false);
if ( initialized )
{
listview.setHeight (getHeight() - 6, true);
quit.setY(int(getHeight()) - 4);
}
}
//----------------------------------------------------------------------
void Treeview::onClose (finalcut::FCloseEvent* ev)
{
finalcut::FApplication::closeConfirmationDialog (this, ev);
}
//----------------------------------------------------------------------
// main part
//----------------------------------------------------------------------
auto main (int argc, char* argv[]) -> int
{
// Create the application object
finalcut::FApplication app{argc, argv};
// Create main dialog object
Treeview d{&app};
d.setText (L"Continents");
d.setSize (FSize{57, 20});
d.setShadow();
// Set dialog d as main widget
finalcut::FWidget::setMainWidget(&d);
// Show and start the application
d.show();
return app.exec();
}
|