2011-06-03 18:18:47 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011 Paul Davis
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-06-08 09:44:18 -04:00
|
|
|
#include <algorithm>
|
2011-06-03 18:18:47 -04:00
|
|
|
#include "pbd/compose.h"
|
|
|
|
|
|
|
|
#include "gtkmm2ext/cairocell.h"
|
|
|
|
#include "gtkmm2ext/gui_thread.h"
|
|
|
|
#include "gtkmm2ext/utils.h"
|
2011-06-08 15:48:57 -04:00
|
|
|
#include "gtkmm2ext/stateful_button.h"
|
|
|
|
#include "gtkmm2ext/actions.h"
|
2011-06-03 18:18:47 -04:00
|
|
|
|
|
|
|
#include "ardour/location.h"
|
|
|
|
#include "ardour/session.h"
|
|
|
|
|
|
|
|
#include "time_info_box.h"
|
|
|
|
#include "audio_clock.h"
|
|
|
|
#include "editor.h"
|
2012-04-22 10:03:07 -04:00
|
|
|
#include "control_point.h"
|
|
|
|
#include "automation_line.h"
|
2011-06-03 18:18:47 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace Gtk;
|
|
|
|
using namespace ARDOUR;
|
2011-06-08 09:44:18 -04:00
|
|
|
using std::min;
|
|
|
|
using std::max;
|
2011-06-03 18:18:47 -04:00
|
|
|
|
|
|
|
TimeInfoBox::TimeInfoBox ()
|
2011-06-08 19:03:06 -04:00
|
|
|
: left (2, 4)
|
|
|
|
, right (2, 4)
|
2011-06-07 13:40:05 -04:00
|
|
|
, syncing_selection (false)
|
|
|
|
, syncing_punch (false)
|
2011-06-03 18:18:47 -04:00
|
|
|
{
|
2012-11-11 11:04:30 -05:00
|
|
|
set_name (X_("TimeInfoBox"));
|
|
|
|
|
2011-11-17 17:49:13 -05:00
|
|
|
selection_start = new AudioClock ("selection-start", false, "selection", false, false, false, false);
|
|
|
|
selection_end = new AudioClock ("selection-end", false, "selection", false, false, false, false);
|
|
|
|
selection_length = new AudioClock ("selection-length", false, "selection", false, false, true, false);
|
2011-06-03 18:18:47 -04:00
|
|
|
|
2011-11-17 17:49:13 -05:00
|
|
|
punch_start = new AudioClock ("punch-start", false, "punch", false, false, false, false);
|
|
|
|
punch_end = new AudioClock ("punch-end", false, "punch", false, false, false, false);
|
2011-06-03 18:18:47 -04:00
|
|
|
|
2011-11-17 17:49:13 -05:00
|
|
|
selection_start->set_draw_background (false);
|
|
|
|
selection_end->set_draw_background (false);
|
|
|
|
selection_length->set_draw_background (false);
|
|
|
|
punch_start->set_draw_background (false);
|
|
|
|
punch_end->set_draw_background (false);
|
2011-06-03 18:18:47 -04:00
|
|
|
|
2011-06-08 13:27:26 -04:00
|
|
|
selection_title.set_text (_("Selection"));
|
|
|
|
punch_title.set_text (_("Punch"));
|
2011-06-03 18:18:47 -04:00
|
|
|
|
|
|
|
set_homogeneous (false);
|
2013-03-03 06:36:35 -05:00
|
|
|
set_spacing (0);
|
2011-06-07 12:42:48 -04:00
|
|
|
set_border_width (2);
|
|
|
|
|
2011-06-08 19:03:06 -04:00
|
|
|
pack_start (left, true, true);
|
|
|
|
pack_start (right, true, true);
|
|
|
|
|
|
|
|
left.set_homogeneous (false);
|
|
|
|
left.set_spacings (0);
|
|
|
|
left.set_border_width (2);
|
|
|
|
left.set_col_spacings (2);
|
|
|
|
|
|
|
|
right.set_homogeneous (false);
|
|
|
|
right.set_spacings (0);
|
|
|
|
right.set_border_width (2);
|
|
|
|
right.set_col_spacings (2);
|
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
Gtk::Label* l;
|
|
|
|
|
2011-06-08 13:27:26 -04:00
|
|
|
selection_title.set_name ("TimeInfoSelectionTitle");
|
2012-11-14 12:03:49 -05:00
|
|
|
left.attach (selection_title, 1, 2, 0, 1);
|
2011-06-03 18:18:47 -04:00
|
|
|
l = manage (new Label);
|
2011-06-08 13:27:26 -04:00
|
|
|
l->set_text (_("Start"));
|
|
|
|
l->set_alignment (1.0, 0.5);
|
|
|
|
l->set_name (X_("TimeInfoSelectionLabel"));
|
2011-06-08 19:03:06 -04:00
|
|
|
left.attach (*l, 0, 1, 1, 2, FILL);
|
|
|
|
left.attach (*selection_start, 1, 2, 1, 2);
|
2011-06-08 13:27:26 -04:00
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
l = manage (new Label);
|
2011-06-08 13:27:26 -04:00
|
|
|
l->set_text (_("End"));
|
|
|
|
l->set_alignment (1.0, 0.5);
|
|
|
|
l->set_name (X_("TimeInfoSelectionLabel"));
|
2011-06-08 19:03:06 -04:00
|
|
|
left.attach (*l, 0, 1, 2, 3, FILL);
|
|
|
|
left.attach (*selection_end, 1, 2, 2, 3);
|
2011-06-08 13:27:26 -04:00
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
l = manage (new Label);
|
2011-06-08 13:27:26 -04:00
|
|
|
l->set_text (_("Length"));
|
|
|
|
l->set_alignment (1.0, 0.5);
|
|
|
|
l->set_name (X_("TimeInfoSelectionLabel"));
|
2011-06-08 19:03:06 -04:00
|
|
|
left.attach (*l, 0, 1, 3, 4, FILL);
|
|
|
|
left.attach (*selection_length, 1, 2, 3, 4);
|
2011-06-03 18:18:47 -04:00
|
|
|
|
2011-11-10 10:25:01 -05:00
|
|
|
punch_in_button.set_name ("punch button");
|
|
|
|
punch_out_button.set_name ("punch button");
|
|
|
|
punch_in_button.set_text (_("In"));
|
|
|
|
punch_out_button.set_text (_("Out"));
|
2011-06-08 15:48:57 -04:00
|
|
|
|
2011-11-10 10:25:01 -05:00
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("Transport", "TogglePunchIn");
|
|
|
|
punch_in_button.set_related_action (act);
|
|
|
|
act = ActionManager::get_action ("Transport", "TogglePunchOut");
|
|
|
|
punch_out_button.set_related_action (act);
|
2011-06-08 15:48:57 -04:00
|
|
|
|
|
|
|
Gtkmm2ext::UI::instance()->set_tip (punch_in_button, _("Start recording at auto-punch start"));
|
|
|
|
Gtkmm2ext::UI::instance()->set_tip (punch_out_button, _("Stop recording at auto-punch end"));
|
|
|
|
|
2011-06-09 11:44:09 -04:00
|
|
|
punch_title.set_name ("TimeInfoSelectionTitle");
|
2012-11-14 12:03:49 -05:00
|
|
|
right.attach (punch_title, 3, 4, 0, 1);
|
2011-11-10 10:25:01 -05:00
|
|
|
right.attach (punch_in_button, 2, 3, 1, 2, FILL, SHRINK);
|
2011-06-09 11:44:09 -04:00
|
|
|
right.attach (*punch_start, 3, 4, 1, 2);
|
2011-11-10 10:25:01 -05:00
|
|
|
right.attach (punch_out_button, 2, 3, 2, 3, FILL, SHRINK);
|
2011-06-09 11:44:09 -04:00
|
|
|
right.attach (*punch_end, 3, 4, 2, 3);
|
2011-06-08 15:48:57 -04:00
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
show_all ();
|
|
|
|
|
2011-06-07 13:40:05 -04:00
|
|
|
selection_start->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_selection_mode), selection_start));
|
2011-06-08 09:44:18 -04:00
|
|
|
selection_end->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_selection_mode), selection_end));
|
|
|
|
selection_length->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_selection_mode), selection_length));
|
2011-06-07 13:40:05 -04:00
|
|
|
|
|
|
|
punch_start->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_punch_mode), punch_start));
|
|
|
|
punch_end->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_punch_mode), punch_end));
|
|
|
|
|
2011-06-07 14:20:22 -04:00
|
|
|
selection_start->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), selection_start), true);
|
|
|
|
selection_end->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), selection_end), true);
|
|
|
|
|
|
|
|
punch_start->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), punch_start), true);
|
|
|
|
punch_end->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), punch_end), true);
|
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
Editor::instance().get_selection().TimeChanged.connect (sigc::mem_fun (*this, &TimeInfoBox::selection_changed));
|
2011-06-07 19:07:08 -04:00
|
|
|
Editor::instance().get_selection().RegionsChanged.connect (sigc::mem_fun (*this, &TimeInfoBox::selection_changed));
|
|
|
|
|
2012-04-25 08:58:19 -04:00
|
|
|
Editor::instance().MouseModeChanged.connect (editor_connections, invalidator(*this), boost::bind (&TimeInfoBox::track_mouse_mode, this), gui_context());
|
2011-06-03 18:18:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
TimeInfoBox::~TimeInfoBox ()
|
|
|
|
{
|
|
|
|
delete selection_length;
|
|
|
|
delete selection_end;
|
|
|
|
delete selection_start;
|
|
|
|
|
|
|
|
delete punch_start;
|
|
|
|
delete punch_end;
|
|
|
|
}
|
|
|
|
|
2011-06-07 19:07:08 -04:00
|
|
|
void
|
|
|
|
TimeInfoBox::track_mouse_mode ()
|
|
|
|
{
|
|
|
|
selection_changed ();
|
|
|
|
}
|
|
|
|
|
2011-06-07 14:20:22 -04:00
|
|
|
bool
|
|
|
|
TimeInfoBox::clock_button_release_event (GdkEventButton* ev, AudioClock* src)
|
|
|
|
{
|
|
|
|
if (!_session) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev->button == 1) {
|
2011-11-20 11:38:51 -05:00
|
|
|
if (!src->off()) {
|
|
|
|
_session->request_locate (src->current_time ());
|
|
|
|
}
|
2011-06-07 14:20:22 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-07 13:40:05 -04:00
|
|
|
void
|
|
|
|
TimeInfoBox::sync_selection_mode (AudioClock* src)
|
|
|
|
{
|
|
|
|
if (!syncing_selection) {
|
|
|
|
syncing_selection = true;
|
|
|
|
selection_start->set_mode (src->mode());
|
|
|
|
selection_end->set_mode (src->mode());
|
|
|
|
selection_length->set_mode (src->mode());
|
|
|
|
syncing_selection = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimeInfoBox::sync_punch_mode (AudioClock* src)
|
|
|
|
{
|
|
|
|
if (!syncing_punch) {
|
|
|
|
syncing_punch = true;
|
|
|
|
punch_start->set_mode (src->mode());
|
|
|
|
punch_end->set_mode (src->mode());
|
|
|
|
syncing_punch = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
void
|
|
|
|
TimeInfoBox::set_session (Session* s)
|
|
|
|
{
|
|
|
|
SessionHandlePtr::set_session (s);
|
|
|
|
|
|
|
|
selection_start->set_session (s);
|
|
|
|
selection_end->set_session (s);
|
|
|
|
selection_length->set_session (s);
|
|
|
|
|
|
|
|
punch_start->set_session (s);
|
|
|
|
punch_end->set_session (s);
|
|
|
|
|
|
|
|
if (s) {
|
|
|
|
Location* punch = s->locations()->auto_punch_location ();
|
|
|
|
|
|
|
|
if (punch) {
|
|
|
|
watch_punch (punch);
|
|
|
|
}
|
|
|
|
|
2011-06-08 13:27:26 -04:00
|
|
|
punch_changed (punch);
|
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
_session->auto_punch_location_changed.connect (_session_connections, MISSING_INVALIDATOR,
|
|
|
|
boost::bind (&TimeInfoBox::punch_location_changed, this, _1), gui_context());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimeInfoBox::selection_changed ()
|
|
|
|
{
|
2011-06-07 19:07:08 -04:00
|
|
|
framepos_t s, e;
|
2011-06-08 09:22:40 -04:00
|
|
|
Selection& selection (Editor::instance().get_selection());
|
2011-06-07 19:07:08 -04:00
|
|
|
|
|
|
|
switch (Editor::instance().current_mouse_mode()) {
|
2011-06-08 09:44:18 -04:00
|
|
|
|
2011-06-07 19:07:08 -04:00
|
|
|
case Editing::MouseObject:
|
2011-06-08 09:44:18 -04:00
|
|
|
if (Editor::instance().internal_editing()) {
|
|
|
|
/* displaying MIDI note selection is tricky */
|
|
|
|
|
2011-06-08 09:22:40 -04:00
|
|
|
selection_start->set_off (true);
|
|
|
|
selection_end->set_off (true);
|
|
|
|
selection_length->set_off (true);
|
2011-06-08 09:44:18 -04:00
|
|
|
|
2011-06-08 09:22:40 -04:00
|
|
|
} else {
|
2011-06-08 09:44:18 -04:00
|
|
|
if (selection.regions.empty()) {
|
|
|
|
if (selection.points.empty()) {
|
2012-01-27 14:05:03 -05:00
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("MouseMode", "set-mouse-mode-object-range");
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
|
|
|
|
|
|
|
|
if (tact && tact->get_active() && !selection.time.empty()) {
|
|
|
|
/* show selected range */
|
|
|
|
selection_start->set_off (false);
|
|
|
|
selection_end->set_off (false);
|
|
|
|
selection_length->set_off (false);
|
|
|
|
selection_start->set (selection.time.start());
|
|
|
|
selection_end->set (selection.time.end_frame());
|
|
|
|
selection_length->set (selection.time.length());
|
|
|
|
} else {
|
|
|
|
selection_start->set_off (true);
|
|
|
|
selection_end->set_off (true);
|
|
|
|
selection_length->set_off (true);
|
|
|
|
}
|
2011-06-08 09:44:18 -04:00
|
|
|
} else {
|
|
|
|
s = max_framepos;
|
|
|
|
e = 0;
|
|
|
|
for (PointSelection::iterator i = selection.points.begin(); i != selection.points.end(); ++i) {
|
2012-04-22 10:03:07 -04:00
|
|
|
framepos_t const p = (*i)->line().session_position ((*i)->model ());
|
|
|
|
s = min (s, p);
|
|
|
|
e = max (e, p);
|
2011-06-08 09:44:18 -04:00
|
|
|
}
|
|
|
|
selection_start->set_off (false);
|
|
|
|
selection_end->set_off (false);
|
|
|
|
selection_length->set_off (false);
|
|
|
|
selection_start->set (s);
|
|
|
|
selection_end->set (e);
|
|
|
|
selection_length->set (e - s + 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
s = selection.regions.start();
|
|
|
|
e = selection.regions.end_frame();
|
|
|
|
selection_start->set_off (false);
|
|
|
|
selection_end->set_off (false);
|
|
|
|
selection_length->set_off (false);
|
|
|
|
selection_start->set (s);
|
|
|
|
selection_end->set (e);
|
|
|
|
selection_length->set (e - s + 1);
|
|
|
|
}
|
2011-06-08 09:22:40 -04:00
|
|
|
}
|
2011-06-07 19:07:08 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Editing::MouseRange:
|
2011-06-08 09:22:40 -04:00
|
|
|
if (selection.time.empty()) {
|
2012-01-27 14:05:03 -05:00
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("MouseMode", "set-mouse-mode-object-range");
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
|
|
|
|
|
|
|
|
if (tact && tact->get_active() && !selection.regions.empty()) {
|
|
|
|
/* show selected regions */
|
|
|
|
s = selection.regions.start();
|
|
|
|
e = selection.regions.end_frame();
|
|
|
|
selection_start->set_off (false);
|
|
|
|
selection_end->set_off (false);
|
|
|
|
selection_length->set_off (false);
|
|
|
|
selection_start->set (s);
|
|
|
|
selection_end->set (e);
|
|
|
|
selection_length->set (e - s + 1);
|
|
|
|
} else {
|
|
|
|
selection_start->set_off (true);
|
|
|
|
selection_end->set_off (true);
|
|
|
|
selection_length->set_off (true);
|
|
|
|
}
|
2011-06-08 09:22:40 -04:00
|
|
|
} else {
|
|
|
|
selection_start->set_off (false);
|
|
|
|
selection_end->set_off (false);
|
|
|
|
selection_length->set_off (false);
|
|
|
|
selection_start->set (selection.time.start());
|
|
|
|
selection_end->set (selection.time.end_frame());
|
|
|
|
selection_length->set (selection.time.length());
|
|
|
|
}
|
2011-06-07 19:07:08 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
selection_start->set_off (true);
|
|
|
|
selection_end->set_off (true);
|
|
|
|
selection_length->set_off (true);
|
|
|
|
break;
|
|
|
|
}
|
2011-06-03 18:18:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimeInfoBox::punch_location_changed (Location* loc)
|
|
|
|
{
|
|
|
|
if (loc) {
|
|
|
|
watch_punch (loc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimeInfoBox::watch_punch (Location* punch)
|
|
|
|
{
|
|
|
|
punch_connections.drop_connections ();
|
|
|
|
|
|
|
|
punch->start_changed.connect (punch_connections, MISSING_INVALIDATOR, boost::bind (&TimeInfoBox::punch_changed, this, _1), gui_context());
|
|
|
|
punch->end_changed.connect (punch_connections, MISSING_INVALIDATOR, boost::bind (&TimeInfoBox::punch_changed, this, _1), gui_context());
|
|
|
|
|
|
|
|
punch_changed (punch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimeInfoBox::punch_changed (Location* loc)
|
|
|
|
{
|
|
|
|
if (!loc) {
|
2011-06-08 13:27:26 -04:00
|
|
|
punch_start->set_off (true);
|
|
|
|
punch_end->set_off (true);
|
2011-06-03 18:18:47 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-08 13:27:26 -04:00
|
|
|
punch_start->set_off (false);
|
|
|
|
punch_end->set_off (false);
|
|
|
|
|
2011-06-03 18:18:47 -04:00
|
|
|
punch_start->set (loc->start());
|
|
|
|
punch_end->set (loc->end());
|
|
|
|
}
|
|
|
|
|