2009-07-03 14:37:15 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000 Paul Davis
|
2009-07-03 14:37:15 -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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2010-11-13 00:14:48 -05:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "gtk2ardour-config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
|
|
|
#include "ardour/route_group.h"
|
|
|
|
|
|
|
|
#include "editor.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "marker.h"
|
|
|
|
#include "time_axis_view.h"
|
|
|
|
#include "prompter.h"
|
|
|
|
#include "gui_thread.h"
|
|
|
|
#include "editor_group_tabs.h"
|
|
|
|
#include "route_group_dialog.h"
|
|
|
|
#include "route_time_axis.h"
|
|
|
|
#include "editor_routes.h"
|
|
|
|
#include "editor_route_groups.h"
|
2011-09-19 17:14:59 -04:00
|
|
|
#include "ardour_ui.h"
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
#include "ardour/route.h"
|
2009-10-30 11:30:22 -04:00
|
|
|
#include "ardour/session.h"
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Gtk;
|
2009-12-04 17:51:32 -05:00
|
|
|
using Gtkmm2ext::Keyboard;
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
EditorRouteGroups::EditorRouteGroups (Editor* e)
|
2010-08-26 19:25:44 -04:00
|
|
|
: EditorComponent (e)
|
2010-11-25 15:37:39 -05:00
|
|
|
, _all_group_active_button (_("No Selection = All Tracks"))
|
|
|
|
, _in_row_change (false)
|
2011-04-19 11:46:47 -04:00
|
|
|
, _in_rebuild (false)
|
2009-07-03 14:37:15 -04:00
|
|
|
{
|
|
|
|
_model = ListStore::create (_columns);
|
|
|
|
_display.set_model (_model);
|
|
|
|
|
2011-07-12 19:41:19 -04:00
|
|
|
int const columns = 10;
|
2009-07-03 14:37:15 -04:00
|
|
|
|
2011-07-12 19:41:19 -04:00
|
|
|
_display.append_column (_("Name"), _columns.text);
|
2009-07-03 14:37:15 -04:00
|
|
|
_display.append_column (_("G"), _columns.gain);
|
2011-07-12 19:41:19 -04:00
|
|
|
_display.append_column (_("Rel"), _columns.gain_relative);
|
2009-07-03 14:37:15 -04:00
|
|
|
_display.append_column (_("M"), _columns.mute);
|
|
|
|
_display.append_column (_("S"), _columns.solo);
|
2011-07-12 19:41:19 -04:00
|
|
|
_display.append_column (_("Rec"), _columns.record);
|
2009-07-03 14:37:15 -04:00
|
|
|
_display.append_column (_("Sel"), _columns.select);
|
|
|
|
_display.append_column (_("E"), _columns.edits);
|
2011-07-12 19:41:19 -04:00
|
|
|
_display.append_column (_("A"), _columns.active_state);
|
2009-07-03 14:37:15 -04:00
|
|
|
_display.append_column (_("Show"), _columns.is_visible);
|
|
|
|
|
2011-07-12 19:41:19 -04:00
|
|
|
for (int i = 0; i < columns; ++i) {
|
|
|
|
_display.get_column (i)->set_data (X_("colnum"), GUINT_TO_POINTER(i));
|
|
|
|
}
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
_display.get_column (0)->set_expand (true);
|
2011-07-12 19:41:19 -04:00
|
|
|
|
|
|
|
for (int i = 1; i < columns; ++i) {
|
|
|
|
_display.get_column (i)->set_expand (false);
|
|
|
|
}
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
_display.set_headers_visible (true);
|
|
|
|
|
|
|
|
/* name is directly editable */
|
|
|
|
|
|
|
|
CellRendererText* name_cell = dynamic_cast<CellRendererText*>(_display.get_column_cell_renderer (0));
|
|
|
|
name_cell->property_editable() = true;
|
2009-12-11 18:29:48 -05:00
|
|
|
name_cell->signal_edited().connect (sigc::mem_fun (*this, &EditorRouteGroups::name_edit));
|
2011-07-12 19:41:19 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
/* use checkbox for the active + visible columns */
|
2011-07-12 19:41:19 -04:00
|
|
|
|
|
|
|
for (int i = 1; i < columns; ++i) {
|
|
|
|
CellRendererToggle* active_cell = dynamic_cast <CellRendererToggle*> (_display.get_column_cell_renderer (i));
|
|
|
|
active_cell->property_activatable() = true;
|
|
|
|
active_cell->property_radio() = false;
|
|
|
|
}
|
2009-07-03 14:37:15 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
_model->signal_row_changed().connect (sigc::mem_fun (*this, &EditorRouteGroups::row_change));
|
2011-04-19 11:46:47 -04:00
|
|
|
/* What signal would you guess was emitted when the rows of your treeview are reordered
|
|
|
|
by a drag and drop? signal_rows_reordered? That would be far too easy.
|
|
|
|
No, signal_row_deleted().
|
|
|
|
*/
|
|
|
|
_model->signal_row_deleted().connect (sigc::mem_fun (*this, &EditorRouteGroups::row_deleted));
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
_display.set_name ("EditGroupList");
|
|
|
|
_display.get_selection()->set_mode (SELECTION_SINGLE);
|
|
|
|
_display.set_headers_visible (true);
|
2011-03-31 19:56:38 -04:00
|
|
|
_display.set_reorderable (true);
|
2009-07-03 14:37:15 -04:00
|
|
|
_display.set_rules_hint (true);
|
|
|
|
_display.set_size_request (75, -1);
|
|
|
|
|
|
|
|
_scroller.add (_display);
|
|
|
|
_scroller.set_policy (POLICY_AUTOMATIC, POLICY_AUTOMATIC);
|
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
_display.signal_button_press_event().connect (sigc::mem_fun(*this, &EditorRouteGroups::button_press_event), false);
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
HBox* button_box = manage (new HBox());
|
|
|
|
button_box->set_homogeneous (true);
|
|
|
|
|
|
|
|
Button* add_button = manage (new Button ());
|
|
|
|
Button* remove_button = manage (new Button ());
|
|
|
|
|
|
|
|
Widget* w;
|
|
|
|
|
|
|
|
w = manage (new Image (Stock::ADD, ICON_SIZE_BUTTON));
|
|
|
|
w->show();
|
|
|
|
add_button->add (*w);
|
|
|
|
|
|
|
|
w = manage (new Image (Stock::REMOVE, ICON_SIZE_BUTTON));
|
|
|
|
w->show();
|
|
|
|
remove_button->add (*w);
|
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
add_button->signal_clicked().connect (sigc::hide_return (sigc::mem_fun (*this, &EditorRouteGroups::run_new_group_dialog)));
|
2009-12-11 18:29:48 -05:00
|
|
|
remove_button->signal_clicked().connect (sigc::mem_fun (*this, &EditorRouteGroups::remove_selected));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
button_box->pack_start (*add_button);
|
|
|
|
button_box->pack_start (*remove_button);
|
|
|
|
|
2010-11-25 15:37:39 -05:00
|
|
|
_all_group_active_button.show ();
|
2010-08-26 19:25:44 -04:00
|
|
|
|
|
|
|
_display_packer.pack_start (_scroller, true, true);
|
2010-11-25 15:37:39 -05:00
|
|
|
_display_packer.pack_start (_all_group_active_button, false, false);
|
2010-08-26 19:25:44 -04:00
|
|
|
_display_packer.pack_start (*button_box, false, false);
|
2010-08-30 13:34:12 -04:00
|
|
|
|
2010-11-25 15:37:39 -05:00
|
|
|
_all_group_active_button.signal_toggled().connect (sigc::mem_fun (*this, &EditorRouteGroups::all_group_toggled));
|
2011-09-19 17:14:59 -04:00
|
|
|
_all_group_active_button.set_name (X_("EditorRouteGroupsAllGroupButton"));
|
|
|
|
ARDOUR_UI::instance()->set_tip (_all_group_active_button, _("Activate this button to operate on all tracks when none are selected."));
|
2009-07-03 14:37:15 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
void
|
|
|
|
EditorRouteGroups::remove_selected ()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<TreeSelection> selection = _display.get_selection();
|
|
|
|
TreeView::Selection::ListHandle_Path rows = selection->get_selected_rows ();
|
|
|
|
|
|
|
|
if (rows.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeView::Selection::ListHandle_Path::iterator i = rows.begin();
|
|
|
|
TreeIter iter;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
/* selection mode is single, so rows.begin() is it */
|
|
|
|
|
|
|
|
if ((iter = _model->get_iter (*i))) {
|
|
|
|
|
|
|
|
RouteGroup* rg = (*iter)[_columns.routegroup];
|
|
|
|
|
|
|
|
if (rg) {
|
|
|
|
_session->remove_route_group (*rg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
EditorRouteGroups::button_clicked ()
|
|
|
|
{
|
2010-07-19 17:47:07 -04:00
|
|
|
run_new_group_dialog ();
|
2009-07-03 14:37:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
EditorRouteGroups::button_press_event (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
TreeModel::Path path;
|
|
|
|
TreeIter iter;
|
2010-11-25 15:37:39 -05:00
|
|
|
RouteGroup* group = 0;
|
2009-07-03 14:37:15 -04:00
|
|
|
TreeViewColumn* column;
|
|
|
|
int cellx;
|
|
|
|
int celly;
|
|
|
|
|
|
|
|
bool const p = _display.get_path_at_pos ((int)ev->x, (int)ev->y, path, column, cellx, celly);
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
iter = _model->get_iter (path);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
if (iter) {
|
|
|
|
group = (*iter)[_columns.routegroup];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Keyboard::is_context_menu_event (ev)) {
|
2010-07-19 17:47:07 -04:00
|
|
|
_editor->_group_tabs->get_menu(group)->popup (1, ev->time);
|
2009-07-03 14:37:15 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (GPOINTER_TO_UINT (column->get_data (X_("colnum")))) {
|
|
|
|
case 0:
|
|
|
|
if (Keyboard::is_edit_event (ev)) {
|
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
if ((group = (*iter)[_columns.routegroup]) != 0) {
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
}
|
2009-07-03 14:37:15 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
bool gain = (*iter)[_columns.gain];
|
|
|
|
(*iter)[_columns.gain] = !gain;
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
if ((iter = _model->get_iter (path))) {
|
2011-07-12 19:41:19 -04:00
|
|
|
bool gain_relative = (*iter)[_columns.gain_relative];
|
|
|
|
(*iter)[_columns.gain_relative] = !gain_relative;
|
2009-07-03 14:37:15 -04:00
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
bool mute = (*iter)[_columns.mute];
|
|
|
|
(*iter)[_columns.mute] = !mute;
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
bool solo = (*iter)[_columns.solo];
|
|
|
|
(*iter)[_columns.solo] = !solo;
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5:
|
2011-07-12 19:41:19 -04:00
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
bool record = (*iter)[_columns.record];
|
|
|
|
(*iter)[_columns.record] = !record;
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6:
|
2009-07-03 14:37:15 -04:00
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
bool select = (*iter)[_columns.select];
|
|
|
|
(*iter)[_columns.select] = !select;
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-07-12 19:41:19 -04:00
|
|
|
case 7:
|
2009-07-03 14:37:15 -04:00
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
bool edits = (*iter)[_columns.edits];
|
|
|
|
(*iter)[_columns.edits] = !edits;
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-07-12 19:41:19 -04:00
|
|
|
case 8:
|
2009-07-03 14:37:15 -04:00
|
|
|
if ((iter = _model->get_iter (path))) {
|
2011-07-12 19:41:19 -04:00
|
|
|
bool active_state = (*iter)[_columns.active_state];
|
|
|
|
(*iter)[_columns.active_state] = !active_state;
|
2009-07-03 14:37:15 -04:00
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-07-12 19:41:19 -04:00
|
|
|
case 9:
|
|
|
|
if ((iter = _model->get_iter (path))) {
|
|
|
|
bool is_visible = (*iter)[_columns.is_visible];
|
|
|
|
(*iter)[_columns.is_visible] = !is_visible;
|
|
|
|
#ifdef GTKOSX
|
|
|
|
_display.queue_draw();
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
void
|
2009-07-21 11:55:17 -04:00
|
|
|
EditorRouteGroups::row_change (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator& iter)
|
2009-07-03 14:37:15 -04:00
|
|
|
{
|
|
|
|
RouteGroup* group;
|
|
|
|
|
|
|
|
if (_in_row_change) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((group = (*iter)[_columns.routegroup]) == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-02-18 08:59:49 -05:00
|
|
|
PropertyList plist;
|
2011-07-12 19:41:19 -04:00
|
|
|
plist.add (Properties::name, string ((*iter)[_columns.text]));
|
|
|
|
|
2010-02-18 08:59:49 -05:00
|
|
|
bool val = (*iter)[_columns.gain];
|
|
|
|
plist.add (Properties::gain, val);
|
2011-07-12 19:41:19 -04:00
|
|
|
val = (*iter)[_columns.gain_relative];
|
|
|
|
plist.add (Properties::relative, val);
|
2010-02-18 08:59:49 -05:00
|
|
|
val = (*iter)[_columns.mute];
|
|
|
|
plist.add (Properties::mute, val);
|
|
|
|
val = (*iter)[_columns.solo];
|
|
|
|
plist.add (Properties::solo, val);
|
2011-07-12 19:41:19 -04:00
|
|
|
val = (*iter)[_columns.record];
|
|
|
|
plist.add (Properties::recenable, val);
|
2010-02-18 08:59:49 -05:00
|
|
|
val = (*iter)[_columns.select];
|
|
|
|
plist.add (Properties::select, val);
|
|
|
|
val = (*iter)[_columns.edits];
|
|
|
|
plist.add (Properties::edit, val);
|
2011-07-12 19:41:19 -04:00
|
|
|
val = (*iter)[_columns.active_state];
|
|
|
|
plist.add (Properties::route_active, val);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-05-22 21:51:17 -04:00
|
|
|
group->set_hidden (!(*iter)[_columns.is_visible], this);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-25 13:31:33 -04:00
|
|
|
group->apply_changes (plist);
|
2009-07-03 14:37:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
EditorRouteGroups::add (RouteGroup* group)
|
|
|
|
{
|
2010-11-25 15:37:39 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &EditorRouteGroups::add, group)
|
2009-07-03 14:37:15 -04:00
|
|
|
bool focus = false;
|
|
|
|
|
|
|
|
TreeModel::Row row = *(_model->append());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-02-18 08:59:49 -05:00
|
|
|
row[_columns.gain] = group->is_gain ();
|
2011-07-12 19:41:19 -04:00
|
|
|
row[_columns.gain_relative] = group->is_relative ();
|
2010-02-18 08:59:49 -05:00
|
|
|
row[_columns.mute] = group->is_mute ();
|
|
|
|
row[_columns.solo] = group->is_solo ();
|
2011-07-12 19:41:19 -04:00
|
|
|
row[_columns.record] = group->is_recenable();
|
2010-02-18 08:59:49 -05:00
|
|
|
row[_columns.select] = group->is_select ();
|
|
|
|
row[_columns.edits] = group->is_edit ();
|
2011-07-12 19:41:19 -04:00
|
|
|
row[_columns.active_state] = group->is_route_active ();
|
|
|
|
row[_columns.is_visible] = !group->is_hidden();
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
_in_row_change = true;
|
|
|
|
|
|
|
|
row[_columns.routegroup] = group;
|
|
|
|
|
|
|
|
if (!group->name().empty()) {
|
|
|
|
row[_columns.text] = group->name();
|
|
|
|
} else {
|
|
|
|
row[_columns.text] = _("unnamed");
|
|
|
|
focus = true;
|
|
|
|
}
|
|
|
|
|
2011-04-05 20:36:36 -04:00
|
|
|
group->PropertyChanged.connect (_property_changed_connections, MISSING_INVALIDATOR, ui_bind (&EditorRouteGroups::property_changed, this, group, _1), gui_context());
|
2009-07-03 14:37:15 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
if (focus) {
|
2009-07-03 14:37:15 -04:00
|
|
|
TreeViewColumn* col = _display.get_column (0);
|
|
|
|
CellRendererText* name_cell = dynamic_cast<CellRendererText*>(_display.get_column_cell_renderer (0));
|
|
|
|
_display.set_cursor (_model->get_path (row), *col, *name_cell, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
_in_row_change = false;
|
|
|
|
|
|
|
|
_editor->_group_tabs->set_dirty ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
EditorRouteGroups::groups_changed ()
|
|
|
|
{
|
2011-04-19 11:46:47 -04:00
|
|
|
ENSURE_GUI_THREAD (*this, &EditorRouteGroups::groups_changed);
|
|
|
|
|
|
|
|
_in_rebuild = true;
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
/* just rebuild the while thing */
|
|
|
|
|
|
|
|
_model->clear ();
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session) {
|
|
|
|
_session->foreach_route_group (sigc::mem_fun (*this, &EditorRouteGroups::add));
|
|
|
|
}
|
2011-04-19 11:46:47 -04:00
|
|
|
|
|
|
|
_in_rebuild = false;
|
2009-07-03 14:37:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-04-01 20:21:08 -04:00
|
|
|
EditorRouteGroups::property_changed (RouteGroup* group, const PropertyChange& change)
|
2009-07-03 14:37:15 -04:00
|
|
|
{
|
|
|
|
_in_row_change = true;
|
|
|
|
|
2010-11-25 15:37:39 -05:00
|
|
|
Gtk::TreeModel::Children children = _model->children();
|
2009-07-03 14:37:15 -04:00
|
|
|
|
|
|
|
for(Gtk::TreeModel::Children::iterator iter = children.begin(); iter != children.end(); ++iter) {
|
|
|
|
if (group == (*iter)[_columns.routegroup]) {
|
|
|
|
(*iter)[_columns.text] = group->name();
|
2010-02-18 08:59:49 -05:00
|
|
|
(*iter)[_columns.gain] = group->is_gain ();
|
2011-07-12 19:41:19 -04:00
|
|
|
(*iter)[_columns.gain_relative] = group->is_relative ();
|
2010-02-18 08:59:49 -05:00
|
|
|
(*iter)[_columns.mute] = group->is_mute ();
|
|
|
|
(*iter)[_columns.solo] = group->is_solo ();
|
2011-07-12 19:41:19 -04:00
|
|
|
(*iter)[_columns.record] = group->is_recenable ();
|
2010-02-18 08:59:49 -05:00
|
|
|
(*iter)[_columns.select] = group->is_select ();
|
|
|
|
(*iter)[_columns.edits] = group->is_edit ();
|
2011-07-12 19:41:19 -04:00
|
|
|
(*iter)[_columns.active_state] = group->is_route_active ();
|
|
|
|
(*iter)[_columns.is_visible] = !group->is_hidden();
|
2009-07-03 14:37:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_in_row_change = false;
|
|
|
|
|
2010-04-01 20:21:08 -04:00
|
|
|
if (change.contains (Properties::name) || change.contains (Properties::active)) {
|
|
|
|
_editor->_group_tabs->set_dirty ();
|
|
|
|
}
|
2011-04-05 20:36:36 -04:00
|
|
|
|
|
|
|
for (TrackViewList::const_iterator i = _editor->get_track_views().begin(); i != _editor->get_track_views().end(); ++i) {
|
|
|
|
if ((*i)->route_group() == group) {
|
|
|
|
if (group->is_hidden ()) {
|
|
|
|
_editor->hide_track_in_display (*i);
|
|
|
|
} else {
|
|
|
|
_editor->_routes->show_track_in_display (**i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-03 14:37:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-09-14 12:51:02 -04:00
|
|
|
EditorRouteGroups::name_edit (const std::string& path, const std::string& new_text)
|
2009-07-03 14:37:15 -04:00
|
|
|
{
|
|
|
|
RouteGroup* group;
|
|
|
|
TreeIter iter;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
if ((iter = _model->get_iter (path))) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
if ((group = (*iter)[_columns.routegroup]) == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
if (new_text != group->name()) {
|
|
|
|
group->set_name (new_text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
EditorRouteGroups::clear ()
|
|
|
|
{
|
|
|
|
_display.set_model (Glib::RefPtr<Gtk::TreeStore> (0));
|
|
|
|
_model->clear ();
|
|
|
|
_display.set_model (_model);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-17 13:24:23 -05:00
|
|
|
EditorRouteGroups::set_session (Session* s)
|
2009-07-03 14:37:15 -04:00
|
|
|
{
|
2010-07-19 17:47:07 -04:00
|
|
|
SessionHandlePtr::set_session (s);
|
2009-07-03 14:37:15 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session) {
|
2010-08-30 14:08:41 -04:00
|
|
|
|
2010-11-25 15:37:39 -05:00
|
|
|
RouteGroup& arg (_session->all_route_group());
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-04-05 20:36:36 -04:00
|
|
|
arg.PropertyChanged.connect (all_route_groups_changed_connection, MISSING_INVALIDATOR, ui_bind (&EditorRouteGroups::all_group_changed, this, _1), gui_context());
|
2010-08-30 14:08:41 -04:00
|
|
|
|
2010-03-30 11:18:43 -04:00
|
|
|
_session->route_group_added.connect (_session_connections, MISSING_INVALIDATOR, ui_bind (&EditorRouteGroups::add, this, _1), gui_context());
|
2011-04-19 11:46:47 -04:00
|
|
|
_session->route_group_removed.connect (
|
|
|
|
_session_connections, MISSING_INVALIDATOR, boost::bind (&EditorRouteGroups::groups_changed, this), gui_context()
|
|
|
|
);
|
|
|
|
_session->route_groups_reordered.connect (
|
|
|
|
_session_connections, MISSING_INVALIDATOR, boost::bind (&EditorRouteGroups::groups_changed, this), gui_context()
|
|
|
|
);
|
2009-12-17 13:24:23 -05:00
|
|
|
}
|
2009-07-03 14:37:15 -04:00
|
|
|
|
2010-11-25 15:37:39 -05:00
|
|
|
PBD::PropertyChange pc;
|
|
|
|
pc.add (Properties::select);
|
|
|
|
pc.add (Properties::active);
|
|
|
|
all_group_changed (pc);
|
2010-08-30 14:08:41 -04:00
|
|
|
|
2009-07-03 14:37:15 -04:00
|
|
|
groups_changed ();
|
|
|
|
}
|
|
|
|
|
2009-07-04 09:44:01 -04:00
|
|
|
void
|
2010-07-19 17:47:07 -04:00
|
|
|
EditorRouteGroups::run_new_group_dialog ()
|
2009-07-04 09:44:01 -04:00
|
|
|
{
|
2010-07-19 17:47:07 -04:00
|
|
|
RouteList rl;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
return _editor->_group_tabs->run_new_group_dialog (rl);
|
2009-07-04 09:44:01 -04:00
|
|
|
}
|
2010-08-30 13:34:12 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
EditorRouteGroups::all_group_toggled ()
|
|
|
|
{
|
2010-11-25 15:37:39 -05:00
|
|
|
if (_session) {
|
|
|
|
_session->all_route_group().set_select (_all_group_active_button.get_active());
|
|
|
|
}
|
2010-08-30 13:34:12 -04:00
|
|
|
}
|
|
|
|
|
2010-08-30 14:08:41 -04:00
|
|
|
void
|
|
|
|
EditorRouteGroups::all_group_changed (const PropertyChange&)
|
|
|
|
{
|
2010-11-25 15:37:39 -05:00
|
|
|
if (_session) {
|
|
|
|
RouteGroup& arg (_session->all_route_group());
|
|
|
|
_all_group_active_button.set_active (arg.is_active() && arg.is_select());
|
|
|
|
} else {
|
|
|
|
_all_group_active_button.set_active (false);
|
|
|
|
}
|
2010-08-30 14:08:41 -04:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-04-19 11:46:47 -04:00
|
|
|
/** Called when a model row is deleted, but also when the model is
|
|
|
|
* reordered by a user drag-and-drop; the latter is what we are
|
|
|
|
* interested in here.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
EditorRouteGroups::row_deleted (Gtk::TreeModel::Path const &)
|
|
|
|
{
|
|
|
|
if (_in_rebuild) {
|
|
|
|
/* We need to ignore this in cases where we're not doing a drag-and-drop
|
|
|
|
re-order.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-04-19 11:46:47 -04:00
|
|
|
/* Re-write the session's route group list so that the new order is preserved */
|
|
|
|
|
|
|
|
list<RouteGroup*> new_list;
|
|
|
|
|
|
|
|
Gtk::TreeModel::Children children = _model->children();
|
|
|
|
for (Gtk::TreeModel::Children::iterator i = children.begin(); i != children.end(); ++i) {
|
|
|
|
new_list.push_back ((*i)[_columns.routegroup]);
|
|
|
|
}
|
|
|
|
|
|
|
|
_session->reorder_route_groups (new_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|