a boatload of minor and middle-sized changes to try to speed up undo. imperfect,...
[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/liststore.h>
25 #include <gtkmm/scrolledwindow.h>
26 #include <gtkmm/colorselection.h>
27 #include <gtkmm/radiobutton.h>
28 #include <gtkmm/button.h>
29 #include <gtkmm/rc.h>
30 #include "ardour_dialog.h"
31 #include "ui_config.h"
32
33 class ThemeManager : public ArdourDialog
34 {
35   public:
36         ThemeManager();
37         ~ThemeManager();
38
39         int save (std::string path);
40         void setup_theme ();
41         void reset_canvas_colors();
42
43         void on_dark_theme_button_toggled ();
44         void on_light_theme_button_toggled ();
45
46   private:
47         struct ColorDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
48             ColorDisplayModelColumns() {
49                     add (name);
50                     add (color);
51                     add (gdkcolor);
52                         add (pVar);
53                     add (rgba);
54             }
55
56             Gtk::TreeModelColumn<Glib::ustring>  name;
57             Gtk::TreeModelColumn<Glib::ustring>  color;
58             Gtk::TreeModelColumn<Gdk::Color>     gdkcolor;
59             Gtk::TreeModelColumn<UIConfigVariable<uint32_t> *> pVar;
60             Gtk::TreeModelColumn<uint32_t>       rgba;
61         };
62
63         ColorDisplayModelColumns columns;
64         Gtk::TreeView color_display;
65         Glib::RefPtr<Gtk::ListStore> color_list;
66         Gtk::ColorSelectionDialog color_dialog;
67         Gtk::ScrolledWindow scroller;
68         Gtk::HBox theme_selection_hbox;
69         Gtk::RadioButton dark_button;
70         Gtk::RadioButton light_button;
71         Gtk::Button reset_button;
72
73         bool button_press_event (GdkEventButton*);
74 };
75
76 #endif /* __ardour_gtk_color_manager_h__ */
77