fix up file renaming code a little bit
[ArdourMidi.git] / gtk2_ardour / group_tabs.cc
blobf899e8fa789f035796374cb1848e2fc82d9ce99f
1 /*
2 Copyright (C) 2009 Paul Davis
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.
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.
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.
20 #include <gtkmm/stock.h>
21 #include "ardour/session.h"
22 #include "ardour/route_group.h"
23 #include "ardour/route.h"
25 #include "gui_thread.h"
26 #include "route_group_dialog.h"
27 #include "group_tabs.h"
28 #include "keyboard.h"
29 #include "i18n.h"
31 using namespace std;
32 using namespace Gtk;
33 using namespace ARDOUR;
34 using Gtkmm2ext::Keyboard;
36 GroupTabs::GroupTabs ()
37 : _menu (0)
38 , _dragging (0)
39 , _dragging_new_tab (0)
44 GroupTabs::~GroupTabs ()
46 delete _menu;
49 void
50 GroupTabs::set_session (Session* s)
52 SessionHandlePtr::set_session (s);
54 if (_session) {
55 _session->RouteGroupChanged.connect (_session_connections, invalidator (*this), boost::bind (&GroupTabs::set_dirty, this), gui_context());
60 /** Handle a size request.
61 * @param req GTK requisition
63 void
64 GroupTabs::on_size_request (Gtk::Requisition *req)
66 /* Use a dummy, small width and the actual height that we want */
67 req->width = 16;
68 req->height = 16;
71 bool
72 GroupTabs::on_button_press_event (GdkEventButton* ev)
74 using namespace Menu_Helpers;
76 double const p = primary_coordinate (ev->x, ev->y);
78 list<Tab>::iterator prev;
79 list<Tab>::iterator next;
80 Tab* t = click_to_tab (p, &prev, &next);
82 _drag_min = prev != _tabs.end() ? prev->to : 0;
83 _drag_max = next != _tabs.end() ? next->from : extent ();
85 if (ev->button == 1) {
87 if (t == 0) {
88 Tab n;
89 n.from = n.to = p;
90 _dragging_new_tab = true;
92 if (next == _tabs.end()) {
93 _tabs.push_back (n);
94 t = &_tabs.back ();
95 } else {
96 list<Tab>::iterator j = _tabs.insert (next, n);
97 t = &(*j);
100 } else {
101 _dragging_new_tab = false;
104 _dragging = t;
105 _drag_moved = false;
106 _drag_first = p;
108 double const h = (t->from + t->to) / 2;
109 if (p < h) {
110 _drag_moving = t->from;
111 _drag_fixed = t->to;
112 _drag_offset = p - t->from;
113 } else {
114 _drag_moving = t->to;
115 _drag_fixed = t->from;
116 _drag_offset = p - t->to;
119 } else if (ev->button == 3) {
121 RouteGroup* g = t ? t->group : 0;
122 Menu* m = get_menu (g);
123 if (m) {
124 m->popup (ev->button, ev->time);
129 return true;
133 bool
134 GroupTabs::on_motion_notify_event (GdkEventMotion* ev)
136 if (_dragging == 0) {
137 return false;
140 double const p = primary_coordinate (ev->x, ev->y);
142 if (p != _drag_first) {
143 _drag_moved = true;
146 _drag_moving = p - _drag_offset;
148 _dragging->from = min (_drag_moving, _drag_fixed);
149 _dragging->to = max (_drag_moving, _drag_fixed);
151 _dragging->from = max (_dragging->from, _drag_min);
152 _dragging->to = min (_dragging->to, _drag_max);
154 set_dirty ();
155 queue_draw ();
157 return true;
161 bool
162 GroupTabs::on_button_release_event (GdkEventButton* ev)
164 if (_dragging == 0) {
165 return false;
168 if (!_drag_moved) {
170 if (_dragging->group) {
172 if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
174 /* edit */
175 RouteGroupDialog d (_dragging->group, Gtk::Stock::APPLY);
176 d.do_run ();
178 } else {
180 /* toggle active state */
181 _dragging->group->set_active (!_dragging->group->is_active (), this);
186 } else {
187 /* finish drag */
188 RouteList routes = routes_for_tab (_dragging);
190 if (!routes.empty()) {
191 if (_dragging_new_tab) {
192 RouteGroup* g = create_and_add_group ();
193 if (g) {
194 for (RouteList::iterator i = routes.begin(); i != routes.end(); ++i) {
195 g->add (*i);
198 } else {
199 boost::shared_ptr<RouteList> r = _session->get_routes ();
200 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
202 if (find (routes.begin(), routes.end(), *i) == routes.end()) {
203 /* this route is not on the list of those that should be in _dragging's group */
204 if ((*i)->route_group() == _dragging->group) {
205 _dragging->group->remove (*i);
207 } else {
208 _dragging->group->add (*i);
214 set_dirty ();
215 queue_draw ();
218 _dragging = 0;
220 return true;
223 void
224 GroupTabs::render (cairo_t* cr)
226 if (_dragging == 0) {
227 _tabs = compute_tabs ();
230 /* background */
232 cairo_set_source_rgb (cr, 0, 0, 0);
233 cairo_rectangle (cr, 0, 0, _width, _height);
234 cairo_fill (cr);
236 /* tabs */
238 for (list<Tab>::const_iterator i = _tabs.begin(); i != _tabs.end(); ++i) {
239 draw_tab (cr, *i);
244 /** Convert a click position to a tab.
245 * @param c Click position.
246 * @param prev Filled in with the previous tab to the click, or 0.
247 * @param next Filled in with the next tab after the click, or 0.
248 * @return Tab under the click, or 0.
251 GroupTabs::Tab *
252 GroupTabs::click_to_tab (double c, list<Tab>::iterator* prev, list<Tab>::iterator* next)
254 *prev = *next = _tabs.end ();
255 Tab* under = 0;
257 list<Tab>::iterator i = _tabs.begin ();
258 while (i != _tabs.end()) {
260 if (i->from > c) {
261 break;
264 if (i->to < c) {
265 *prev = i;
266 ++i;
267 continue;
270 if (i->from <= c && c < i->to) {
271 under = &(*i);
274 ++i;
277 if (i != _tabs.end()) {
278 *next = i;
280 if (under) {
281 *next++;
285 return under;
288 Gtk::Menu*
289 GroupTabs::get_menu (RouteGroup* g)
291 using namespace Menu_Helpers;
293 delete _menu;
295 Menu* new_from = new Menu;
296 MenuList& f = new_from->items ();
297 f.push_back (MenuElem (_("Selection..."), sigc::mem_fun (*this, &GroupTabs::new_from_selection)));
298 f.push_back (MenuElem (_("Record Enabled..."), sigc::mem_fun (*this, &GroupTabs::new_from_rec_enabled)));
299 f.push_back (MenuElem (_("Soloed..."), sigc::mem_fun (*this, &GroupTabs::new_from_soloed)));
301 _menu = new Menu;
302 _menu->set_name ("ArdourContextMenu");
303 MenuList& items = _menu->items();
305 items.push_back (MenuElem (_("New..."), hide_return (sigc::mem_fun(*this, &GroupTabs::create_and_add_group))));
306 items.push_back (MenuElem (_("New From"), *new_from));
308 if (g) {
309 items.push_back (MenuElem (_("Edit..."), sigc::bind (sigc::mem_fun (*this, &GroupTabs::edit_group), g)));
310 items.push_back (MenuElem (_("Subgroup"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::subgroup), g)));
311 items.push_back (MenuElem (_("Collect"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::collect), g)));
312 items.push_back (MenuElem (_("Remove"), sigc::bind (sigc::mem_fun (*this, &GroupTabs::remove_group), g)));
315 add_menu_items (_menu, g);
317 items.push_back (SeparatorElem());
318 items.push_back (MenuElem (_("Activate All"), sigc::mem_fun(*this, &GroupTabs::activate_all)));
319 items.push_back (MenuElem (_("Disable All"), sigc::mem_fun(*this, &GroupTabs::disable_all)));
321 return _menu;
325 void
326 GroupTabs::new_from_selection ()
328 RouteList rl = selected_routes ();
329 if (rl.empty()) {
330 return;
333 run_new_group_dialog (rl);
336 void
337 GroupTabs::new_from_rec_enabled ()
339 boost::shared_ptr<RouteList> rl = _session->get_routes ();
341 RouteList rec_enabled;
343 for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
344 if ((*i)->record_enabled()) {
345 rec_enabled.push_back (*i);
349 if (rec_enabled.empty()) {
350 return;
353 run_new_group_dialog (rec_enabled);
356 void
357 GroupTabs::new_from_soloed ()
359 boost::shared_ptr<RouteList> rl = _session->get_routes ();
361 RouteList soloed;
363 for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
364 if (!(*i)->is_master() && (*i)->soloed()) {
365 soloed.push_back (*i);
369 if (soloed.empty()) {
370 return;
373 run_new_group_dialog (soloed);
377 void
378 GroupTabs::run_new_group_dialog (RouteList const & rl)
380 RouteGroup* g = new RouteGroup (*_session, "");
381 g->set_properties (default_properties ());
383 RouteGroupDialog d (g, Gtk::Stock::NEW);
384 int const r = d.do_run ();
386 switch (r) {
387 case Gtk::RESPONSE_OK:
388 case Gtk::RESPONSE_ACCEPT:
389 _session->add_route_group (g);
390 for (RouteList::const_iterator i = rl.begin(); i != rl.end(); ++i) {
391 g->add (*i);
393 break;
394 default:
395 delete g;
399 RouteGroup *
400 GroupTabs::create_and_add_group () const
402 RouteGroup* g = new RouteGroup (*_session, "");
404 g->set_properties (default_properties ());
406 RouteGroupDialog d (g, Gtk::Stock::NEW);
407 int const r = d.do_run ();
409 if (r != Gtk::RESPONSE_OK) {
410 delete g;
411 return 0;
414 _session->add_route_group (g);
415 return g;
418 void
419 GroupTabs::edit_group (RouteGroup* g)
421 RouteGroupDialog d (g, Gtk::Stock::APPLY);
422 d.do_run ();
425 void
426 GroupTabs::subgroup (RouteGroup* g)
428 g->make_subgroup ();
431 struct CollectSorter {
432 CollectSorter (std::string const & key) : _key (key) {}
434 bool operator () (boost::shared_ptr<Route> a, boost::shared_ptr<Route> b) {
435 return a->order_key (_key) < b->order_key (_key);
438 std::string _key;
441 /** Collect all members of a RouteGroup so that they are together in the Editor or Mixer.
442 * @param g Group to collect.
444 void
445 GroupTabs::collect (RouteGroup* g)
447 boost::shared_ptr<RouteList> group_routes = g->route_list ();
448 group_routes->sort (CollectSorter (order_key ()));
449 int const N = group_routes->size ();
451 RouteList::iterator i = group_routes->begin ();
452 boost::shared_ptr<RouteList> routes = _session->get_routes ();
453 RouteList::const_iterator j = routes->begin ();
455 int diff = 0;
456 int coll = -1;
457 while (i != group_routes->end() && j != routes->end()) {
459 int const k = (*j)->order_key (order_key ());
461 if (*i == *j) {
463 if (coll == -1) {
464 coll = k;
465 diff = N - 1;
466 } else {
467 --diff;
470 (*j)->set_order_key (order_key (), coll);
472 ++coll;
473 ++i;
475 } else {
477 (*j)->set_order_key (order_key (), k + diff);
481 ++j;
484 sync_order_keys ();
487 void
488 GroupTabs::activate_all ()
490 _session->foreach_route_group (
491 sigc::bind (sigc::mem_fun (*this, &GroupTabs::set_activation), true)
495 void
496 GroupTabs::disable_all ()
498 _session->foreach_route_group (
499 sigc::bind (sigc::mem_fun (*this, &GroupTabs::set_activation), false)
503 void
504 GroupTabs::set_activation (RouteGroup* g, bool a)
506 g->set_active (a, this);
509 void
510 GroupTabs::remove_group (RouteGroup* g)
512 _session->remove_route_group (*g);