a930fbbce4b59d194cb71e8e8d68b31d0300617f
[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 #include "ardour/session.h"
22 #include "ardour/route_group.h"
23 #include "ardour/route.h"
24
25 #include "gui_thread.h"
26 #include "route_group_dialog.h"
27 #include "group_tabs.h"
28 #include "keyboard.h"
29 #include "i18n.h"
30 #include "ardour_ui.h"
31 #include "rgb_macros.h"
32 #include "ui_config.h"
33 #include "utils.h"
34
35 using namespace std;
36 using namespace Gtk;
37 using namespace ARDOUR;
38 using namespace ARDOUR_UI_UTILS;
39 using Gtkmm2ext::Keyboard;
40
41 list<Gdk::Color> GroupTabs::_used_colors;
42
43 GroupTabs::GroupTabs ()
44         : _menu (0)
45         , _dragging (0)
46         , _dragging_new_tab (0)
47 {
48         add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::POINTER_MOTION_MASK);
49         UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &GroupTabs::queue_draw));
50 }
51
52 GroupTabs::~GroupTabs ()
53 {
54         delete _menu;
55 }
56
57 void
58 GroupTabs::set_session (Session* s)
59 {
60         SessionHandlePtr::set_session (s);
61
62         if (_session) {
63                 _session->RouteGroupPropertyChanged.connect (
64                         _session_connections, invalidator (*this), boost::bind (&GroupTabs::route_group_property_changed, this, _1), gui_context()
65                         );
66                 _session->RouteAddedToRouteGroup.connect (
67                         _session_connections, invalidator (*this), boost::bind (&GroupTabs::route_added_to_route_group, this, _1, _2), gui_context()
68                         );
69                 _session->RouteRemovedFromRouteGroup.connect (
70                         _session_connections, invalidator (*this), boost::bind (&GroupTabs::route_removed_from_route_group, this, _1, _2), gui_context()
71                         );
72
73                 _session->route_group_removed.connect (_session_connections, invalidator (*this), boost::bind (&GroupTabs::set_dirty, this, (cairo_rectangle_t*)0), gui_context());
74         }
75 }
76
77
78 /** Handle a size request.
79  *  @param req GTK requisition
80  */
81 void
82 GroupTabs::on_size_request (Gtk::Requisition *req)
83 {
84         /* Use a dummy, small width and the actual height that we want */
85         req->width = 16;
86         req->height = 16;
87 }
88
89 bool
90 GroupTabs::on_button_press_event (GdkEventButton* ev)
91 {
92         using namespace Menu_Helpers;
93
94         double const p = primary_coordinate (ev->x, ev->y);
95
96         list<Tab>::iterator prev;
97         list<Tab>::iterator next;
98         Tab* t = click_to_tab (p, &prev, &next);
99
100         _drag_min = prev != _tabs.end() ? prev->to : 0;
101         _drag_max = next != _tabs.end() ? next->from : extent ();
102
103         if (ev->button == 1) {
104
105                 if (t == 0) {
106                         Tab n;
107                         n.from = n.to = p;
108                         _dragging_new_tab = true;
109
110                         if (next == _tabs.end()) {
111                                 _tabs.push_back (n);
112                                 t = &_tabs.back ();
113                         } else {
114                                 list<Tab>::iterator j = _tabs.insert (next, n);
115                                 t = &(*j);
116                         }
117
118                 } else {
119                         _dragging_new_tab = false;
120                         _initial_dragging_routes = routes_for_tab (t);
121                 }
122
123                 _dragging = t;
124                 _drag_moved = false;
125                 _drag_first = p;
126
127                 double const h = (t->from + t->to) / 2;
128                 if (p < h) {
129                         _drag_moving = t->from;
130                         _drag_fixed = t->to;
131                         _drag_offset = p - t->from;
132                 } else {
133                         _drag_moving = t->to;
134                         _drag_fixed = t->from;
135                         _drag_offset = p - t->to;
136                 }
137
138         } else if (ev->button == 3) {
139
140                 RouteGroup* g = t ? t->group : 0;
141
142                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier) && g) {
143                         /* edit */
144                         RouteGroupDialog d (g, false);
145                         d.do_run ();
146                 } else {
147                         Menu* m = get_menu (g, true);
148                         if (m) {
149                                 m->popup (ev->button, ev->time);
150                         }
151                 }
152         }
153
154         return true;
155 }
156
157
158 bool
159 GroupTabs::on_motion_notify_event (GdkEventMotion* ev)
160 {
161         if (_dragging == 0) {
162                 return false;
163         }
164
165         double const p = primary_coordinate (ev->x, ev->y);
166
167         if (p != _drag_first) {
168                 _drag_moved = true;
169         }
170
171         _drag_moving = p - _drag_offset;
172
173         _dragging->from = min (_drag_moving, _drag_fixed);
174         _dragging->to = max (_drag_moving, _drag_fixed);
175
176         _dragging->from = max (_dragging->from, _drag_min);
177         _dragging->to = min (_dragging->to, _drag_max);
178
179         set_dirty ();
180         queue_draw ();
181
182         gdk_event_request_motions(ev);
183
184         return true;
185 }
186
187
188 bool
189 GroupTabs::on_button_release_event (GdkEventButton*)
190 {
191         if (_dragging == 0) {
192                 return false;
193         }
194
195         if (!_drag_moved) {
196
197                 if (_dragging->group) {
198                         /* toggle active state */
199                         _dragging->group->set_active (!_dragging->group->is_active (), this);
200                 }
201
202         } else {
203                 /* finish drag */
204                 RouteList routes = routes_for_tab (_dragging);
205
206                 if (!routes.empty()) {
207                         if (_dragging_new_tab) {
208                                 RouteGroup* g = create_and_add_group ();
209                                 if (g) {
210                                         for (RouteList::iterator i = routes.begin(); i != routes.end(); ++i) {
211                                                 g->add (*i);
212                                         }
213                                 }
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 Gtk::Menu*
304 GroupTabs::get_menu (RouteGroup* g, bool TabArea)
305 {
306         using namespace Menu_Helpers;
307
308         delete _menu;
309
310         Menu* new_from = new Menu;
311         MenuList& f = new_from->items ();
312         f.push_back (MenuElem (_("Selection..."), sigc::mem_fun (*this, &GroupTabs::new_from_selection)));
313         f.push_back (MenuElem (_("Record Enabled..."), sigc::mem_fun (*this, &GroupTabs::new_from_rec_enabled)));
314         f.push_back (MenuElem (_("Soloed..."), sigc::mem_fun (*this, &GroupTabs::new_from_soloed)));
315
316         _menu = new Menu;
317         _menu->set_name ("ArdourContextMenu");
318         MenuList& items = _menu->items();
319
320         if (!TabArea) {
321                 items.push_back (MenuElem (_("Create New Group ..."), hide_return (sigc::mem_fun(*this, &GroupTabs::create_and_add_group))));
322         }
323
324         items.push_back (MenuElem (_("Create New Group From"), *new_from));
325
326         if (g) {
327                 items.push_back (MenuElem (_("Edit Group..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::edit_group), g)));
328                 items.push_back (MenuElem (_("Collect Group"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::collect), g)));
329                 items.push_back (MenuElem (_("Remove Group"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::remove_group), g)));
330                 items.push_back (SeparatorElem());
331                 if (g->has_subgroup()) {
332                         items.push_back (MenuElem (_("Remove Subgroup Bus"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::un_subgroup), g)));
333                 } else {
334                         items.push_back (MenuElem (_("Add New Subgroup Bus"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::subgroup), g, false, PreFader)));
335                 }
336                 items.push_back (MenuElem (_("Add New Aux Bus (pre-fader)"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::subgroup), g, true, PreFader)));
337                 items.push_back (MenuElem (_("Add New Aux Bus (post-fader)"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::subgroup), g, true, PostFader)));
338         }
339
340         add_menu_items (_menu, g);
341
342         items.push_back (SeparatorElem());
343         items.push_back (MenuElem (_("Enable All Groups"), sigc::mem_fun(*this, &GroupTabs::activate_all)));
344         items.push_back (MenuElem (_("Disable All Groups"), sigc::mem_fun(*this, &GroupTabs::disable_all)));
345
346         return _menu;
347
348 }
349
350 void
351 GroupTabs::new_from_selection ()
352 {
353         RouteList rl = selected_routes ();
354         if (rl.empty()) {
355                 return;
356         }
357
358         run_new_group_dialog (rl);
359 }
360
361 void
362 GroupTabs::new_from_rec_enabled ()
363 {
364         boost::shared_ptr<RouteList> rl = _session->get_routes ();
365
366         RouteList rec_enabled;
367
368         for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
369                 boost::shared_ptr<Track> trk (boost::dynamic_pointer_cast<Track> (*i));
370                 if (trk && trk->rec_enable_control()->get_value()) {
371                         rec_enabled.push_back (*i);
372                 }
373         }
374
375         if (rec_enabled.empty()) {
376                 return;
377         }
378
379         run_new_group_dialog (rec_enabled);
380 }
381
382 void
383 GroupTabs::new_from_soloed ()
384 {
385         boost::shared_ptr<RouteList> rl = _session->get_routes ();
386
387         RouteList soloed;
388
389         for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
390                 if (!(*i)->is_master() && (*i)->soloed()) {
391                         soloed.push_back (*i);
392                 }
393         }
394
395         if (soloed.empty()) {
396                 return;
397         }
398
399         run_new_group_dialog (soloed);
400 }
401
402 void
403 GroupTabs::run_new_group_dialog (RouteList const & rl)
404 {
405         RouteGroup* g = new RouteGroup (*_session, "");
406         RouteGroupDialog d (g, true);
407
408         if (d.do_run ()) {
409                 delete g;
410         } else {
411                 _session->add_route_group (g);
412                 for (RouteList::const_iterator i = rl.begin(); i != rl.end(); ++i) {
413                         g->add (*i);
414                 }
415         }
416 }
417
418 RouteGroup *
419 GroupTabs::create_and_add_group () const
420 {
421         RouteGroup* g = new RouteGroup (*_session, "");
422         RouteGroupDialog d (g, true);
423
424         if (d.do_run ()) {
425                 delete g;
426                 return 0;
427         }
428
429         _session->add_route_group (g);
430         return g;
431 }
432
433 void
434 GroupTabs::edit_group (RouteGroup* g)
435 {
436         RouteGroupDialog d (g, false);
437         d.do_run ();
438 }
439
440 void
441 GroupTabs::subgroup (RouteGroup* g, bool aux, Placement placement)
442 {
443         g->make_subgroup (aux, placement);
444 }
445
446 void
447 GroupTabs::un_subgroup (RouteGroup* g)
448 {
449         g->destroy_subgroup ();
450 }
451
452 struct CollectSorter {
453         bool operator () (boost::shared_ptr<Route> a, boost::shared_ptr<Route> b) {
454                 return a->order_key () < b->order_key ();
455         }
456 };
457
458 struct OrderSorter {
459         bool operator() (boost::shared_ptr<Route> a, boost::shared_ptr<Route> b) {
460                 return a->order_key () < b->order_key ();
461         }
462 };
463
464 /** Collect all members of a RouteGroup so that they are together in the Editor or Mixer.
465  *  @param g Group to collect.
466  */
467 void
468 GroupTabs::collect (RouteGroup* g)
469 {
470         boost::shared_ptr<RouteList> group_routes = g->route_list ();
471         group_routes->sort (CollectSorter ());
472         int const N = group_routes->size ();
473
474         RouteList::iterator i = group_routes->begin ();
475         boost::shared_ptr<RouteList> routes = _session->get_routes ();
476         routes->sort (OrderSorter ());
477         RouteList::const_iterator j = routes->begin ();
478
479         int diff = 0;
480         int coll = -1;
481         while (i != group_routes->end() && j != routes->end()) {
482
483                 int const k = (*j)->order_key ();
484
485                 if (*i == *j) {
486
487                         if (coll == -1) {
488                                 coll = k;
489                                 diff = N - 1;
490                         } else {
491                                 --diff;
492                         }
493
494                         (*j)->set_order_key (coll);
495
496                         ++coll;
497                         ++i;
498
499                 } else {
500
501                         (*j)->set_order_key (k + diff);
502
503                 }
504
505                 ++j;
506         }
507
508         _session->sync_order_keys ();
509 }
510
511 void
512 GroupTabs::activate_all ()
513 {
514         _session->foreach_route_group (
515                 sigc::bind (sigc::mem_fun (*this, &GroupTabs::set_activation), true)
516                 );
517 }
518
519 void
520 GroupTabs::disable_all ()
521 {
522         _session->foreach_route_group (
523                 sigc::bind (sigc::mem_fun (*this, &GroupTabs::set_activation), false)
524                 );
525 }
526
527 void
528 GroupTabs::set_activation (RouteGroup* g, bool a)
529 {
530         g->set_active (a, this);
531 }
532
533 void
534 GroupTabs::remove_group (RouteGroup* g)
535 {
536         _session->remove_route_group (*g);
537 }
538
539 /** Set the color of the tab of a route group */
540 void
541 GroupTabs::set_group_color (RouteGroup* group, uint32_t color)
542 {
543         assert (group);
544         uint32_t r, g, b, a;
545
546         UINT_TO_RGBA (color, &r, &g, &b, &a);
547
548         /* Hack to disallow black route groups; force a dark grey instead */
549
550         if (r == 0 && g == 0 && b == 0) {
551                 r = 25;
552                 g = 25;
553                 b = 25;
554         }
555
556         GUIObjectState& gui_state = *ARDOUR_UI::instance()->gui_object_state;
557
558         char buf[64];
559
560         /* for historical reasons the colors must be stored as 16 bit color
561          * values. Ugh.
562          */
563
564         snprintf (buf, sizeof (buf), "%d:%d:%d", (r<<8), (g<<8), (b<<8));
565         gui_state.set_property (group_gui_id (group), "color", buf);
566
567         /* the group color change notification */
568
569         PBD::PropertyChange change;
570         change.add (Properties::color);
571         group->PropertyChanged (change);
572
573         /* This is a bit of a hack, but this might change
574            our route's effective color, so emit gui_changed
575            for our routes.
576         */
577
578         emit_gui_changed_for_members (group);
579 }
580
581 /** @return the ID string to use for the GUI state of a route group */
582 string
583 GroupTabs::group_gui_id (RouteGroup* group)
584 {
585         assert (group);
586
587         char buf[64];
588         snprintf (buf, sizeof (buf), "route_group %s", group->id().to_s().c_str ());
589
590         return buf;
591 }
592
593 /** @return the color to use for a route group tab */
594 uint32_t
595 GroupTabs::group_color (RouteGroup* group)
596 {
597         assert (group);
598
599         GUIObjectState& gui_state = *ARDOUR_UI::instance()->gui_object_state;
600         string const gui_id = group_gui_id (group);
601         bool empty;
602         string const color = gui_state.get_string (gui_id, "color", &empty);
603
604         if (empty) {
605                 /* no color has yet been set, so use a random one */
606                 uint32_t c = gdk_color_to_rgba (unique_random_color (_used_colors));
607                 set_group_color (group, c);
608                 return c;
609         }
610
611         int r, g, b;
612
613         /* for historical reasons, colors are stored as 16 bit values.
614          */
615
616         sscanf (color.c_str(), "%d:%d:%d", &r, &g, &b);
617
618         r /= 256;
619         g /= 256;
620         b /= 256;
621
622         return RGBA_TO_UINT (r, g, b, 255);
623 }
624
625 void
626 GroupTabs::route_group_property_changed (RouteGroup* rg)
627 {
628         /* This is a bit of a hack, but this might change
629            our route's effective color, so emit gui_changed
630            for our routes.
631         */
632
633         emit_gui_changed_for_members (rg);
634
635         set_dirty ();
636 }
637
638 void
639 GroupTabs::route_added_to_route_group (RouteGroup*, boost::weak_ptr<Route> w)
640 {
641         /* Similarly-spirited hack as in route_group_property_changed */
642
643         boost::shared_ptr<Route> r = w.lock ();
644         if (!r) {
645                 return;
646         }
647
648         r->gui_changed (X_("color"), 0);
649
650         set_dirty ();
651 }
652
653 void
654 GroupTabs::route_removed_from_route_group (RouteGroup*, boost::weak_ptr<Route> w)
655 {
656         /* Similarly-spirited hack as in route_group_property_changed */
657
658         boost::shared_ptr<Route> r = w.lock ();
659         if (!r) {
660                 return;
661         }
662
663         r->gui_changed (X_("color"), 0);
664
665         set_dirty ();
666 }
667
668 void
669 GroupTabs::emit_gui_changed_for_members (RouteGroup* rg)
670 {
671         for (RouteList::iterator i = rg->route_list()->begin(); i != rg->route_list()->end(); ++i) {
672                 (*i)->gui_changed (X_("color"), 0);
673         }
674 }