allow to float detached monitor-section window
[ardour.git] / gtk2_ardour / theme_manager.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cmath>
21 #include <errno.h>
22
23 #include "fix_carbon.h"
24
25 #include "pbd/gstdio_compat.h"
26
27 #include <gtkmm/stock.h>
28 #include <gtkmm/settings.h>
29
30 #include "gtkmm2ext/gtk_ui.h"
31 #include "gtkmm2ext/cell_renderer_color_selector.h"
32 #include "gtkmm2ext/utils.h"
33
34 #include "pbd/file_utils.h"
35 #include "pbd/compose.h"
36
37 #include "ardour/filesystem_paths.h"
38 #include "ardour/profile.h"
39
40 #include "canvas/container.h"
41 #include "canvas/rectangle.h"
42 #include "canvas/scroll_group.h"
43 #include "canvas/wave_view.h"
44
45 #include "ardour_button.h"
46 #include "ardour_dialog.h"
47 #include "theme_manager.h"
48 #include "rgb_macros.h"
49 #include "ui_config.h"
50 #include "utils.h"
51
52 #include "i18n.h"
53
54 using namespace std;
55 using namespace Gtk;
56 using namespace PBD;
57 using namespace ARDOUR;
58 using namespace ARDOUR_UI_UTILS;
59
60 ThemeManager::ThemeManager()
61         : dark_button (_("Dark Theme"))
62         , light_button (_("Light Theme"))
63         , reset_button (_("Restore Defaults"))
64         , flat_buttons (_("Draw \"flat\" buttons"))
65         , blink_rec_button (_("Blink Rec-Arm buttons"))
66         , region_color_button (_("Color regions using their track's color"))
67         , show_clipping_button (_("Show waveform clipping"))
68         , waveform_gradient_depth (0, 1.0, 0.05)
69         , waveform_gradient_depth_label (_("Waveforms color gradient depth"))
70         , timeline_item_gradient_depth (0, 1.0, 0.05)
71         , timeline_item_gradient_depth_label (_("Timeline item gradient depth"))
72         , all_dialogs (_("All floating windows are dialogs"))
73         , transients_follow_front (_("Transient windows follow front window."))
74         , floating_monitor_section (_("Float detached monitor-section window"))
75         , icon_set_label (_("Icon Set"))
76         , palette_viewport (*palette_scroller.get_hadjustment(), *palette_scroller.get_vadjustment())
77         , palette_group (0)
78         , palette_window (0)
79 {
80         /* Now the alias list */
81
82         alias_list = TreeStore::create (alias_columns);
83         alias_display.set_model (alias_list);
84         alias_display.append_column (_("Object"), alias_columns.name);
85
86         Gtkmm2ext::CellRendererColorSelector* color_renderer = manage (new Gtkmm2ext::CellRendererColorSelector);
87         TreeViewColumn* color_column = manage (new TreeViewColumn (_("Color"), *color_renderer));
88         color_column->add_attribute (color_renderer->property_color(), alias_columns.color);
89         alias_display.append_column (*color_column);
90
91         alias_display.get_column (0)->set_data (X_("colnum"), GUINT_TO_POINTER(0));
92         alias_display.get_column (0)->set_expand (true);
93         alias_display.get_column (1)->set_data (X_("colnum"), GUINT_TO_POINTER(1));
94         alias_display.get_column (1)->set_expand (false);
95         alias_display.set_reorderable (false);
96         alias_display.set_headers_visible (true);
97
98         alias_display.signal_button_press_event().connect (sigc::mem_fun (*this, &ThemeManager::alias_button_press_event), false);
99
100         alias_scroller.add (alias_display);
101
102         /* various buttons */
103
104         RadioButton::Group group = dark_button.get_group();
105         light_button.set_group(group);
106         theme_selection_hbox.set_homogeneous(false);
107         theme_selection_hbox.pack_start (dark_button);
108         theme_selection_hbox.pack_start (light_button);
109
110         set_homogeneous (false);
111 #if 0 // disable light/dark theme choice. until the 'light theme gets some attention.
112         pack_start (theme_selection_hbox, PACK_SHRINK);
113 #endif
114         pack_start (reset_button, PACK_SHRINK);
115 #ifndef __APPLE__
116         pack_start (all_dialogs, PACK_SHRINK);
117         pack_start (transients_follow_front, PACK_SHRINK);
118         if (!Profile->get_mixbus()) {
119                 pack_start (floating_monitor_section, PACK_SHRINK);
120         }
121 #endif
122         pack_start (flat_buttons, PACK_SHRINK);
123         pack_start (blink_rec_button, PACK_SHRINK);
124         pack_start (region_color_button, PACK_SHRINK);
125         pack_start (show_clipping_button, PACK_SHRINK);
126
127         Gtk::HBox* hbox;
128
129         vector<string> icon_sets = ::get_icon_sets ();
130
131         if (icon_sets.size() > 1) {
132                 Gtkmm2ext::set_popdown_strings (icon_set_dropdown, icon_sets);
133                 icon_set_dropdown.set_active_text (UIConfiguration::instance().get_icon_set());
134
135                 hbox = Gtk::manage (new Gtk::HBox());
136                 hbox->set_spacing (6);
137                 hbox->pack_start (icon_set_label, false, false);
138                 hbox->pack_start (icon_set_dropdown, true, true);
139                 pack_start (*hbox, PACK_SHRINK);
140         }
141
142
143         hbox = Gtk::manage (new Gtk::HBox());
144         hbox->set_spacing (6);
145         hbox->pack_start (waveform_gradient_depth, true, true);
146         hbox->pack_start (waveform_gradient_depth_label, false, false);
147         pack_start (*hbox, PACK_SHRINK);
148
149         hbox = Gtk::manage (new Gtk::HBox());
150         hbox->set_spacing (6);
151         hbox->pack_start (timeline_item_gradient_depth, true, true);
152         hbox->pack_start (timeline_item_gradient_depth_label, false, false);
153         pack_start (*hbox, PACK_SHRINK);
154
155         palette_group = initialize_palette_canvas (*palette_viewport.canvas());
156         palette_viewport.signal_size_allocate().connect (sigc::bind (sigc::mem_fun (*this, &ThemeManager::palette_canvas_allocated), palette_group, palette_viewport.canvas(),
157                                                                      sigc::mem_fun (*this, &ThemeManager::palette_event)));
158         palette_scroller.add (palette_viewport);
159
160         modifier_scroller.add (modifier_vbox);
161
162         notebook.append_page (alias_scroller, _("Items"));
163         notebook.append_page (palette_scroller, _("Palette"));
164         notebook.append_page (modifier_scroller, _("Transparency"));
165
166         pack_start (notebook);
167
168         show_all ();
169
170         waveform_gradient_depth.set_update_policy (Gtk::UPDATE_DELAYED);
171         timeline_item_gradient_depth.set_update_policy (Gtk::UPDATE_DELAYED);
172
173         color_dialog.get_colorsel()->set_has_opacity_control (true);
174         color_dialog.get_colorsel()->set_has_palette (true);
175
176         set_ui_to_state();
177
178         color_dialog.get_ok_button()->signal_clicked().connect (sigc::bind (sigc::mem_fun (color_dialog, &Gtk::Dialog::response), RESPONSE_ACCEPT));
179         color_dialog.get_cancel_button()->signal_clicked().connect (sigc::bind (sigc::mem_fun (color_dialog, &Gtk::Dialog::response), RESPONSE_CANCEL));
180         dark_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_dark_theme_button_toggled));
181         light_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_light_theme_button_toggled));
182         reset_button.signal_clicked().connect (sigc::mem_fun (*this, &ThemeManager::reset_canvas_colors));
183         flat_buttons.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_flat_buttons_toggled));
184         blink_rec_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_blink_rec_arm_toggled));
185         region_color_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_region_color_toggled));
186         show_clipping_button.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_show_clip_toggled));
187         waveform_gradient_depth.signal_value_changed().connect (sigc::mem_fun (*this, &ThemeManager::on_waveform_gradient_depth_change));
188         timeline_item_gradient_depth.signal_value_changed().connect (sigc::mem_fun (*this, &ThemeManager::on_timeline_item_gradient_depth_change));
189         all_dialogs.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_all_dialogs_toggled));
190         transients_follow_front.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_transients_follow_front_toggled));
191         floating_monitor_section.signal_toggled().connect (sigc::mem_fun (*this, &ThemeManager::on_floating_monitor_section_toggled));
192         icon_set_dropdown.signal_changed().connect (sigc::mem_fun (*this, &ThemeManager::on_icon_set_changed));
193
194         Gtkmm2ext::UI::instance()->set_tip (all_dialogs,
195                                             string_compose (_("Mark all floating windows to be type \"Dialog\" rather than using \"Utility\" for some.\n"
196                                                               "This may help with some window managers. This requires a restart of %1 to take effect"),
197                                                             PROGRAM_NAME));
198         Gtkmm2ext::UI::instance()->set_tip (transients_follow_front,
199                                             string_compose (_("Make transient windows follow the front window when toggling between the editor and mixer.\n"
200                                                               "This requires a restart of %1 to take effect"), PROGRAM_NAME));
201
202         set_size_request (-1, 400);
203         /* no need to call setup_palette() here, it will be done when its size is allocated */
204         setup_aliases ();
205         setup_modifiers ();
206
207         UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &ThemeManager::colors_changed));
208 }
209
210 ThemeManager::~ThemeManager()
211 {
212 }
213
214 void
215 ThemeManager::setup_modifiers ()
216 {
217         UIConfiguration* uic (&UIConfiguration::instance());
218         UIConfiguration::Modifiers& modifiers (uic->modifiers);
219         Gtk::HBox* mod_hbox;
220         Gtk::Label* mod_label;
221         Gtk::HScale* mod_scale;
222
223         Gtkmm2ext::container_clear (modifier_vbox);
224
225         for (UIConfiguration::Modifiers::const_iterator m = modifiers.begin(); m != modifiers.end(); ++m) {
226                 mod_hbox = manage (new HBox);
227
228                 mod_scale = manage (new HScale (0.0, 1.0, 0.01));
229                 mod_scale->set_draw_value (false);
230                 mod_scale->set_value (m->second.a());
231                 mod_scale->set_update_policy (Gtk::UPDATE_DISCONTINUOUS);
232                 mod_scale->signal_value_changed().connect (sigc::bind (sigc::mem_fun (*this, &ThemeManager::modifier_edited), mod_scale, m->first));
233
234                 mod_label = manage (new Label (m->first));
235                 mod_label->set_alignment (1.0, 0.5);
236                 mod_label->set_size_request (150, -1); /* 150 pixels should be enough for anyone */
237
238                 mod_hbox->pack_start (*mod_label, false, true, 12);
239                 mod_hbox->pack_start (*mod_scale, true, true);
240
241                 modifier_vbox.pack_start (*mod_hbox, false, false);
242         }
243
244         modifier_vbox.show_all ();
245
246 }
247
248 void
249 ThemeManager::modifier_edited (Gtk::Range* range, string name)
250 {
251         using namespace ArdourCanvas;
252
253         double alpha = range->get_value();
254         SVAModifier svam (SVAModifier::Assign, -1.0, -1.0, alpha);
255         UIConfiguration::instance().set_modifier (name, svam);
256 }
257
258 void
259 ThemeManager::colors_changed ()
260 {
261         setup_palette ();
262         setup_aliases ();
263         setup_modifiers ();
264 }
265
266 int
267 ThemeManager::save (string /*path*/)
268 {
269         return 0;
270 }
271
272 void
273 ThemeManager::on_flat_buttons_toggled ()
274 {
275         UIConfiguration::instance().set_flat_buttons (flat_buttons.get_active());
276         ArdourButton::set_flat_buttons (flat_buttons.get_active());
277         /* force a redraw */
278         gtk_rc_reset_styles (gtk_settings_get_default());
279 }
280
281 void
282 ThemeManager::on_blink_rec_arm_toggled ()
283 {
284         UIConfiguration::instance().set_blink_rec_arm (blink_rec_button.get_active());
285         UIConfiguration::instance().ParameterChanged("blink-rec-arm");
286 }
287
288 void
289 ThemeManager::on_region_color_toggled ()
290 {
291         UIConfiguration::instance().set_color_regions_using_track_color (region_color_button.get_active());
292 }
293
294 void
295 ThemeManager::on_show_clip_toggled ()
296 {
297         UIConfiguration::instance().set_show_waveform_clipping (show_clipping_button.get_active());
298         // "show-waveform-clipping" was a session config key
299         ArdourCanvas::WaveView::set_global_show_waveform_clipping (UIConfiguration::instance().get_show_waveform_clipping());
300 }
301
302 void
303 ThemeManager::on_all_dialogs_toggled ()
304 {
305         UIConfiguration::instance().set_all_floating_windows_are_dialogs (all_dialogs.get_active());
306 }
307
308 void
309 ThemeManager::on_transients_follow_front_toggled ()
310 {
311         UIConfiguration::instance().set_transients_follow_front (transients_follow_front.get_active());
312 }
313
314 void
315 ThemeManager::on_floating_monitor_section_toggled ()
316 {
317         UIConfiguration::instance().set_floating_monitor_section (floating_monitor_section.get_active());
318 }
319
320 void
321 ThemeManager::on_waveform_gradient_depth_change ()
322 {
323         double v = waveform_gradient_depth.get_value();
324
325         UIConfiguration::instance().set_waveform_gradient_depth (v);
326         ArdourCanvas::WaveView::set_global_gradient_depth (v);
327 }
328
329 void
330 ThemeManager::on_timeline_item_gradient_depth_change ()
331 {
332         double v = timeline_item_gradient_depth.get_value();
333
334         UIConfiguration::instance().set_timeline_item_gradient_depth (v);
335 }
336
337 void
338 ThemeManager::on_icon_set_changed ()
339 {
340         string new_set = icon_set_dropdown.get_active_text();
341         UIConfiguration::instance().set_icon_set (new_set);
342 }
343
344 void
345 ThemeManager::on_dark_theme_button_toggled()
346 {
347         if (!dark_button.get_active()) return;
348
349         UIConfiguration* uic (&UIConfiguration::instance());
350
351         uic->set_color_file("dark");
352 }
353
354 void
355 ThemeManager::on_light_theme_button_toggled()
356 {
357         if (!light_button.get_active()) return;
358
359         UIConfiguration* uic (&UIConfiguration::instance());
360
361         uic->set_color_file("light");
362 }
363
364 void
365 ThemeManager::set_ui_to_state()
366 {
367         /* there is no way these values can change individually
368          * by themselves (w/o user-interaction)
369          * hence a common combined update function suffices
370          */
371
372         if (UIConfiguration::instance().get_color_file() == "light") {
373                 light_button.set_active(true);
374         } else {
375                 dark_button.set_active(true);
376         }
377
378         /* there is no need to block signal handlers, here,
379          * all elements check if the value has changed and ignore NOOPs
380          */
381         all_dialogs.set_active (UIConfiguration::instance().get_all_floating_windows_are_dialogs());
382         transients_follow_front.set_active (UIConfiguration::instance().get_transients_follow_front());
383         floating_monitor_section.set_active (UIConfiguration::instance().get_floating_monitor_section());
384         flat_buttons.set_active (UIConfiguration::instance().get_flat_buttons());
385         blink_rec_button.set_active (UIConfiguration::instance().get_blink_rec_arm());
386         region_color_button.set_active (UIConfiguration::instance().get_color_regions_using_track_color());
387         show_clipping_button.set_active (UIConfiguration::instance().get_show_waveform_clipping());
388         waveform_gradient_depth.set_value(UIConfiguration::instance().get_waveform_gradient_depth());
389         timeline_item_gradient_depth.set_value(UIConfiguration::instance().get_timeline_item_gradient_depth());
390 }
391
392 void
393 ThemeManager::reset_canvas_colors()
394 {
395         string cfile;
396         string basename;
397
398         basename = "my-";
399         basename += UIConfiguration::instance().get_color_file();
400         basename += ".colors";
401
402         if (find_file (ardour_config_search_path(), basename, cfile)) {
403                 string backup = cfile + string (X_(".old"));
404                 g_rename (cfile.c_str(), backup.c_str());
405                 /* don't really care if it fails */
406         }
407
408         UIConfiguration::instance().load_defaults();
409         UIConfiguration::instance().save_state ();
410         set_ui_to_state();
411 }
412
413 ArdourCanvas::Container*
414 ThemeManager::initialize_palette_canvas (ArdourCanvas::Canvas& canvas)
415 {
416         using namespace ArdourCanvas;
417
418         /* hide background */
419         canvas.set_background_color (rgba_to_color (0.0, 0.0, 1.0, 0.0));
420
421         /* bi-directional scroll group */
422
423         ScrollGroup* scroll_group = new ScrollGroup (canvas.root(), ScrollGroup::ScrollSensitivity (ScrollGroup::ScrollsVertically|ScrollGroup::ScrollsHorizontally));
424         canvas.add_scroller (*scroll_group);
425
426         /* new container to hold everything */
427
428         return new ArdourCanvas::Container (scroll_group);
429 }
430
431 void
432 ThemeManager::palette_canvas_allocated (Gtk::Allocation& alloc, ArdourCanvas::Container* group, ArdourCanvas::Canvas* canvas, sigc::slot<bool,GdkEvent*,std::string> event_handler)
433 {
434         build_palette_canvas (*canvas, *group, event_handler);
435 }
436
437 struct NamedColor {
438         string name;
439         ArdourCanvas::HSV    color;
440         NamedColor (string s, ArdourCanvas::HSV c) : name (s), color (c) {}
441 };
442
443 struct SortByHue {
444         bool operator() (NamedColor const & a, NamedColor const & b) {
445                 using namespace ArdourCanvas;
446                 const HSV black (0, 0, 0);
447                 if (a.color.is_gray() || b.color.is_gray()) {
448                         return black.distance (a.color) < black.distance (b.color);
449                 } else {
450                         return a.color.h < b.color.h;
451                         // const HSV red (rgba_to_color (1.0, 0.0, 0.0, 1.0));
452                         // return red.distance (a.color) < red.distance (b.color);
453                 }
454         }
455 };
456
457
458 void
459 ThemeManager::build_palette_canvas (ArdourCanvas::Canvas& canvas, ArdourCanvas::Container& group, sigc::slot<bool,GdkEvent*,std::string> event_handler)
460 {
461         using namespace ArdourCanvas;
462
463         /* we want the colors sorted by hue, with their name */
464
465         UIConfiguration::Colors& colors (UIConfiguration::instance().colors);
466         vector<NamedColor> nc;
467         for (UIConfiguration::Colors::const_iterator x = colors.begin(); x != colors.end(); ++x) {
468                 nc.push_back (NamedColor (x->first, HSV (x->second)));
469         }
470         SortByHue sorter;
471         sort (nc.begin(), nc.end(), sorter);
472
473         const uint32_t color_limit = nc.size();
474         const double box_size = 20.0;
475         const double width = canvas.width();
476         const double height = canvas.height();
477
478         uint32_t color_num = 0;
479
480         /* clear existing rects and delete them */
481
482         group.clear (true);
483
484         for (uint32_t y = 0; y < height - box_size && color_num < color_limit; y += box_size) {
485                 for (uint32_t x = 0; x < width - box_size && color_num < color_limit; x += box_size) {
486                         ArdourCanvas::Rectangle* r = new ArdourCanvas::Rectangle (&group, ArdourCanvas::Rect (x, y, x + box_size, y + box_size));
487
488                         string name = nc[color_num++].name;
489
490                         UIConfiguration::Colors::iterator c = colors.find (name);
491
492                         if (c != colors.end()) {
493                                 Color color = c->second;
494                                 r->set_fill_color (color);
495                                 r->set_outline_color (rgba_to_color (0.0, 0.0, 0.0, 1.0));
496                                 r->set_tooltip (name);
497                                 r->Event.connect (sigc::bind (event_handler, name));
498                         }
499                 }
500         }
501 }
502
503 void
504 ThemeManager::palette_size_request (Gtk::Requisition* req)
505 {
506         uint32_t ncolors = UIConfiguration::instance().colors.size();
507         const int box_size = 20;
508
509         double c = sqrt ((double)ncolors);
510         req->width = (int) floor (c * box_size);
511         req->height = (int) floor (c * box_size);
512
513         /* add overflow row if necessary */
514
515         if (fmod (ncolors, c) != 0.0) {
516                 req->height += box_size;
517         }
518 }
519
520 void
521 ThemeManager::setup_palette ()
522 {
523         build_palette_canvas (*palette_viewport.canvas(), *palette_group, sigc::mem_fun (*this, &ThemeManager::palette_event));
524 }
525
526 bool
527 ThemeManager::palette_event (GdkEvent* ev, string name)
528 {
529         switch (ev->type) {
530         case GDK_BUTTON_RELEASE:
531                 edit_palette_color (name);
532                 return true;
533         default:
534                 break;
535         }
536         return true;
537 }
538
539 void
540 ThemeManager::edit_palette_color (std::string name)
541 {
542         using namespace ArdourCanvas;
543         double r,g, b, a;
544         UIConfiguration* uic (&UIConfiguration::instance());
545         ArdourCanvas::Color c = uic->color (name);
546         Gdk::Color gdkcolor;
547
548         color_to_rgba (c, r, g, b, a);
549
550         gdkcolor.set_rgb_p (r, g, b);
551         color_dialog.get_colorsel()->set_previous_color (gdkcolor);
552         color_dialog.get_colorsel()->set_current_color (gdkcolor);
553         color_dialog.get_colorsel()->set_previous_alpha ((guint16) (a * 65535));
554         color_dialog.get_colorsel()->set_current_alpha ((guint16) (a * 65535));
555
556         color_dialog_connection.disconnect ();
557         color_dialog_connection = color_dialog.signal_response().connect (sigc::bind (sigc::mem_fun (*this, &ThemeManager::palette_color_response), name));
558         color_dialog.present();
559 }
560
561 void
562 ThemeManager::palette_color_response (int result, std::string name)
563 {
564         using namespace ArdourCanvas;
565
566         color_dialog_connection.disconnect ();
567
568         UIConfiguration* uic (&UIConfiguration::instance());
569         Gdk::Color gdkcolor;
570         double r,g, b, a;
571
572         switch (result) {
573         case RESPONSE_ACCEPT:
574         case RESPONSE_OK:
575                 gdkcolor = color_dialog.get_colorsel()->get_current_color();
576                 a = color_dialog.get_colorsel()->get_current_alpha() / 65535.0;
577                 r = gdkcolor.get_red_p();
578                 g = gdkcolor.get_green_p();
579                 b = gdkcolor.get_blue_p();
580
581                 uic->set_color (name, rgba_to_color (r, g, b, a));
582                 break;
583
584         default:
585                 break;
586         }
587
588         color_dialog.hide ();
589 }
590
591 bool
592 ThemeManager::alias_palette_event (GdkEvent* ev, string new_alias, string target_name)
593 {
594         switch (ev->type) {
595         case GDK_BUTTON_RELEASE:
596                 UIConfiguration::instance().set_alias (target_name, new_alias);
597                 return true;
598                 break;
599         default:
600                 break;
601         }
602         return false;
603 }
604
605 void
606 ThemeManager::alias_palette_response (int response, std::string target_name, std::string old_alias)
607 {
608         switch (response) {
609         case GTK_RESPONSE_OK:
610         case GTK_RESPONSE_ACCEPT:
611                 /* rebuild alias list with new color: inefficient but simple */
612                 setup_aliases ();
613                 break;
614
615         case GTK_RESPONSE_REJECT:
616                 /* revert choice */
617                 UIConfiguration::instance().set_alias (target_name, old_alias);
618                 break;
619
620         default:
621                 /* do nothing */
622                 break;
623         }
624
625         palette_window->hide ();
626 }
627
628 void
629 ThemeManager::choose_color_from_palette (string const & name)
630 {
631         UIConfiguration* uic (&UIConfiguration::instance());
632         UIConfiguration::ColorAliases::iterator i = uic->color_aliases.find (name);
633
634         if (i == uic->color_aliases.end()) {
635                 return;
636         }
637
638         delete palette_window;
639
640         palette_window = new ArdourDialog (_("Color Palette"));
641         palette_window->add_button (Stock::CANCEL, RESPONSE_REJECT); /* using CANCEL causes confusion if dialog is closed via CloseAllDialogs */
642         palette_window->add_button (Stock::OK, RESPONSE_OK);
643
644         ArdourCanvas::GtkCanvas* canvas = new ArdourCanvas::GtkCanvas ();
645         ArdourCanvas::Container* group = initialize_palette_canvas (*canvas);
646
647         canvas->signal_size_request().connect (sigc::mem_fun (*this, &ThemeManager::palette_size_request));
648         canvas->signal_size_allocate().connect (sigc::bind (sigc::mem_fun (*this, &ThemeManager::palette_canvas_allocated), group, canvas,
649                                                             sigc::bind (sigc::mem_fun (*this, &ThemeManager::alias_palette_event), name)));
650
651         palette_window->get_vbox()->pack_start (*canvas);
652         palette_window->show_all ();
653
654         palette_response_connection = palette_window->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &ThemeManager::alias_palette_response), name, i->second));
655
656         palette_window->set_position (WIN_POS_MOUSE);
657         palette_window->present ();
658 }
659
660 void
661 ThemeManager::setup_aliases ()
662 {
663         using namespace ArdourCanvas;
664
665         UIConfiguration* uic (&UIConfiguration::instance());
666         UIConfiguration::ColorAliases& aliases (uic->color_aliases);
667
668         alias_list->clear ();
669
670         for (UIConfiguration::ColorAliases::iterator i = aliases.begin(); i != aliases.end(); ++i) {
671                 TreeModel::Children rows = alias_list->children();
672                 TreeModel::Row row;
673                 string::size_type colon;
674
675                 if ((colon = i->first.find (':')) != string::npos) {
676
677                         /* this is supposed to be a child node, so find the
678                          * parent
679                          */
680
681                         string parent = i->first.substr (0, colon);
682                         TreeModel::iterator ri;
683
684                         for (ri = rows.begin(); ri != rows.end(); ++ri) {
685                                 string s = (*ri)[alias_columns.name];
686                                 if (s == parent) {
687                                         break;
688                                 }
689                         }
690
691                         if (ri == rows.end()) {
692                                 /* not found, add the parent as new top level row */
693                                 row = *(alias_list->append());
694                                 row[alias_columns.name] = parent;
695                                 row[alias_columns.alias] = "";
696
697                                 /* now add the child as a child of this one */
698
699                                 row = *(alias_list->insert (row->children().end()));
700                                 row[alias_columns.name] = i->first.substr (colon+1);
701                         } else {
702                                 row = *(alias_list->insert ((*ri)->children().end()));
703                                 row[alias_columns.name] = i->first.substr (colon+1);
704                         }
705
706                 } else {
707                         /* add as a child */
708                         row = *(alias_list->append());
709                         row[alias_columns.name] = i->first;
710                         row[alias_columns.key] = i->first;
711                 }
712
713                 row[alias_columns.key] = i->first;
714                 row[alias_columns.alias] = i->second;
715
716                 Gdk::Color col;
717                 double r, g, b, a;
718                 Color c (uic->color (i->second));
719                 color_to_rgba (c, r, g, b, a);
720                 col.set_rgb_p (r, g, b);
721
722                 row[alias_columns.color] = col;
723         }
724 }
725
726 bool
727 ThemeManager::alias_button_press_event (GdkEventButton* ev)
728 {
729         TreeIter iter;
730         TreeModel::Path path;
731         TreeViewColumn* column;
732         int cellx;
733         int celly;
734
735         if (!alias_display.get_path_at_pos ((int)ev->x, (int)ev->y, path, column, cellx, celly)) {
736                 return false;
737         }
738
739         guint32 colnum = GPOINTER_TO_UINT (column->get_data (X_("colnum")));
740
741         switch (colnum) {
742         case 0:
743                 /* allow normal processing to occur */
744                 return false;
745
746         case 1: /* color */
747                 if ((iter = alias_list->get_iter (path))) {
748                         string target_color_alias = (*iter)[alias_columns.key];
749                         if (!target_color_alias.empty()) {
750                                 choose_color_from_palette (target_color_alias);
751                         }
752                 }
753                 break;
754         }
755
756         return true;
757 }