enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / group_tabs.cc
1 /*
2     Copyright (C) 2009 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 <gtkmm/stock.h>
21
22 #include "ardour/session.h"
23 #include "ardour/route_group.h"
24 #include "ardour/route.h"
25 #include "ardour/vca_manager.h"
26 #include "ardour/vca.h"
27
28 #include "gtkmm2ext/doi.h"
29
30 #include "gui_thread.h"
31 #include "route_group_dialog.h"
32 #include "group_tabs.h"
33 #include "keyboard.h"
34 #include "pbd/i18n.h"
35 #include "ardour_ui.h"
36 #include "rgb_macros.h"
37 #include "ui_config.h"
38 #include "utils.h"
39
40 using namespace std;
41 using namespace Gtk;
42 using namespace ARDOUR;
43 using namespace ARDOUR_UI_UTILS;
44 using Gtkmm2ext::Keyboard;
45
46 list<Gdk::Color> GroupTabs::_used_colors;
47
48 GroupTabs::GroupTabs ()
49         : _menu (0)
50         , _dragging (0)
51         , _dragging_new_tab (0)
52 {
53         add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::POINTER_MOTION_MASK);
54         UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &GroupTabs::queue_draw));
55 }
56
57 GroupTabs::~GroupTabs ()
58 {
59         delete _menu;
60 }
61
62 void
63 GroupTabs::set_session (Session* s)
64 {
65         SessionHandlePtr::set_session (s);
66
67         if (_session) {
68                 _session->RouteGroupPropertyChanged.connect (
69                         _session_connections, invalidator (*this), boost::bind (&GroupTabs::route_group_property_changed, this, _1), gui_context()
70                         );
71                 _session->RouteAddedToRouteGroup.connect (
72                         _session_connections, invalidator (*this), boost::bind (&GroupTabs::route_added_to_route_group, this, _1, _2), gui_context()
73                         );
74                 _session->RouteRemovedFromRouteGroup.connect (
75                         _session_connections, invalidator (*this), boost::bind (&GroupTabs::route_removed_from_route_group, this, _1, _2), gui_context()
76                         );
77
78                 _session->route_group_removed.connect (_session_connections, invalidator (*this), boost::bind (&GroupTabs::set_dirty, this, (cairo_rectangle_t*)0), gui_context());
79         }
80 }
81
82
83 /** Handle a size request.
84  *  @param req GTK requisition
85  */
86 void
87 GroupTabs::on_size_request (Gtk::Requisition *req)
88 {
89         /* Use a dummy, small width and the actual height that we want */
90         req->width = 16;
91         req->height = 16;
92 }
93
94 bool
95 GroupTabs::on_button_press_event (GdkEventButton* ev)
96 {
97         using namespace Menu_Helpers;
98
99         double const p = primary_coordinate (ev->x, ev->y);
100
101         list<Tab>::iterator prev;
102         list<Tab>::iterator next;
103         Tab* t = click_to_tab (p, &prev, &next);
104
105         _drag_min = prev != _tabs.end() ? prev->to : 0;
106         _drag_max = next != _tabs.end() ? next->from : extent ();
107
108         if (ev->button == 1) {
109
110                 if (t == 0) {
111                         Tab n;
112                         n.from = n.to = p;
113                         _dragging_new_tab = true;
114
115                         if (next == _tabs.end()) {
116                                 _tabs.push_back (n);
117                                 t = &_tabs.back ();
118                         } else {
119                                 list<Tab>::iterator j = _tabs.insert (next, n);
120                                 t = &(*j);
121                         }
122
123                 } else {
124                         _dragging_new_tab = false;
125                         _initial_dragging_routes = routes_for_tab (t);
126                 }
127
128                 _dragging = t;
129                 _drag_moved = false;
130                 _drag_first = p;
131
132                 double const h = (t->from + t->to) / 2;
133                 if (p < h) {
134                         _drag_moving = t->from;
135                         _drag_fixed = t->to;
136                         _drag_offset = p - t->from;
137                 } else {
138                         _drag_moving = t->to;
139                         _drag_fixed = t->from;
140                         _drag_offset = p - t->to;
141                 }
142
143         } else if (ev->button == 3) {
144
145                 RouteGroup* g = t ? t->group : 0;
146
147                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier) && g) {
148                         /* edit */
149                         RouteGroupDialog d (g, false);
150                         d.present ();
151                 } else {
152                         Menu* m = get_menu (g, true);
153                         if (m) {
154                                 m->popup (ev->button, ev->time);
155                         }
156                 }
157         }
158
159         return true;
160 }
161
162
163 bool
164 GroupTabs::on_motion_notify_event (GdkEventMotion* ev)
165 {
166         if (_dragging == 0) {
167                 return false;
168         }
169
170         double const p = primary_coordinate (ev->x, ev->y);
171
172         if (p != _drag_first) {
173                 _drag_moved = true;
174         }
175
176         _drag_moving = p - _drag_offset;
177
178         _dragging->from = min (_drag_moving, _drag_fixed);
179         _dragging->to = max (_drag_moving, _drag_fixed);
180
181         _dragging->from = max (_dragging->from, _drag_min);
182         _dragging->to = min (_dragging->to, _drag_max);
183
184         set_dirty ();
185         queue_draw ();
186
187         gdk_event_request_motions(ev);
188
189         return true;
190 }
191
192
193 bool
194 GroupTabs::on_button_release_event (GdkEventButton*)
195 {
196         if (_dragging == 0) {
197                 return false;
198         }
199
200         if (!_drag_moved) {
201
202                 if (_dragging->group) {
203                         /* toggle active state */
204                         _dragging->group->set_active (!_dragging->group->is_active (), this);
205                 }
206
207         } else {
208                 /* finish drag */
209                 RouteList routes = routes_for_tab (_dragging);
210
211                 if (!routes.empty()) {
212                         if (_dragging_new_tab) {
213                                 run_new_group_dialog (&routes, false);
214                         } else {
215                                 boost::shared_ptr<RouteList> r = _session->get_routes ();
216                                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
217
218                                         bool const was_in_tab = find (
219                                                 _initial_dragging_routes.begin(), _initial_dragging_routes.end(), *i
220                                                 ) != _initial_dragging_routes.end ();
221
222                                         bool const now_in_tab = find (routes.begin(), routes.end(), *i) != routes.end();
223
224                                         if (was_in_tab && !now_in_tab) {
225                                                 _dragging->group->remove (*i);
226                                         } else if (!was_in_tab && now_in_tab) {
227                                                 _dragging->group->add (*i);
228                                         }
229                                 }
230                         }
231                 }
232
233                 set_dirty ();
234                 queue_draw ();
235         }
236
237         _dragging = 0;
238         _initial_dragging_routes.clear ();
239
240         return true;
241 }
242
243 void
244 GroupTabs::render (cairo_t* cr, cairo_rectangle_t*)
245 {
246         if (_dragging == 0) {
247                 _tabs = compute_tabs ();
248         }
249
250         /* background */
251
252         Gdk::Color c = get_style()->get_base (Gtk::STATE_NORMAL);
253
254         cairo_set_source_rgb (cr, c.get_red_p(), c.get_green_p(), c.get_blue_p());
255         cairo_rectangle (cr, 0, 0, get_width(), get_height());
256         cairo_fill (cr);
257
258         /* tabs */
259
260         for (list<Tab>::const_iterator i = _tabs.begin(); i != _tabs.end(); ++i) {
261                 draw_tab (cr, *i);
262         }
263 }
264
265
266 /** Convert a click position to a tab.
267  *  @param c Click position.
268  *  @param prev Filled in with the previous tab to the click, or _tabs.end().
269  *  @param next Filled in with the next tab after the click, or _tabs.end().
270  *  @return Tab under the click, or 0.
271  */
272
273 GroupTabs::Tab *
274 GroupTabs::click_to_tab (double c, list<Tab>::iterator* prev, list<Tab>::iterator* next)
275 {
276         *prev = *next = _tabs.end ();
277         Tab* under = 0;
278
279         list<Tab>::iterator i = _tabs.begin ();
280         while (i != _tabs.end()) {
281
282                 if (i->from > c) {
283                         *next = i;
284                         break;
285                 }
286
287                 if (i->to < c) {
288                         *prev = i;
289                         ++i;
290                         continue;
291                 }
292
293                 if (i->from <= c && c < i->to) {
294                         under = &(*i);
295                 }
296
297                 ++i;
298         }
299
300         return under;
301 }
302
303 void
304 GroupTabs::add_new_from_items (Menu_Helpers::MenuList& items)
305 {
306         using namespace Menu_Helpers;
307         Menu *new_from;
308
309         new_from = new Menu;
310         {
311                 MenuList& f = new_from->items ();
312                 f.push_back (MenuElem (_("Selection..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::new_from_selection), false)));
313                 f.push_back (MenuElem (_("Record Enabled..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::new_from_rec_enabled), false)));
314                 f.push_back (MenuElem (_("Soloed..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::new_from_soloed), false)));
315         }
316         items.push_back (MenuElem (_("Create New Group From..."), *new_from));
317
318         new_from = new Menu;
319         {
320                 MenuList& f = new_from->items ();
321                 f.push_back (MenuElem (_("Selection..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::new_from_selection), true)));
322                 f.push_back (MenuElem (_("Record Enabled..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::new_from_rec_enabled), true)));
323                 f.push_back (MenuElem (_("Soloed..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::new_from_soloed), true)));
324         }
325         items.push_back (MenuElem (_("Create New Group with Master From..."), *new_from));
326 }
327
328 Gtk::Menu*
329 GroupTabs::get_menu (RouteGroup* g, bool in_tab_area)
330 {
331         using namespace Menu_Helpers;
332
333         delete _menu;
334
335         _menu = new Menu;
336         _menu->set_name ("ArdourContextMenu");
337
338         MenuList& items = _menu->items();
339         Menu* vca_menu;
340
341         const VCAList vcas = _session->vca_manager().vcas ();
342
343         if (!in_tab_area) {
344                 items.push_back (MenuElem (_("Create New Group ..."), sigc::bind (sigc::mem_fun(*this, &GroupTabs::run_new_group_dialog), (RouteList const *) 0, false)));
345                 items.push_back (MenuElem (_("Create New Group with Control Master ..."), sigc::bind (sigc::mem_fun(*this, &GroupTabs::run_new_group_dialog), (RouteList const *) 0, true)));
346
347                 /* context menu is not for a group tab, show the "create new
348                    from" items here
349                 */
350                 add_new_from_items (items);
351         }
352
353         if (g) {
354                 items.push_back (SeparatorElem());
355                 items.push_back (MenuElem (_("Edit Group..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::edit_group), g)));
356                 items.push_back (MenuElem (_("Collect Group"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::collect), g)));
357                 items.push_back (MenuElem (_("Remove Group"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::remove_group), g)));
358
359                 items.push_back (SeparatorElem());
360
361                 vca_menu = new Menu;
362                 MenuList& f (vca_menu->items());
363                 f.push_back (MenuElem ("New", sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_group_to_master), 0, g, true)));
364
365                 for (VCAList::const_iterator v = vcas.begin(); v != vcas.end(); ++v) {
366                         f.push_back (MenuElem (string_compose ("VCA %1", (*v)->number()), sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_group_to_master), (*v)->number(), g, true)));
367                 }
368                 items.push_back (MenuElem (_("Assign Group to Control Master..."), *vca_menu));
369
370
371                 items.push_back (SeparatorElem());
372
373                 if (g->has_subgroup()) {
374                         items.push_back (MenuElem (_("Remove Subgroup Bus"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::un_subgroup), g)));
375                 } else {
376                         items.push_back (MenuElem (_("Add New Subgroup Bus"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::subgroup), g, false, PreFader)));
377                 }
378                 items.push_back (MenuElem (_("Add New Aux Bus (pre-fader)"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::subgroup), g, true, PreFader)));
379                 items.push_back (MenuElem (_("Add New Aux Bus (post-fader)"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::subgroup), g, true, PostFader)));
380                 items.push_back (SeparatorElem());
381
382         }
383
384         add_menu_items (_menu, g);
385
386         if (in_tab_area) {
387                 /* context menu is for a group tab, show the "create new
388                    from" items here
389                 */
390                 add_new_from_items (items);
391         }
392
393         items.push_back (SeparatorElem());
394
395         vca_menu = new Menu;
396         {
397                 MenuList& f (vca_menu->items());
398                 f.push_back (MenuElem ("New", sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_selection_to_master), 0)));
399                 for (VCAList::const_iterator v = vcas.begin(); v != vcas.end(); ++v) {
400                         f.push_back (MenuElem (string_compose ("VCA %1", (*v)->number()), sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_selection_to_master), (*v)->number())));
401                 }
402         }
403
404         items.push_back (MenuElem (_("Assign Selection to Control Master..."), *vca_menu));
405
406         vca_menu = new Menu;
407         {
408                 MenuList& f (vca_menu->items());
409                 f.push_back (MenuElem ("New", sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_selection_to_master), 0)));
410                 for (VCAList::const_iterator v = vcas.begin(); v != vcas.end(); ++v) {
411                         f.push_back (MenuElem (string_compose ("VCA %1", (*v)->number()), sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_selection_to_master), (*v)->number())));
412                 }
413
414         }
415         items.push_back (MenuElem (_("Assign Record Enabled to Control Master..."), *vca_menu));
416
417         vca_menu = new Menu;
418         {
419                 MenuList& f (vca_menu->items());
420                 f.push_back (MenuElem ("New", sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_selection_to_master), 0)));
421                 for (VCAList::const_iterator v = vcas.begin(); v != vcas.end(); ++v) {
422                         f.push_back (MenuElem (string_compose ("VCA %1", (*v)->number()), sigc::bind (sigc::mem_fun (*this, &GroupTabs::assign_selection_to_master), (*v)->number())));
423                 }
424
425         }
426         items.push_back (MenuElem (_("Assign Soloed to Control Master...")));
427
428         items.push_back (SeparatorElem());
429         items.push_back (MenuElem (_("Enable All Groups"), sigc::mem_fun(*this, &GroupTabs::activate_all)));
430         items.push_back (MenuElem (_("Disable All Groups"), sigc::mem_fun(*this, &GroupTabs::disable_all)));
431
432         return _menu;
433 }
434
435 void
436 GroupTabs::assign_group_to_master (uint32_t which, RouteGroup* group, bool rename_master) const
437 {
438         if (!_session || !group) {
439                 return;
440         }
441
442         boost::shared_ptr<VCA> master;
443
444         if (which == 0) {
445                 if (_session->vca_manager().create_vca (1)) {
446                         /* error */
447                         return;
448                 }
449
450                 /* VCAs use 1-based counting. Get most recently created VCA... */
451                 which = _session->vca_manager().n_vcas();
452         }
453
454         master = _session->vca_manager().vca_by_number (which);
455
456         if (!master) {
457                 /* should never happen; if it does, basically something deeply
458                    odd happened, no reason to tell user because there's no
459                    sensible explanation.
460                 */
461                 return;
462         }
463
464         group->assign_master (master);
465
466         if (rename_master){
467                 master->set_name (group->name());
468         }
469 }
470
471 void
472 GroupTabs::assign_some_to_master (uint32_t which, RouteList rl)
473 {
474         if (!_session) {
475                 return;
476         }
477
478         boost::shared_ptr<VCA> master;
479
480         if (which == 0) {
481                 if (_session->vca_manager().create_vca (1)) {
482                         /* error */
483                         return;
484                 }
485
486                 /* VCAs use 1-based counting. Get most recently created VCA... */
487                 which = _session->vca_manager().n_vcas();
488         }
489
490         master = _session->vca_manager().vca_by_number (which);
491
492         if (!master) {
493                 /* should never happen; if it does, basically something deeply
494                    odd happened, no reason to tell user because there's no
495                    sensible explanation.
496                 */
497                 return;
498         }
499
500
501         if (rl.empty()) {
502                 return;
503         }
504
505         for (RouteList::iterator r = rl.begin(); r != rl.end(); ++r) {
506                 (*r)->assign (master);
507         }
508 }
509
510 RouteList
511 GroupTabs::get_rec_enabled ()
512 {
513         RouteList rec_enabled;
514
515         if (!_session) {
516                 return rec_enabled;
517         }
518
519         boost::shared_ptr<RouteList> rl = _session->get_routes ();
520
521         for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
522                 boost::shared_ptr<Track> trk (boost::dynamic_pointer_cast<Track> (*i));
523                 if (trk && trk->rec_enable_control()->get_value()) {
524                         rec_enabled.push_back (*i);
525                 }
526         }
527
528         return rec_enabled;
529 }
530
531
532 RouteList
533 GroupTabs::get_soloed ()
534 {
535         boost::shared_ptr<RouteList> rl = _session->get_routes ();
536
537         RouteList soloed;
538
539         for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
540                 if (!(*i)->is_master() && (*i)->soloed()) {
541                         soloed.push_back (*i);
542                 }
543         }
544
545         return soloed;
546 }
547
548 void
549 GroupTabs::assign_selection_to_master (uint32_t which)
550 {
551         assign_some_to_master (which, selected_routes ());
552 }
553
554 void
555 GroupTabs::assign_recenabled_to_master (uint32_t which)
556 {
557         assign_some_to_master (which, get_rec_enabled());
558 }
559
560 void
561 GroupTabs::assign_soloed_to_master (uint32_t which)
562 {
563         assign_some_to_master (which, get_soloed());
564 }
565
566 void
567 GroupTabs::new_from_selection (bool with_master)
568 {
569         RouteList rl (selected_routes());
570         run_new_group_dialog (&rl, with_master);
571 }
572
573 void
574 GroupTabs::new_from_rec_enabled (bool with_master)
575 {
576         RouteList rl (get_rec_enabled());
577         run_new_group_dialog (&rl, with_master);
578 }
579
580 void
581 GroupTabs::new_from_soloed (bool with_master)
582 {
583         RouteList rl (get_soloed());
584         run_new_group_dialog (&rl, with_master);
585 }
586
587 void
588 GroupTabs::run_new_group_dialog (RouteList const * rl, bool with_master)
589 {
590         if (rl && rl->empty()) {
591                 return;
592         }
593
594         RouteGroup* g = new RouteGroup (*_session, "");
595         RouteGroupDialog* d = new RouteGroupDialog (g, true);
596
597         d->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &GroupTabs::new_group_dialog_finished), d, rl ? new RouteList (*rl): 0, with_master));
598         d->present ();
599 }
600
601 void
602 GroupTabs::new_group_dialog_finished (int r, RouteGroupDialog* d, RouteList const * rl, bool with_master) const
603 {
604         if (r == RESPONSE_OK) {
605
606                 if (!d->name_check()) {
607                         return;
608                 }
609
610                 _session->add_route_group (d->group());
611
612                 if (rl) {
613                         for (RouteList::const_iterator i = rl->begin(); i != rl->end(); ++i) {
614                                 d->group()->add (*i);
615                         }
616
617                         if (with_master) {
618                                 assign_group_to_master (0, d->group(), true); /* zero => new master */
619                         }
620                 }
621         } else {
622                 delete d->group ();
623         }
624
625         delete rl;
626         delete_when_idle (d);
627 }
628
629 void
630 GroupTabs::edit_group (RouteGroup* g)
631 {
632         RouteGroupDialog* d = new RouteGroupDialog (g, false);
633         d->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &GroupTabs::edit_group_dialog_finished), d));
634         d->present ();
635 }
636
637 void
638 GroupTabs::edit_group_dialog_finished (int r, RouteGroupDialog* d) const
639 {
640         delete_when_idle (d);
641 }
642
643 void
644 GroupTabs::subgroup (RouteGroup* g, bool aux, Placement placement)
645 {
646         g->make_subgroup (aux, placement);
647 }
648
649 void
650 GroupTabs::un_subgroup (RouteGroup* g)
651 {
652         g->destroy_subgroup ();
653 }
654
655 /** Collect all members of a RouteGroup so that they are together in the Editor or Mixer.
656  *  @param g Group to collect.
657  */
658 void
659 GroupTabs::collect (RouteGroup* g)
660 {
661         boost::shared_ptr<RouteList> group_routes = g->route_list ();
662         group_routes->sort (Stripable::PresentationOrderSorter());
663         int const N = group_routes->size ();
664
665         RouteList::iterator i = group_routes->begin ();
666         boost::shared_ptr<RouteList> routes = _session->get_routes ();
667         routes->sort (Stripable::PresentationOrderSorter());
668         RouteList::const_iterator j = routes->begin ();
669
670         int diff = 0;
671         int coll = -1;
672         while (i != group_routes->end() && j != routes->end()) {
673
674                 PresentationInfo::order_t const k = (*j)->presentation_info ().order();
675
676                 if (*i == *j) {
677
678                         if (coll == -1) {
679                                 coll = k;
680                                 diff = N - 1;
681                         } else {
682                                 --diff;
683                         }
684
685                         (*j)->set_presentation_order (coll, false);
686
687                         ++coll;
688                         ++i;
689
690                 } else {
691
692                         (*j)->set_presentation_order (k + diff, false);
693
694                 }
695
696                 ++j;
697         }
698
699         _session->notify_presentation_info_change ();
700 }
701
702 void
703 GroupTabs::activate_all ()
704 {
705         _session->foreach_route_group (
706                 sigc::bind (sigc::mem_fun (*this, &GroupTabs::set_activation), true)
707                 );
708 }
709
710 void
711 GroupTabs::disable_all ()
712 {
713         _session->foreach_route_group (
714                 sigc::bind (sigc::mem_fun (*this, &GroupTabs::set_activation), false)
715                 );
716 }
717
718 void
719 GroupTabs::set_activation (RouteGroup* g, bool a)
720 {
721         g->set_active (a, this);
722 }
723
724 void
725 GroupTabs::remove_group (RouteGroup* g)
726 {
727         _session->remove_route_group (*g);
728 }
729
730 /** Set the color of the tab of a route group */
731 void
732 GroupTabs::set_group_color (RouteGroup* group, uint32_t color)
733 {
734         assert (group);
735         uint32_t r, g, b, a;
736
737         UINT_TO_RGBA (color, &r, &g, &b, &a);
738
739         /* Hack to disallow black route groups; force a dark grey instead */
740         const uint32_t dark_gray = 25;
741
742         if (r < dark_gray && g < dark_gray && b < dark_gray) {
743                 r = dark_gray;
744                 g = dark_gray;
745                 b = dark_gray;
746         }
747
748         GUIObjectState& gui_state = *ARDOUR_UI::instance()->gui_object_state;
749
750         char buf[64];
751
752         /* for historical reasons the colors must be stored as 16 bit color
753          * values. Ugh.
754          */
755
756         snprintf (buf, sizeof (buf), "%d:%d:%d", (r<<8), (g<<8), (b<<8));
757         gui_state.set_property (group_gui_id (group), "color", buf);
758
759         /* the group color change notification */
760
761         PBD::PropertyChange change;
762         change.add (Properties::color);
763         group->PropertyChanged (change);
764
765         /* This is a bit of a hack, but this might change
766            our route's effective color, so emit gui_changed
767            for our routes.
768         */
769
770         emit_gui_changed_for_members (group);
771 }
772
773 /** @return the ID string to use for the GUI state of a route group */
774 string
775 GroupTabs::group_gui_id (RouteGroup* group)
776 {
777         assert (group);
778
779         char buf[64];
780         snprintf (buf, sizeof (buf), "route_group %s", group->id().to_s().c_str ());
781
782         return buf;
783 }
784
785 /** @return the color to use for a route group tab */
786 uint32_t
787 GroupTabs::group_color (RouteGroup* group)
788 {
789         assert (group);
790
791         GUIObjectState& gui_state = *ARDOUR_UI::instance()->gui_object_state;
792         string const gui_id = group_gui_id (group);
793         bool empty;
794         string const color = gui_state.get_string (gui_id, "color", &empty);
795
796         if (empty) {
797                 /* no color has yet been set, so use a random one */
798                 uint32_t c = gdk_color_to_rgba (unique_random_color (_used_colors));
799                 set_group_color (group, c);
800                 return c;
801         }
802
803         int r, g, b;
804
805         /* for historical reasons, colors are stored as 16 bit values.
806          */
807
808         sscanf (color.c_str(), "%d:%d:%d", &r, &g, &b);
809
810         r /= 256;
811         g /= 256;
812         b /= 256;
813
814         return RGBA_TO_UINT (r, g, b, 255);
815 }
816
817 void
818 GroupTabs::route_group_property_changed (RouteGroup* rg)
819 {
820         /* This is a bit of a hack, but this might change
821            our route's effective color, so emit gui_changed
822            for our routes.
823         */
824
825         emit_gui_changed_for_members (rg);
826
827         set_dirty ();
828 }
829
830 void
831 GroupTabs::route_added_to_route_group (RouteGroup*, boost::weak_ptr<Route> w)
832 {
833         /* Similarly-spirited hack as in route_group_property_changed */
834
835         boost::shared_ptr<Route> r = w.lock ();
836         if (!r) {
837                 return;
838         }
839
840         r->presentation_info().PropertyChanged (Properties::color);
841
842         set_dirty ();
843 }
844
845 void
846 GroupTabs::route_removed_from_route_group (RouteGroup*, boost::weak_ptr<Route> w)
847 {
848         /* Similarly-spirited hack as in route_group_property_changed */
849
850         boost::shared_ptr<Route> r = w.lock ();
851         if (!r) {
852                 return;
853         }
854
855         r->presentation_info().PropertyChanged (Properties::color);
856
857         set_dirty ();
858 }
859
860 void
861 GroupTabs::emit_gui_changed_for_members (RouteGroup* rg)
862 {
863         for (RouteList::iterator i = rg->route_list()->begin(); i != rg->route_list()->end(); ++i) {
864                 (*i)->gui_changed (X_("color"), 0);
865         }
866 }