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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-06-07 14:38:57 -04:00
|
|
|
#ifndef __ardour_gtk_theme_manager_h__
|
|
|
|
#define __ardour_gtk_theme_manager_h__
|
2006-02-14 12:19:58 -05:00
|
|
|
|
|
|
|
#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>
|
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
|
|
|
|
2007-06-29 13:13:09 -04:00
|
|
|
#include "ui_config.h"
|
2007-05-25 16:29:12 -04:00
|
|
|
|
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();
|
2006-02-14 12:19:58 -05:00
|
|
|
|
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 ();
|
2015-12-21 08:38:45 -05:00
|
|
|
void on_floating_monitor_section_toggled ();
|
2014-06-10 14:39:08 -04:00
|
|
|
void on_icon_set_changed ();
|
2006-02-14 12:19:58 -05:00
|
|
|
|
|
|
|
private:
|
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;
|
2015-12-21 08:38:45 -05:00
|
|
|
Gtk::CheckButton floating_monitor_section;
|
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;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2016-06-07 14:38:57 -04:00
|
|
|
#endif /* __ardour_gtk_theme_manager_h__ */
|