2009-06-21 15:59:56 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2009 Paul Davis
|
2009-06-21 15:59:56 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtkmm/stock.h>
|
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/route_group.h"
|
2009-12-01 10:32:42 -05:00
|
|
|
#include "ardour/route.h"
|
2009-12-21 13:23:07 -05:00
|
|
|
|
|
|
|
#include "gui_thread.h"
|
2009-06-21 15:59:56 -04:00
|
|
|
#include "route_group_dialog.h"
|
|
|
|
#include "group_tabs.h"
|
2009-06-22 20:27:52 -04:00
|
|
|
#include "keyboard.h"
|
2009-06-21 15:59:56 -04:00
|
|
|
#include "i18n.h"
|
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
using namespace std;
|
2009-06-21 15:59:56 -04:00
|
|
|
using namespace Gtk;
|
|
|
|
using namespace ARDOUR;
|
2009-12-04 17:51:32 -05:00
|
|
|
using Gtkmm2ext::Keyboard;
|
2009-06-21 15:59:56 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
GroupTabs::GroupTabs (Editor* e)
|
|
|
|
: EditorComponent (e),
|
2009-12-01 10:32:42 -05:00
|
|
|
_dragging (0),
|
|
|
|
_dragging_new_tab (0)
|
2009-06-21 15:59:56 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-17 13:24:23 -05:00
|
|
|
GroupTabs::set_session (Session* s)
|
2009-06-21 15:59:56 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
EditorComponent::set_session (s);
|
2009-07-03 14:37:15 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session) {
|
2010-03-30 11:18:43 -04:00
|
|
|
_session->RouteGroupChanged.connect (_session_connections, invalidator (*this), boost::bind (&GroupTabs::set_dirty, this), gui_context());
|
2009-12-17 13:24:23 -05:00
|
|
|
}
|
2009-06-21 15:59:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Handle a size request.
|
|
|
|
* @param req GTK requisition
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
GroupTabs::on_size_request (Gtk::Requisition *req)
|
|
|
|
{
|
|
|
|
/* Use a dummy, small width and the actual height that we want */
|
|
|
|
req->width = 16;
|
|
|
|
req->height = 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
GroupTabs::on_button_press_event (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
2009-06-21 18:17:17 -04:00
|
|
|
|
|
|
|
double const p = primary_coordinate (ev->x, ev->y);
|
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
list<Tab>::iterator prev;
|
|
|
|
list<Tab>::iterator next;
|
2009-06-21 18:17:17 -04:00
|
|
|
Tab* t = click_to_tab (p, &prev, &next);
|
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
_drag_min = prev != _tabs.end() ? prev->to : 0;
|
|
|
|
_drag_max = next != _tabs.end() ? next->from : extent ();
|
|
|
|
|
|
|
|
if (ev->button == 1) {
|
|
|
|
|
|
|
|
if (t == 0) {
|
|
|
|
Tab n;
|
|
|
|
n.from = n.to = p;
|
|
|
|
_dragging_new_tab = true;
|
|
|
|
|
|
|
|
if (next == _tabs.end()) {
|
|
|
|
_tabs.push_back (n);
|
|
|
|
t = &_tabs.back ();
|
|
|
|
} else {
|
|
|
|
list<Tab>::iterator j = _tabs.insert (next, n);
|
|
|
|
t = &(*j);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
_dragging_new_tab = false;
|
|
|
|
}
|
2009-06-21 18:17:17 -04:00
|
|
|
|
|
|
|
_dragging = t;
|
|
|
|
_drag_moved = false;
|
2009-12-01 10:32:42 -05:00
|
|
|
_drag_first = p;
|
2009-06-21 18:17:17 -04:00
|
|
|
|
|
|
|
double const h = (t->from + t->to) / 2;
|
2009-12-01 10:32:42 -05:00
|
|
|
if (p < h) {
|
|
|
|
_drag_moving = t->from;
|
|
|
|
_drag_fixed = t->to;
|
|
|
|
_drag_offset = p - t->from;
|
2009-06-21 18:17:17 -04:00
|
|
|
} else {
|
2009-12-01 10:32:42 -05:00
|
|
|
_drag_moving = t->to;
|
|
|
|
_drag_fixed = t->from;
|
|
|
|
_drag_offset = p - t->to;
|
2009-06-21 18:17:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if (ev->button == 3) {
|
2009-06-21 15:59:56 -04:00
|
|
|
|
2009-06-22 19:17:46 -04:00
|
|
|
RouteGroup* g = t ? t->group : 0;
|
2009-06-23 19:05:14 -04:00
|
|
|
Menu* m = get_menu (g);
|
|
|
|
if (m) {
|
|
|
|
m->popup (ev->button, ev->time);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-21 15:59:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
bool
|
|
|
|
GroupTabs::on_motion_notify_event (GdkEventMotion* ev)
|
|
|
|
{
|
|
|
|
if (_dragging == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
double const p = primary_coordinate (ev->x, ev->y);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
if (p != _drag_first) {
|
2009-06-21 18:17:17 -04:00
|
|
|
_drag_moved = true;
|
|
|
|
}
|
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
_drag_moving = p - _drag_offset;
|
2009-06-22 11:47:48 -04:00
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
_dragging->from = min (_drag_moving, _drag_fixed);
|
|
|
|
_dragging->to = max (_drag_moving, _drag_fixed);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
_dragging->from = max (_dragging->from, _drag_min);
|
|
|
|
_dragging->to = min (_dragging->to, _drag_max);
|
2009-06-21 18:17:17 -04:00
|
|
|
|
|
|
|
set_dirty ();
|
|
|
|
queue_draw ();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
GroupTabs::on_button_release_event (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
if (_dragging == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_drag_moved) {
|
2009-06-22 20:27:52 -04:00
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
if (_dragging->group) {
|
|
|
|
|
|
|
|
if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
|
|
|
|
|
|
|
|
/* edit */
|
|
|
|
RouteGroupDialog d (_dragging->group, Gtk::Stock::APPLY);
|
|
|
|
d.do_run ();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* toggle active state */
|
|
|
|
_dragging->group->set_active (!_dragging->group->is_active (), this);
|
|
|
|
|
|
|
|
}
|
2009-06-22 20:27:52 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
} else {
|
2009-06-22 11:47:48 -04:00
|
|
|
/* finish drag */
|
2009-12-01 10:32:42 -05:00
|
|
|
RouteList routes = routes_for_tab (_dragging);
|
|
|
|
|
|
|
|
if (!routes.empty()) {
|
|
|
|
if (_dragging_new_tab) {
|
|
|
|
RouteGroup* g = new_route_group ();
|
|
|
|
if (g) {
|
|
|
|
for (RouteList::iterator i = routes.begin(); i != routes.end(); ++i) {
|
2009-12-09 22:25:32 -05:00
|
|
|
g->add (*i);
|
2009-12-01 10:32:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
boost::shared_ptr<RouteList> r = _session->get_routes ();
|
|
|
|
for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
|
|
|
|
|
|
|
|
if (find (routes.begin(), routes.end(), *i) == routes.end()) {
|
|
|
|
/* this route is not on the list of those that should be in _dragging's group */
|
|
|
|
if ((*i)->route_group() == _dragging->group) {
|
2009-12-09 22:25:32 -05:00
|
|
|
_dragging->group->remove (*i);
|
2009-12-01 10:32:42 -05:00
|
|
|
}
|
|
|
|
} else {
|
2009-12-09 22:25:32 -05:00
|
|
|
_dragging->group->add (*i);
|
2009-12-01 10:32:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
set_dirty ();
|
|
|
|
queue_draw ();
|
|
|
|
}
|
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
_dragging = 0;
|
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GroupTabs::render (cairo_t* cr)
|
|
|
|
{
|
|
|
|
if (_dragging == 0) {
|
|
|
|
_tabs = compute_tabs ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* background */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
cairo_set_source_rgb (cr, 0, 0, 0);
|
|
|
|
cairo_rectangle (cr, 0, 0, _width, _height);
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
|
|
|
/* tabs */
|
|
|
|
|
|
|
|
for (list<Tab>::const_iterator i = _tabs.begin(); i != _tabs.end(); ++i) {
|
|
|
|
draw_tab (cr, *i);
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2009-06-21 18:17:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-22 11:47:48 -04:00
|
|
|
/** Convert a click position to a tab.
|
|
|
|
* @param c Click position.
|
|
|
|
* @param prev Filled in with the previous tab to the click, or 0.
|
|
|
|
* @param next Filled in with the next tab after the click, or 0.
|
|
|
|
* @return Tab under the click, or 0.
|
|
|
|
*/
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
GroupTabs::Tab *
|
2009-12-01 10:32:42 -05:00
|
|
|
GroupTabs::click_to_tab (double c, list<Tab>::iterator* prev, list<Tab>::iterator* next)
|
2009-06-21 18:17:17 -04:00
|
|
|
{
|
2009-12-01 10:32:42 -05:00
|
|
|
*prev = *next = _tabs.end ();
|
|
|
|
Tab* under = 0;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
list<Tab>::iterator i = _tabs.begin ();
|
2009-12-01 10:32:42 -05:00
|
|
|
while (i != _tabs.end()) {
|
|
|
|
|
|
|
|
if (i->from > c) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i->to < c) {
|
|
|
|
*prev = i;
|
|
|
|
++i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i->from <= c && c < i->to) {
|
|
|
|
under = &(*i);
|
|
|
|
}
|
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
if (i != _tabs.end()) {
|
|
|
|
*next = i;
|
2009-06-21 18:17:17 -04:00
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
if (under) {
|
|
|
|
*next++;
|
|
|
|
}
|
2009-06-21 18:17:17 -04:00
|
|
|
}
|
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
return under;
|
2009-06-21 18:17:17 -04:00
|
|
|
}
|
2009-06-21 21:01:43 -04:00
|
|
|
|