OSC: Changed gainVCA to gainfader as VCA is already used.
[ardour.git] / gtk2_ardour / mixer_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 <boost/foreach.hpp>
21
22 #include "gtkmm2ext/utils.h"
23
24 #include "ardour/route_group.h"
25
26 #include "canvas/colors.h"
27
28 #include "mixer_group_tabs.h"
29 #include "mixer_strip.h"
30 #include "mixer_ui.h"
31 #include "rgb_macros.h"
32 #include "route_group_dialog.h"
33 #include "ui_config.h"
34 #include "utils.h"
35
36 #include "i18n.h"
37
38 using namespace std;
39 using namespace Gtk;
40 using namespace ARDOUR;
41 using namespace ARDOUR_UI_UTILS;
42 using namespace PBD;
43
44 MixerGroupTabs::MixerGroupTabs (Mixer_UI* m)
45         : _mixer (m)
46 {
47
48 }
49
50
51 list<GroupTabs::Tab>
52 MixerGroupTabs::compute_tabs () const
53 {
54         list<Tab> tabs;
55
56         Tab tab;
57         tab.from = 0;
58         tab.group = 0;
59
60         int32_t x = 0;
61         TreeModel::Children rows = _mixer->track_model->children ();
62         for (TreeModel::Children::iterator i = rows.begin(); i != rows.end(); ++i) {
63
64                 MixerStrip* s = (*i)[_mixer->track_columns.strip];
65
66                 if (s->route()->is_master() || s->route()->is_monitor() || !s->marked_for_display()) {
67                         continue;
68                 }
69
70                 RouteGroup* g = s->route_group ();
71
72                 if (g != tab.group) {
73                         if (tab.group) {
74                                 tab.to = x;
75                                 tabs.push_back (tab);
76                         }
77
78                         tab.from = x;
79                         tab.group = g;
80
81                         if (g) {
82                                 tab.color = group_color (g);
83                         }
84                 }
85
86                 int ww = 0, wh = 0;
87                 s->get_size_request (ww, wh); // widget may not be realized, get_width() is invalid.
88                 x += ww;
89         }
90
91         if (tab.group) {
92                 tab.to = x;
93                 tabs.push_back (tab);
94         }
95
96         return tabs;
97 }
98
99 void
100 MixerGroupTabs::draw_tab (cairo_t* cr, Tab const & tab) const
101 {
102         double const arc_radius = get_height();
103         double r, g, b, a;
104
105         if (tab.group && tab.group->is_active()) {
106                 ArdourCanvas::color_to_rgba (tab.color, r, g, b, a);
107         } else {
108                 ArdourCanvas::color_to_rgba (UIConfiguration::instance().color ("inactive group tab"), r, g, b, a);
109         }
110
111         a = 1.0;
112
113         cairo_set_source_rgba (cr, r, g, b, a);
114         cairo_arc (cr, tab.from + arc_radius, get_height(), arc_radius, M_PI, 3 * M_PI / 2);
115         cairo_line_to (cr, tab.to - arc_radius, 0);
116         cairo_arc (cr, tab.to - arc_radius, get_height(), arc_radius, 3 * M_PI / 2, 2 * M_PI);
117         cairo_line_to (cr, tab.from, get_height());
118         cairo_fill (cr);
119
120         if (tab.group) {
121                 pair<string, double> const f = Gtkmm2ext::fit_to_pixels (cr, tab.group->name(), tab.to - tab.from - arc_radius * 2);
122
123                 cairo_text_extents_t ext;
124                 cairo_text_extents (cr, tab.group->name().c_str(), &ext);
125
126                 ArdourCanvas::Color c = ArdourCanvas::contrasting_text_color (ArdourCanvas::rgba_to_color (r, g, b, a));
127                 ArdourCanvas::color_to_rgba (c, r, g, b, a);
128
129                 cairo_set_source_rgb (cr, r, g, b);
130                 cairo_move_to (cr, tab.from + (tab.to - tab.from - f.second) / 2, get_height() - ext.height / 2);
131                 cairo_save (cr);
132                 cairo_show_text (cr, f.first.c_str());
133                 cairo_restore (cr);
134         }
135 }
136
137 double
138 MixerGroupTabs::primary_coordinate (double x, double) const
139 {
140         return x;
141 }
142
143 RouteList
144 MixerGroupTabs::routes_for_tab (Tab const * t) const
145 {
146         RouteList routes;
147         int32_t x = 0;
148
149         TreeModel::Children rows = _mixer->track_model->children ();
150         for (TreeModel::Children::iterator i = rows.begin(); i != rows.end(); ++i) {
151
152                 MixerStrip* s = (*i)[_mixer->track_columns.strip];
153
154                 if (s->route()->is_master() || s->route()->is_monitor() || !s->marked_for_display()) {
155                         continue;
156                 }
157
158                 if (x >= t->to) {
159                         /* tab finishes before this track starts */
160                         break;
161                 }
162
163                 double const h = x + s->get_width() / 2;
164
165                 if (t->from < h && t->to > h) {
166                         routes.push_back (s->route ());
167                 }
168
169                 x += s->get_width ();
170         }
171
172         return routes;
173 }
174
175 RouteList
176 MixerGroupTabs::selected_routes () const
177 {
178         RouteList rl;
179         BOOST_FOREACH (RouteUI* r, _mixer->selection().routes) {
180                 boost::shared_ptr<Route> rp = r->route();
181                 if (rp) {
182                         rl.push_back (rp);
183                 }
184         }
185         return rl;
186 }
187
188 void
189 MixerGroupTabs::sync_order_keys ()
190 {
191         _mixer->sync_order_keys_from_treeview ();
192 }