mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 17:16:38 +01:00
move color theme selector into color tab for preferences
This commit is contained in:
parent
06c9101f91
commit
9b925b45dc
4 changed files with 88 additions and 89 deletions
|
|
@ -62,7 +62,53 @@ ColorThemeManager::ColorThemeManager ()
|
||||||
, palette_viewport (*palette_scroller.get_hadjustment(), *palette_scroller.get_vadjustment())
|
, palette_viewport (*palette_scroller.get_hadjustment(), *palette_scroller.get_vadjustment())
|
||||||
, palette_group (0)
|
, palette_group (0)
|
||||||
, palette_window (0)
|
, palette_window (0)
|
||||||
|
, color_theme_label (_("Color Theme"))
|
||||||
{
|
{
|
||||||
|
set_spacing (12);
|
||||||
|
|
||||||
|
std::map<string,string> color_themes;
|
||||||
|
|
||||||
|
get_color_themes (color_themes);
|
||||||
|
|
||||||
|
if (color_themes.size() > 1) {
|
||||||
|
theme_list = TreeStore::create (color_theme_columns);
|
||||||
|
|
||||||
|
TreeModel::iterator selected_iter = theme_list->children().end();
|
||||||
|
|
||||||
|
for (std::map<string,string>::iterator c = color_themes.begin(); c != color_themes.end(); ++c) {
|
||||||
|
TreeModel::Row row;
|
||||||
|
|
||||||
|
row = *(theme_list->append());
|
||||||
|
row[color_theme_columns.name] = c->first;
|
||||||
|
row[color_theme_columns.path] = c->second;
|
||||||
|
|
||||||
|
/* match second (path; really basename) since that is
|
||||||
|
what we store/restore.
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (UIConfiguration::instance().get_color_file() == c->second) {
|
||||||
|
selected_iter = row;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
color_theme_dropdown.set_model (theme_list);
|
||||||
|
color_theme_dropdown.pack_start (color_theme_columns.name);
|
||||||
|
|
||||||
|
if (selected_iter != theme_list->children().end()) {
|
||||||
|
color_theme_dropdown.set_active (selected_iter);
|
||||||
|
}
|
||||||
|
|
||||||
|
Gtk::HBox* hbox = Gtk::manage (new Gtk::HBox());
|
||||||
|
Gtk::Alignment* align = Gtk::manage (new Gtk::Alignment);
|
||||||
|
align->set (0, 0.5);
|
||||||
|
align->add (color_theme_dropdown);
|
||||||
|
hbox->set_spacing (6);
|
||||||
|
hbox->pack_start (color_theme_label, false, false);
|
||||||
|
hbox->pack_start (*align, true, true);
|
||||||
|
pack_start (*hbox, PACK_SHRINK);
|
||||||
|
hbox->show_all ();
|
||||||
|
}
|
||||||
|
|
||||||
reset_button.signal_clicked().connect (sigc::mem_fun (*this, &ColorThemeManager::reset_canvas_colors));
|
reset_button.signal_clicked().connect (sigc::mem_fun (*this, &ColorThemeManager::reset_canvas_colors));
|
||||||
|
|
||||||
/* Now the alias list */
|
/* Now the alias list */
|
||||||
|
|
@ -100,9 +146,15 @@ ColorThemeManager::ColorThemeManager ()
|
||||||
|
|
||||||
notebook.set_size_request (400, 400);
|
notebook.set_size_request (400, 400);
|
||||||
|
|
||||||
set_spacing (12);
|
|
||||||
pack_start (reset_button, false, false);
|
|
||||||
pack_start (notebook, true, true);
|
pack_start (notebook, true, true);
|
||||||
|
pack_start (reset_button, false, false);
|
||||||
|
|
||||||
|
color_dialog.get_colorsel()->set_has_opacity_control (true);
|
||||||
|
color_dialog.get_colorsel()->set_has_palette (true);
|
||||||
|
color_dialog.get_ok_button()->signal_clicked().connect (sigc::bind (sigc::mem_fun (color_dialog, &Gtk::Dialog::response), RESPONSE_ACCEPT));
|
||||||
|
color_dialog.get_cancel_button()->signal_clicked().connect (sigc::bind (sigc::mem_fun (color_dialog, &Gtk::Dialog::response), RESPONSE_CANCEL));
|
||||||
|
|
||||||
|
color_theme_dropdown.signal_changed().connect (sigc::mem_fun (*this, &ColorThemeManager::on_color_theme_changed));
|
||||||
|
|
||||||
/* no need to call setup_palette() here, it will be done when its size is allocated */
|
/* no need to call setup_palette() here, it will be done when its size is allocated */
|
||||||
setup_aliases ();
|
setup_aliases ();
|
||||||
|
|
@ -551,3 +603,19 @@ ColorThemeManager::tip_widget()
|
||||||
{
|
{
|
||||||
return reset_button; /* XXX need a better widget for this purpose */
|
return reset_button; /* XXX need a better widget for this purpose */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
ColorThemeManager::on_color_theme_changed ()
|
||||||
|
{
|
||||||
|
Gtk::TreeModel::iterator iter = color_theme_dropdown.get_active();
|
||||||
|
|
||||||
|
if (iter) {
|
||||||
|
Gtk::TreeModel::Row row = *iter;
|
||||||
|
|
||||||
|
if (row) {
|
||||||
|
string new_theme = row[color_theme_columns.path];
|
||||||
|
UIConfiguration::instance().set_color_file (new_theme);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -147,6 +147,24 @@ class ColorThemeManager : public Gtk::VBox, public OptionEditorComponent
|
||||||
|
|
||||||
void colors_changed ();
|
void colors_changed ();
|
||||||
void set_ui_to_state ();
|
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__ */
|
#endif /* __ardour_gtk_color_manager_h__ */
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@
|
||||||
#include <gtkmm/settings.h>
|
#include <gtkmm/settings.h>
|
||||||
|
|
||||||
#include "gtkmm2ext/gtk_ui.h"
|
#include "gtkmm2ext/gtk_ui.h"
|
||||||
#include "gtkmm2ext/cell_renderer_color_selector.h"
|
|
||||||
#include "gtkmm2ext/utils.h"
|
#include "gtkmm2ext/utils.h"
|
||||||
|
|
||||||
#include "pbd/file_utils.h"
|
#include "pbd/file_utils.h"
|
||||||
|
|
@ -70,7 +69,6 @@ ThemeManager::ThemeManager()
|
||||||
, transients_follow_front (_("Transient windows follow front window."))
|
, transients_follow_front (_("Transient windows follow front window."))
|
||||||
, floating_monitor_section (_("Float detached monitor-section window"))
|
, floating_monitor_section (_("Float detached monitor-section window"))
|
||||||
, icon_set_label (_("Icon Set"))
|
, icon_set_label (_("Icon Set"))
|
||||||
, color_theme_label (_("Color Theme"))
|
|
||||||
{
|
{
|
||||||
Gtk::HBox* hbox;
|
Gtk::HBox* hbox;
|
||||||
|
|
||||||
|
|
@ -78,48 +76,6 @@ ThemeManager::ThemeManager()
|
||||||
|
|
||||||
set_homogeneous (false);
|
set_homogeneous (false);
|
||||||
|
|
||||||
std::map<string,string> color_themes;
|
|
||||||
|
|
||||||
get_color_themes (color_themes);
|
|
||||||
|
|
||||||
if (color_themes.size() > 1) {
|
|
||||||
theme_list = TreeStore::create (color_theme_columns);
|
|
||||||
|
|
||||||
TreeModel::iterator selected_iter = theme_list->children().end();
|
|
||||||
|
|
||||||
for (std::map<string,string>::iterator c = color_themes.begin(); c != color_themes.end(); ++c) {
|
|
||||||
TreeModel::Row row;
|
|
||||||
|
|
||||||
row = *(theme_list->append());
|
|
||||||
row[color_theme_columns.name] = c->first;
|
|
||||||
row[color_theme_columns.path] = c->second;
|
|
||||||
|
|
||||||
/* match second (path; really basename) since that is
|
|
||||||
what we store/restore.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (UIConfiguration::instance().get_color_file() == c->second) {
|
|
||||||
selected_iter = row;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
color_theme_dropdown.set_model (theme_list);
|
|
||||||
color_theme_dropdown.pack_start (color_theme_columns.name);
|
|
||||||
|
|
||||||
if (selected_iter != theme_list->children().end()) {
|
|
||||||
color_theme_dropdown.set_active (selected_iter);
|
|
||||||
}
|
|
||||||
|
|
||||||
hbox = Gtk::manage (new Gtk::HBox());
|
|
||||||
Gtk::Alignment* align = Gtk::manage (new Gtk::Alignment);
|
|
||||||
align->set (0, 0.5);
|
|
||||||
align->add (color_theme_dropdown);
|
|
||||||
hbox->set_spacing (6);
|
|
||||||
hbox->pack_start (color_theme_label, false, false);
|
|
||||||
hbox->pack_start (*align, true, true);
|
|
||||||
pack_start (*hbox, PACK_SHRINK);
|
|
||||||
hbox->show_all ();
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifndef __APPLE__
|
#ifndef __APPLE__
|
||||||
pack_start (all_dialogs, PACK_SHRINK);
|
pack_start (all_dialogs, PACK_SHRINK);
|
||||||
|
|
@ -166,13 +122,8 @@ ThemeManager::ThemeManager()
|
||||||
waveform_gradient_depth.set_update_policy (Gtk::UPDATE_DELAYED);
|
waveform_gradient_depth.set_update_policy (Gtk::UPDATE_DELAYED);
|
||||||
timeline_item_gradient_depth.set_update_policy (Gtk::UPDATE_DELAYED);
|
timeline_item_gradient_depth.set_update_policy (Gtk::UPDATE_DELAYED);
|
||||||
|
|
||||||
color_dialog.get_colorsel()->set_has_opacity_control (true);
|
|
||||||
color_dialog.get_colorsel()->set_has_palette (true);
|
|
||||||
|
|
||||||
set_ui_to_state();
|
set_ui_to_state();
|
||||||
|
|
||||||
color_dialog.get_ok_button()->signal_clicked().connect (sigc::bind (sigc::mem_fun (color_dialog, &Gtk::Dialog::response), RESPONSE_ACCEPT));
|
|
||||||
color_dialog.get_cancel_button()->signal_clicked().connect (sigc::bind (sigc::mem_fun (color_dialog, &Gtk::Dialog::response), RESPONSE_CANCEL));
|
|
||||||
flat_buttons.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_flat_buttons_toggled));
|
flat_buttons.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_flat_buttons_toggled));
|
||||||
blink_rec_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_blink_rec_arm_toggled));
|
blink_rec_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_blink_rec_arm_toggled));
|
||||||
region_color_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_region_color_toggled));
|
region_color_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_region_color_toggled));
|
||||||
|
|
@ -183,7 +134,6 @@ ThemeManager::ThemeManager()
|
||||||
transients_follow_front.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_transients_follow_front_toggled));
|
transients_follow_front.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_transients_follow_front_toggled));
|
||||||
floating_monitor_section.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_floating_monitor_section_toggled));
|
floating_monitor_section.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_floating_monitor_section_toggled));
|
||||||
icon_set_dropdown.signal_changed().connect (sigc::mem_fun (*this, &ThemeManager::on_icon_set_changed));
|
icon_set_dropdown.signal_changed().connect (sigc::mem_fun (*this, &ThemeManager::on_icon_set_changed));
|
||||||
color_theme_dropdown.signal_changed().connect (sigc::mem_fun (*this, &ThemeManager::on_color_theme_changed));
|
|
||||||
|
|
||||||
Gtkmm2ext::UI::instance()->set_tip (all_dialogs,
|
Gtkmm2ext::UI::instance()->set_tip (all_dialogs,
|
||||||
string_compose (_("Mark all floating windows to be type \"Dialog\" rather than using \"Utility\" for some.\n"
|
string_compose (_("Mark all floating windows to be type \"Dialog\" rather than using \"Utility\" for some.\n"
|
||||||
|
|
@ -270,21 +220,6 @@ ThemeManager::on_icon_set_changed ()
|
||||||
UIConfiguration::instance().set_icon_set (new_set);
|
UIConfiguration::instance().set_icon_set (new_set);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
ThemeManager::on_color_theme_changed ()
|
|
||||||
{
|
|
||||||
Gtk::TreeModel::iterator iter = color_theme_dropdown.get_active();
|
|
||||||
|
|
||||||
if (iter) {
|
|
||||||
Gtk::TreeModel::Row row = *iter;
|
|
||||||
|
|
||||||
if (row) {
|
|
||||||
string new_theme = row[color_theme_columns.path];
|
|
||||||
UIConfiguration::instance().set_color_file (new_theme);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
ThemeManager::set_ui_to_state()
|
ThemeManager::set_ui_to_state()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -49,27 +49,8 @@ class ThemeManager : public Gtk::VBox
|
||||||
void on_transients_follow_front_toggled ();
|
void on_transients_follow_front_toggled ();
|
||||||
void on_floating_monitor_section_toggled ();
|
void on_floating_monitor_section_toggled ();
|
||||||
void on_icon_set_changed ();
|
void on_icon_set_changed ();
|
||||||
void on_color_theme_changed ();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Gtk::Notebook notebook;
|
|
||||||
|
|
||||||
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::ColorSelectionDialog color_dialog;
|
|
||||||
sigc::connection color_dialog_connection;
|
|
||||||
|
|
||||||
Gtk::CheckButton flat_buttons;
|
Gtk::CheckButton flat_buttons;
|
||||||
Gtk::CheckButton blink_rec_button;
|
Gtk::CheckButton blink_rec_button;
|
||||||
Gtk::CheckButton region_color_button;
|
Gtk::CheckButton region_color_button;
|
||||||
|
|
@ -84,9 +65,6 @@ class ThemeManager : public Gtk::VBox
|
||||||
Gtk::CheckButton gradient_waveforms;
|
Gtk::CheckButton gradient_waveforms;
|
||||||
Gtk::Label icon_set_label;
|
Gtk::Label icon_set_label;
|
||||||
Gtk::ComboBoxText icon_set_dropdown;
|
Gtk::ComboBoxText icon_set_dropdown;
|
||||||
Gtk::Label color_theme_label;
|
|
||||||
Gtk::ComboBox color_theme_dropdown;
|
|
||||||
|
|
||||||
|
|
||||||
void colors_changed ();
|
void colors_changed ();
|
||||||
void set_ui_to_state ();
|
void set_ui_to_state ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue