Add mapping for secondary index term to dbhelper.vim
[ardour.git] / gtk2_ardour / color_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 "ardour_dialog.h"
28 #include "color.h"
29
30 class ColorManager : public ArdourDialog
31 {
32   public:
33         ColorManager();
34         ~ColorManager();
35
36         int load (std::string path);
37         int save (std::string path);
38
39   private:
40         struct ColorDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
41             ColorDisplayModelColumns() { 
42                     add (name);
43                     add (color);
44                     add (gdkcolor);
45                     add (id);
46                     add (rgba);
47             }
48             
49             Gtk::TreeModelColumn<Glib::ustring>  name;
50             Gtk::TreeModelColumn<Glib::ustring>  color;
51             Gtk::TreeModelColumn<Gdk::Color>     gdkcolor;
52             Gtk::TreeModelColumn<ColorID> id;
53             Gtk::TreeModelColumn<uint32_t>       rgba;
54         };
55
56         ColorDisplayModelColumns columns;
57         Gtk::TreeView color_display;
58         Glib::RefPtr<Gtk::ListStore> color_list;
59         Gtk::ColorSelectionDialog color_dialog;
60         Gtk::ScrolledWindow scroller;
61
62         bool button_press_event (GdkEventButton*);
63 };
64
65
66 #endif /* __ardour_gtk_color_manager_h__ */
67