move color theme selector into color tab for preferences
[ardour.git] / gtk2_ardour / color_theme_manager.h
index b83b5ae52315cfad39463dac3162de593a6b53ee..d565066a181d8675cb98e71f7e34ad4bb64dc0bc 100644 (file)
@@ -147,6 +147,24 @@ class ColorThemeManager : public Gtk::VBox, public OptionEditorComponent
 
        void colors_changed ();
        void set_ui_to_state ();
+
+
+       struct ColorThemeModelColumns : public Gtk::TreeModel::ColumnRecord {
+               ColorThemeModelColumns() {
+                       add (name);
+                       add (path);
+               }
+
+               Gtk::TreeModelColumn<std::string>  name;
+               Gtk::TreeModelColumn<std::string>  path;
+       };
+
+       ColorThemeModelColumns color_theme_columns;
+       Glib::RefPtr<Gtk::TreeStore> theme_list;
+
+       Gtk::Label color_theme_label;
+       Gtk::ComboBox color_theme_dropdown;
+
 };
 
 #endif /* __ardour_gtk_color_manager_h__ */