32 #ifndef STAGE_DIALOG_PREFERENCES_DIALOG_H 33 #define STAGE_DIALOG_PREFERENCES_DIALOG_H 46 Gtk::Notebook notebook_;
48 Gtk::VBox interfaceBox_;
49 Gtk::ComboBox interfaceThemeCombo_;
53 : Dialog(_(
"Preferences"), parent,
true)
57 Box *v_box = get_vbox();
58 REQUIRE (v_box != NULL);
60 interfaceBox_.pack_start (interfaceThemeCombo_, PACK_SHRINK);
61 interfaceBox_.set_spacing(4);
62 interfaceBox_.set_border_width(5);
64 notebook_.append_page (interfaceBox_, _(
"Interface"));
66 v_box->pack_start (notebook_);
71 set_resizable (
false);
74 add_button (Stock::CANCEL, RESPONSE_CANCEL);
75 add_button (Stock::OK, RESPONSE_OK);
static const int BorderPadding
The space in pixels to pad the border of Lumiera dialog boxes.
Lumiera GTK UI implementation root.
static const int BoxSpacing
The spacing for VBoxes and HBoxes in Lumiera dialogs.
Global constants and definitions for dialogs.
A set of basic GTK includes for the UI.