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>
|
2011-11-09 21:52:39 -05:00
|
|
|
#include <gtkmm/treestore.h>
|
2006-02-14 12:19:58 -05:00
|
|
|
#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>
|
2013-04-16 21:23:50 -04:00
|
|
|
#include <gtkmm/scale.h>
|
2007-05-25 16:29:12 -04:00
|
|
|
#include <gtkmm/rc.h>
|
2014-12-05 09:01:49 -05:00
|
|
|
|
2014-12-07 13:12:36 -05:00
|
|
|
#include "canvas/types.h"
|
2014-12-05 09:01:49 -05:00
|
|
|
#include "canvas/canvas.h"
|
|
|
|
|
2007-06-29 13:13:09 -04:00
|
|
|
#include "ui_config.h"
|
2007-05-25 16:29:12 -04:00
|
|
|
|
2014-12-05 09:01:49 -05:00
|
|
|
namespace ArdourCanvas {
|
|
|
|
class Container;
|
|
|
|
class ScrollGroup;
|
|
|
|
}
|
|
|
|
|
2014-12-07 13:12:36 -05:00
|
|
|
class ArdourDialog;
|
|
|
|
|
2014-12-15 12:32:41 -05:00
|
|
|
class ThemeManager : public Gtk::VBox
|
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);
|
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 ();
|
2012-05-22 12:36:59 -04:00
|
|
|
void on_flat_buttons_toggled ();
|
2014-08-27 15:41:49 -04:00
|
|
|
void on_blink_rec_arm_toggled ();
|
2013-06-28 11:31:26 -04:00
|
|
|
void on_region_color_toggled ();
|
2013-06-28 20:21:30 -04:00
|
|
|
void on_show_clip_toggled ();
|
2013-04-16 21:23:50 -04:00
|
|
|
void on_waveform_gradient_depth_change ();
|
2013-04-16 23:46:22 -04:00
|
|
|
void on_timeline_item_gradient_depth_change ();
|
2013-05-07 18:09:12 -04:00
|
|
|
void on_all_dialogs_toggled ();
|
2015-03-09 11:25:25 -04:00
|
|
|
void on_transients_follow_front_toggled ();
|
2014-06-10 14:39:08 -04:00
|
|
|
void on_icon_set_changed ();
|
2006-02-14 12:19:58 -05:00
|
|
|
|
|
|
|
private:
|
2014-12-05 09:01:49 -05:00
|
|
|
Gtk::Notebook notebook;
|
2014-12-07 13:12:36 -05:00
|
|
|
|
|
|
|
struct BasicColorDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
BasicColorDisplayModelColumns() {
|
|
|
|
add (name);
|
|
|
|
add (gdkcolor);
|
|
|
|
}
|
|
|
|
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
|
2006-02-14 12:19:58 -05:00
|
|
|
};
|
2014-12-07 13:12:36 -05:00
|
|
|
|
2006-02-14 12:19:58 -05:00
|
|
|
Gtk::ColorSelectionDialog color_dialog;
|
2014-12-07 13:12:36 -05:00
|
|
|
sigc::connection color_dialog_connection;
|
|
|
|
|
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;
|
2012-05-22 12:36:59 -04:00
|
|
|
Gtk::CheckButton flat_buttons;
|
2014-08-27 15:41:49 -04:00
|
|
|
Gtk::CheckButton blink_rec_button;
|
2013-06-28 11:31:26 -04:00
|
|
|
Gtk::CheckButton region_color_button;
|
2013-06-28 20:21:30 -04:00
|
|
|
Gtk::CheckButton show_clipping_button;
|
2013-04-16 21:23:50 -04:00
|
|
|
Gtk::HScale waveform_gradient_depth;
|
|
|
|
Gtk::Label waveform_gradient_depth_label;
|
2013-04-16 23:46:22 -04:00
|
|
|
Gtk::HScale timeline_item_gradient_depth;
|
|
|
|
Gtk::Label timeline_item_gradient_depth_label;
|
2013-05-07 18:09:12 -04:00
|
|
|
Gtk::CheckButton all_dialogs;
|
2015-03-09 11:25:25 -04:00
|
|
|
Gtk::CheckButton transients_follow_front;
|
2012-07-10 14:43:09 -04:00
|
|
|
Gtk::CheckButton gradient_waveforms;
|
2014-06-10 14:23:14 -04:00
|
|
|
Gtk::Label icon_set_label;
|
|
|
|
Gtk::ComboBoxText icon_set_dropdown;
|
2006-02-14 12:19:58 -05:00
|
|
|
|
2014-12-07 13:12:36 -05:00
|
|
|
/* handls response from color dialog when it is used to
|
|
|
|
edit a derived color.
|
|
|
|
*/
|
|
|
|
void palette_color_response (int, std::string);
|
|
|
|
|
|
|
|
Gtk::ScrolledWindow palette_scroller;
|
|
|
|
ArdourCanvas::GtkCanvasViewport palette_viewport;
|
|
|
|
ArdourCanvas::Container* palette_group;
|
2014-12-05 09:01:49 -05:00
|
|
|
|
2014-12-07 13:12:36 -05:00
|
|
|
/* these methods create and manage a canvas for use in either the
|
|
|
|
palette tab or in a separate dialog. Different behaviour is
|
|
|
|
accomplished by changing the event handler passed into the
|
|
|
|
allocation handler. We do it there because we have to rebuild
|
|
|
|
the canvas on allocation events, and during the rebuild, connect
|
|
|
|
each rectangle to the event handler.
|
|
|
|
|
|
|
|
the alternative is one event handler for the canvas and a map
|
|
|
|
of where each color rectangle is. nothing wrong with this
|
|
|
|
but the per-rect event setup is simpler and avoids building
|
|
|
|
and looking up the map information.
|
|
|
|
*/
|
|
|
|
ArdourCanvas::Container* initialize_palette_canvas (ArdourCanvas::Canvas& canvas);
|
|
|
|
void build_palette_canvas (ArdourCanvas::Canvas&, ArdourCanvas::Container&, sigc::slot<bool,GdkEvent*,std::string> event_handler);
|
|
|
|
void palette_canvas_allocated (Gtk::Allocation& alloc, ArdourCanvas::Container* group, ArdourCanvas::Canvas* canvas, sigc::slot<bool,GdkEvent*,std::string> event_handler);
|
|
|
|
void palette_size_request (Gtk::Requisition*);
|
|
|
|
|
|
|
|
/* handles events from a palette canvas inside the palette (derived
|
|
|
|
colors) tab
|
|
|
|
*/
|
|
|
|
bool palette_event (GdkEvent*, std::string name);
|
|
|
|
/* allows user to edit a named color (e.g. "color 3") after clicking
|
|
|
|
on it inside the palette tab.
|
|
|
|
*/
|
|
|
|
void edit_palette_color (std::string);
|
2014-12-05 09:01:49 -05:00
|
|
|
|
|
|
|
struct ColorAliasModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
ColorAliasModelColumns() {
|
|
|
|
add (name);
|
|
|
|
add (alias);
|
|
|
|
add (color);
|
2014-12-15 15:54:10 -05:00
|
|
|
add (key);
|
2014-12-05 09:01:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<std::string> alias;
|
|
|
|
Gtk::TreeModelColumn<Gdk::Color> color;
|
2014-12-15 15:54:10 -05:00
|
|
|
Gtk::TreeModelColumn<std::string> key;
|
2014-12-05 09:01:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
ColorAliasModelColumns alias_columns;
|
|
|
|
Gtk::TreeView alias_display;
|
|
|
|
Glib::RefPtr<Gtk::TreeStore> alias_list;
|
|
|
|
Gtk::ScrolledWindow alias_scroller;
|
|
|
|
|
|
|
|
bool alias_button_press_event (GdkEventButton*);
|
|
|
|
|
2014-12-07 13:12:36 -05:00
|
|
|
ArdourDialog* palette_window;
|
|
|
|
sigc::connection palette_response_connection;
|
2014-12-05 09:01:49 -05:00
|
|
|
|
|
|
|
void choose_color_from_palette (std::string const &target_name);
|
2014-12-07 13:12:36 -05:00
|
|
|
|
|
|
|
bool alias_palette_event (GdkEvent*, std::string, std::string);
|
|
|
|
void alias_palette_response (int, std::string, std::string);
|
2014-12-05 09:01:49 -05:00
|
|
|
|
|
|
|
void setup_aliases ();
|
2014-12-07 13:12:36 -05:00
|
|
|
void setup_palette ();
|
2014-12-08 18:19:11 -05:00
|
|
|
|
2014-12-15 12:07:05 -05:00
|
|
|
Gtk::ScrolledWindow modifier_scroller;
|
|
|
|
Gtk::VBox modifier_vbox;
|
|
|
|
|
|
|
|
void setup_modifiers ();
|
|
|
|
void modifier_edited (Gtk::Range*, std::string);
|
|
|
|
|
2014-12-08 18:19:11 -05:00
|
|
|
void colors_changed ();
|
2015-01-21 14:24:39 -05:00
|
|
|
void set_ui_to_state ();
|
2006-02-14 12:19:58 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_color_manager_h__ */
|
|
|
|
|