X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftheme_manager.h;h=e52c4630f3c5a1264b5a8fb72e8b3e40f40ed06b;hb=b4dd5b737fe7c6c8c01c37ca8f78ad7624262cb7;hp=a8a70b6c9a860c696d54e7d1ac6f707c600a6bd1;hpb=789cbb21810802adc478de3134fa42950c5e8569;p=ardour.git diff --git a/gtk2_ardour/theme_manager.h b/gtk2_ardour/theme_manager.h index a8a70b6c9a..e52c4630f3 100644 --- a/gtk2_ardour/theme_manager.h +++ b/gtk2_ardour/theme_manager.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2007 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,54 +21,74 @@ #define __ardour_gtk_color_manager_h__ #include -#include +#include #include #include #include +#include +#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(); ~ThemeManager(); int save (std::string path); - void load_rc (int which); void setup_theme (); + void reset_canvas_colors(); + + void on_dark_theme_button_toggled (); + void on_light_theme_button_toggled (); + void on_flat_buttons_toggled (); + void on_region_color_toggled (); + void on_show_clip_toggled (); + void on_waveform_gradient_depth_change (); + void on_timeline_item_gradient_depth_change (); + void on_all_dialogs_toggled (); + void on_icon_set_changed (); private: struct ColorDisplayModelColumns : public Gtk::TreeModel::ColumnRecord { - ColorDisplayModelColumns() { + ColorDisplayModelColumns() { add (name); - add (color); add (gdkcolor); - add (pVar); + add (pVar); add (rgba); } - - Gtk::TreeModelColumn name; - Gtk::TreeModelColumn color; - Gtk::TreeModelColumn gdkcolor; - Gtk::TreeModelColumn *> pVar; - Gtk::TreeModelColumn rgba; + + Gtk::TreeModelColumn name; + Gtk::TreeModelColumn gdkcolor; + Gtk::TreeModelColumn *> pVar; + Gtk::TreeModelColumn rgba; }; ColorDisplayModelColumns columns; Gtk::TreeView color_display; - Glib::RefPtr color_list; + Glib::RefPtr color_list; Gtk::ColorSelectionDialog color_dialog; Gtk::ScrolledWindow scroller; Gtk::HBox theme_selection_hbox; Gtk::RadioButton dark_button; Gtk::RadioButton light_button; + Gtk::Button reset_button; + Gtk::CheckButton flat_buttons; + Gtk::CheckButton region_color_button; + Gtk::CheckButton show_clipping_button; + Gtk::HScale waveform_gradient_depth; + Gtk::Label waveform_gradient_depth_label; + Gtk::HScale timeline_item_gradient_depth; + Gtk::Label timeline_item_gradient_depth_label; + Gtk::CheckButton all_dialogs; + Gtk::CheckButton gradient_waveforms; + Gtk::Label icon_set_label; + Gtk::ComboBoxText icon_set_dropdown; bool button_press_event (GdkEventButton*); }; - #endif /* __ardour_gtk_color_manager_h__ */