gui
Loading...
Searching...
No Matches
leftButtons.cc
Go to the documentation of this file.
1// gemc
2#include "gui.h"
3
4void GemcGUI::createLeftButtons() {
5 // Build the icon list in the same order as the right-side stacked widget pages.
6 std::vector<std::string> bicons;
7
8 bicons.push_back(":/gui/images/buttons/display");
9 bicons.push_back(":/gui/images/buttons/dialog");
10 bicons.push_back(":/gui/images/buttons/setup");
11 bicons.push_back(":/gui/images/buttons/tree");
12
13 // The button widget provides both the list UI and the selected index used for page switching.
14 leftButtons = new GQTButtonsWidget(96, 96, bicons);
15}