X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftheme_manager.h;h=04aa3ed7701be838a9dbb6bf39edd15acb392270;hb=d697a31abf2fa1b0bedcab025188f03611920fdf;hp=37a451da0778499edb758e1afebda7c9b56448ff;hpb=dbafe45a280cc6c33bb7dca72202c109012cd8eb;p=ardour.git diff --git a/gtk2_ardour/theme_manager.h b/gtk2_ardour/theme_manager.h index 37a451da07..04aa3ed770 100644 --- a/gtk2_ardour/theme_manager.h +++ b/gtk2_ardour/theme_manager.h @@ -27,10 +27,10 @@ #include #include #include -#include "ardour_dialog.h" +#include "ardour_window.h" #include "ui_config.h" -class ThemeManager : public ArdourDialog +class ThemeManager : public ArdourWindow { public: ThemeManager(); @@ -42,22 +42,23 @@ class ThemeManager : public ArdourDialog void on_dark_theme_button_toggled (); void on_light_theme_button_toggled (); + void on_flat_buttons_toggled (); + void on_all_dialogs_toggled (); + void on_gradient_waveforms_toggled (); private: struct ColorDisplayModelColumns : public Gtk::TreeModel::ColumnRecord { ColorDisplayModelColumns() { add (name); - add (color); add (gdkcolor); - add (pVar); + add (pVar); add (rgba); } Gtk::TreeModelColumn name; - Gtk::TreeModelColumn color; - Gtk::TreeModelColumn gdkcolor; + Gtk::TreeModelColumn gdkcolor; Gtk::TreeModelColumn *> pVar; - Gtk::TreeModelColumn rgba; + Gtk::TreeModelColumn rgba; }; ColorDisplayModelColumns columns; @@ -69,6 +70,9 @@ class ThemeManager : public ArdourDialog Gtk::RadioButton dark_button; Gtk::RadioButton light_button; Gtk::Button reset_button; + Gtk::CheckButton flat_buttons; + Gtk::CheckButton all_dialogs; + Gtk::CheckButton gradient_waveforms; bool button_press_event (GdkEventButton*); };