add option to blink rec-enables
[ardour.git] / gtk2_ardour / theme_manager.h
1 /*
2     Copyright (C) 2000-2007 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_gtk_color_manager_h__
21 #define __ardour_gtk_color_manager_h__
22
23 #include <gtkmm/treeview.h>
24 #include <gtkmm/treestore.h>
25 #include <gtkmm/scrolledwindow.h>
26 #include <gtkmm/colorselection.h>
27 #include <gtkmm/radiobutton.h>
28 #include <gtkmm/button.h>
29 #include <gtkmm/scale.h>
30 #include <gtkmm/rc.h>
31 #include "ardour_window.h"
32 #include "ui_config.h"
33
34 class ThemeManager : public ArdourWindow
35 {
36   public:
37         ThemeManager();
38         ~ThemeManager();
39
40         int save (std::string path);
41         void setup_theme ();
42         void reset_canvas_colors();
43
44         void on_dark_theme_button_toggled ();
45         void on_light_theme_button_toggled ();
46         void on_flat_buttons_toggled ();
47         void on_blink_rec_arm_toggled ();
48         void on_region_color_toggled ();
49         void on_show_clip_toggled ();
50         void on_waveform_gradient_depth_change ();
51         void on_timeline_item_gradient_depth_change ();
52         void on_all_dialogs_toggled ();
53         void on_icon_set_changed ();
54
55   private:
56         struct ColorDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
57             ColorDisplayModelColumns() {
58                     add (name);
59                     add (gdkcolor);
60                     add (pVar);
61                     add (rgba);
62             }
63
64             Gtk::TreeModelColumn<std::string>  name;
65             Gtk::TreeModelColumn<Gdk::Color>   gdkcolor;
66             Gtk::TreeModelColumn<ColorVariable<uint32_t> *> pVar;
67             Gtk::TreeModelColumn<uint32_t>     rgba;
68         };
69
70         ColorDisplayModelColumns columns;
71         Gtk::TreeView color_display;
72         Glib::RefPtr<Gtk::TreeStore> color_list;
73         Gtk::ColorSelectionDialog color_dialog;
74         Gtk::ScrolledWindow scroller;
75         Gtk::HBox theme_selection_hbox;
76         Gtk::RadioButton dark_button;
77         Gtk::RadioButton light_button;
78         Gtk::Button reset_button;
79         Gtk::CheckButton flat_buttons;
80         Gtk::CheckButton blink_rec_button;
81         Gtk::CheckButton region_color_button;
82         Gtk::CheckButton show_clipping_button;
83         Gtk::HScale waveform_gradient_depth;
84         Gtk::Label waveform_gradient_depth_label;
85         Gtk::HScale timeline_item_gradient_depth;
86         Gtk::Label timeline_item_gradient_depth_label;
87         Gtk::CheckButton all_dialogs;
88         Gtk::CheckButton gradient_waveforms;
89         Gtk::Label icon_set_label;
90         Gtk::ComboBoxText icon_set_dropdown;
91
92         bool button_press_event (GdkEventButton*);
93 };
94
95 #endif /* __ardour_gtk_color_manager_h__ */
96