2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-26 16:54:31 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2006-02-14 12:19:58 -05:00
|
|
|
#ifndef __ardour_gtk_color_manager_h__
|
|
|
|
#define __ardour_gtk_color_manager_h__
|
|
|
|
|
|
|
|
#include <gtkmm/treeview.h>
|
|
|
|
#include <gtkmm/liststore.h>
|
|
|
|
#include <gtkmm/scrolledwindow.h>
|
|
|
|
#include <gtkmm/colorselection.h>
|
2007-05-25 16:29:12 -04:00
|
|
|
#include <gtkmm/radiobutton.h>
|
2008-02-01 22:57:35 -05:00
|
|
|
#include <gtkmm/button.h>
|
2007-05-25 16:29:12 -04:00
|
|
|
#include <gtkmm/rc.h>
|
2006-02-14 12:19:58 -05:00
|
|
|
#include "ardour_dialog.h"
|
2007-06-29 13:13:09 -04:00
|
|
|
#include "ui_config.h"
|
2007-05-25 16:29:12 -04:00
|
|
|
|
|
|
|
class ThemeManager : public ArdourDialog
|
2006-02-14 12:19:58 -05:00
|
|
|
{
|
|
|
|
public:
|
2007-05-25 16:29:12 -04:00
|
|
|
ThemeManager();
|
|
|
|
~ThemeManager();
|
2006-02-14 12:19:58 -05:00
|
|
|
|
|
|
|
int save (std::string path);
|
2007-06-15 18:08:27 -04:00
|
|
|
void setup_theme ();
|
2008-02-01 22:57:35 -05:00
|
|
|
void reset_canvas_colors();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-27 08:12:39 -04:00
|
|
|
void on_dark_theme_button_toggled ();
|
|
|
|
void on_light_theme_button_toggled ();
|
2006-02-14 12:19:58 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct ColorDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
|
2009-10-14 12:10:01 -04:00
|
|
|
ColorDisplayModelColumns() {
|
2006-02-14 12:19:58 -05:00
|
|
|
add (name);
|
|
|
|
add (color);
|
|
|
|
add (gdkcolor);
|
2007-06-15 18:08:27 -04:00
|
|
|
add (pVar);
|
2006-02-14 12:19:58 -05:00
|
|
|
add (rgba);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-09-14 12:51:02 -04:00
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<std::string> color;
|
2006-02-14 12:19:58 -05:00
|
|
|
Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
|
2007-06-29 13:13:09 -04:00
|
|
|
Gtk::TreeModelColumn<UIConfigVariable<uint32_t> *> pVar;
|
2006-02-14 12:19:58 -05:00
|
|
|
Gtk::TreeModelColumn<uint32_t> rgba;
|
|
|
|
};
|
|
|
|
|
|
|
|
ColorDisplayModelColumns columns;
|
|
|
|
Gtk::TreeView color_display;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> color_list;
|
|
|
|
Gtk::ColorSelectionDialog color_dialog;
|
|
|
|
Gtk::ScrolledWindow scroller;
|
2007-05-25 16:29:12 -04:00
|
|
|
Gtk::HBox theme_selection_hbox;
|
|
|
|
Gtk::RadioButton dark_button;
|
|
|
|
Gtk::RadioButton light_button;
|
2008-02-01 22:57:35 -05:00
|
|
|
Gtk::Button reset_button;
|
2006-02-14 12:19:58 -05:00
|
|
|
|
|
|
|
bool button_press_event (GdkEventButton*);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_color_manager_h__ */
|
|
|
|
|