2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2001 Paul Davis
|
2005-09-25 14:42:24 -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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2005-11-24 09:59:36 -05:00
|
|
|
#include <sigc++/bind.h>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/tempo.h"
|
2013-04-15 16:10:13 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/rectangle.h"
|
|
|
|
#include "canvas/group.h"
|
|
|
|
#include "canvas/line.h"
|
|
|
|
#include "canvas/polygon.h"
|
2013-04-06 16:39:11 -04:00
|
|
|
#include "canvas/text.h"
|
2013-04-15 16:10:13 -04:00
|
|
|
#include "canvas/canvas.h"
|
2013-04-17 15:22:09 -04:00
|
|
|
#include "canvas/debug.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-08-08 18:36:32 -04:00
|
|
|
#include "ardour_ui.h"
|
|
|
|
/*
|
|
|
|
* ardour_ui.h include was moved to the top of the list
|
|
|
|
* due to a conflicting definition of 'Rect' between
|
|
|
|
* Apple's MacTypes.h and GTK.
|
|
|
|
*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "marker.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "utils.h"
|
2010-11-13 17:39:42 -05:00
|
|
|
#include "rgb_macros.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-05-21 13:30:45 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "i18n.h"
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
using namespace std;
|
2007-06-15 18:08:27 -04:00
|
|
|
using namespace ARDOUR;
|
2010-09-26 09:33:39 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2007-06-15 18:08:27 -04:00
|
|
|
|
2009-12-22 15:21:43 -05:00
|
|
|
PBD::Signal1<void,Marker*> Marker::CatchDeletion;
|
|
|
|
|
2010-12-29 08:47:36 -05:00
|
|
|
Marker::Marker (PublicEditor& ed, ArdourCanvas::Group& parent, guint32 rgba, const string& annotation,
|
2010-12-03 17:26:29 -05:00
|
|
|
Type type, framepos_t frame, bool handle_events)
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-11 08:36:38 -05:00
|
|
|
: editor (ed)
|
|
|
|
, _parent (&parent)
|
2013-04-15 16:10:13 -04:00
|
|
|
, _time_bars_line (0)
|
|
|
|
, _track_canvas_line (0)
|
2010-11-11 08:36:38 -05:00
|
|
|
, _type (type)
|
|
|
|
, _selected (false)
|
|
|
|
, _shown (false)
|
2010-11-11 10:21:37 -05:00
|
|
|
, _line_shown (false)
|
2010-11-11 08:36:38 -05:00
|
|
|
, _color (rgba)
|
2010-11-12 17:51:54 -05:00
|
|
|
, _left_label_limit (DBL_MAX)
|
|
|
|
, _right_label_limit (DBL_MAX)
|
2010-11-13 17:39:42 -05:00
|
|
|
, _label_offset (0)
|
2010-11-12 17:51:54 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
/* Shapes we use:
|
|
|
|
|
|
|
|
Mark:
|
|
|
|
|
|
|
|
(0,0) -> (6,0)
|
|
|
|
^ |
|
|
|
|
| V
|
|
|
|
(0,5) (6,5)
|
2009-10-14 12:10:01 -04:00
|
|
|
\ /
|
2010-11-13 17:39:42 -05:00
|
|
|
(3,13)
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
|
|
|
|
TempoMark:
|
|
|
|
MeterMark:
|
|
|
|
|
|
|
|
(3,0)
|
|
|
|
/ \
|
|
|
|
(0,5) -> (6,5)
|
|
|
|
^ |
|
|
|
|
| V
|
|
|
|
(0,10)<-(6,10)
|
|
|
|
|
|
|
|
|
|
|
|
Start:
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
0,0\
|
|
|
|
| \
|
2006-01-10 07:33:26 -05:00
|
|
|
| \ 6,6
|
|
|
|
| /
|
|
|
|
| /
|
2009-10-14 12:10:01 -04:00
|
|
|
0,12
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
End:
|
|
|
|
|
2006-01-10 07:33:26 -05:00
|
|
|
/12,0
|
2009-10-14 12:10:01 -04:00
|
|
|
/ |
|
2006-01-10 07:33:26 -05:00
|
|
|
/ |
|
|
|
|
6,6 |
|
|
|
|
\ |
|
|
|
|
\ |
|
|
|
|
\ |
|
|
|
|
12,12
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
PunchIn:
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-01-10 07:33:26 -05:00
|
|
|
0,0 ------> 13,0
|
2005-09-25 14:42:24 -04:00
|
|
|
| /
|
|
|
|
| /
|
2006-01-10 07:33:26 -05:00
|
|
|
| /
|
2009-10-14 12:10:01 -04:00
|
|
|
| /
|
|
|
|
| /
|
|
|
|
| /
|
2006-01-10 07:33:26 -05:00
|
|
|
0,13
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
PunchOut
|
|
|
|
|
2006-01-10 07:33:26 -05:00
|
|
|
0,0 -->-13,0
|
2009-10-14 12:10:01 -04:00
|
|
|
\ |
|
2005-09-25 14:42:24 -04:00
|
|
|
\ |
|
2006-01-10 07:33:26 -05:00
|
|
|
\ |
|
|
|
|
\ |
|
|
|
|
\ |
|
|
|
|
\ |
|
|
|
|
13,13
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case Mark:
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (6.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (6.0, 5.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (3.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 5.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 3;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 8.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Tempo:
|
|
|
|
case Meter:
|
|
|
|
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (3.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (6.0, 5.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (6.0, 10.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 10.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 5.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (3.0, 0.0));
|
2005-11-12 22:53:51 -05:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 3;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 8.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
|
2010-11-12 13:53:15 -05:00
|
|
|
case SessionStart:
|
|
|
|
case RangeStart:
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (6.5, 6.5));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 0;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 13.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
|
2010-11-12 13:53:15 -05:00
|
|
|
case SessionEnd:
|
|
|
|
case RangeEnd:
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (6.5, 6.5));
|
|
|
|
points->push_back (ArdourCanvas::Duple (13.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (13.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (6.5, 6.5));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 13;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 6.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LoopStart:
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (13.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 0;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 12.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LoopEnd:
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (13.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (13.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (13.0, 0.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 13;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 0.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PunchIn:
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (13.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 13.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 0;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 13.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case PunchOut:
|
2005-11-23 12:21:12 -05:00
|
|
|
points = new ArdourCanvas::Points ();
|
2013-04-04 00:32:52 -04:00
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (12.0, 0.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (12.0, 12.0));
|
|
|
|
points->push_back (ArdourCanvas::Duple (0.0, 0.0));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
_shift = 13;
|
2010-11-13 17:39:42 -05:00
|
|
|
_label_offset = 0.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
frame_position = frame;
|
2013-04-12 11:15:45 -04:00
|
|
|
unit_position = editor.sample_to_pixel (frame);
|
2010-11-11 10:21:37 -05:00
|
|
|
unit_position -= _shift;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
group = new ArdourCanvas::Group (&parent, ArdourCanvas::Duple (unit_position, 0));
|
|
|
|
#ifdef CANVAS_DEBUG
|
|
|
|
group->name = string_compose ("Marker::group for %1", annotation);
|
|
|
|
#endif
|
2005-12-08 13:53:43 -05:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
_name_background = new ArdourCanvas::Rectangle (group);
|
|
|
|
#ifdef CANVAS_DEBUG
|
|
|
|
_name_background->name = string_compose ("Marker::_name_background for %1", annotation);
|
|
|
|
#endif
|
2010-11-13 17:39:42 -05:00
|
|
|
|
|
|
|
/* adjust to properly locate the tip */
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
mark = new ArdourCanvas::Polygon (group);
|
2013-04-17 15:22:09 -04:00
|
|
|
CANVAS_DEBUG_NAME (mark, string_compose ("Marker::mark for %1", annotation));
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
mark->set (*points);
|
2010-11-11 08:36:38 -05:00
|
|
|
set_color_rgba (rgba);
|
2007-07-03 17:02:29 -04:00
|
|
|
|
2009-05-21 13:30:45 -04:00
|
|
|
/* setup name pixbuf sizes */
|
|
|
|
name_font = get_font_for_style (N_("MarkerText"));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-21 13:30:45 -04:00
|
|
|
Gtk::Label foo;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-21 13:30:45 -04:00
|
|
|
Glib::RefPtr<Pango::Layout> layout = foo.create_pango_layout (X_("Hg")); /* ascender + descender */
|
|
|
|
int width;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-06-02 13:50:37 -04:00
|
|
|
layout->set_font_description (name_font);
|
2010-03-16 11:33:04 -04:00
|
|
|
Gtkmm2ext::get_ink_pixel_size (layout, width, name_height);
|
2013-04-06 16:39:11 -04:00
|
|
|
|
|
|
|
_name_item = new ArdourCanvas::Text (group);
|
2013-04-17 15:22:09 -04:00
|
|
|
CANVAS_DEBUG_NAME (_name_item, string_compose ("Marker::_name_item for %1", annotation));
|
2013-04-06 16:39:11 -04:00
|
|
|
_name_item->set_font_description (name_font);
|
2013-04-08 19:47:54 -04:00
|
|
|
_name_item->set_color (RGBA_TO_UINT (0,0,0,255));
|
2013-06-26 17:39:27 -04:00
|
|
|
_name_item->set_position (ArdourCanvas::Duple (_label_offset, (13.0 / 2.0) - (name_height / 2.0) - 2.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-21 13:30:45 -04:00
|
|
|
set_name (annotation.c_str());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
editor.ZoomChanged.connect (sigc::mem_fun (*this, &Marker::reposition));
|
2005-11-24 09:59:36 -05:00
|
|
|
|
2013-04-09 14:22:58 -04:00
|
|
|
/* events will be handled by both the group and the mark itself, so
|
|
|
|
* make sure they can both be used to lookup this object.
|
|
|
|
*/
|
2005-11-24 09:59:36 -05:00
|
|
|
|
2013-04-09 14:22:58 -04:00
|
|
|
group->set_data ("marker", this);
|
|
|
|
mark->set_data ("marker", this);
|
|
|
|
|
2005-11-24 09:59:36 -05:00
|
|
|
if (handle_events) {
|
2013-04-04 00:32:52 -04:00
|
|
|
group->Event.connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_marker_event), group, this));
|
2005-11-24 09:59:36 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Marker::~Marker ()
|
|
|
|
{
|
2009-12-22 15:21:43 -05:00
|
|
|
CatchDeletion (this); /* EMIT SIGNAL */
|
2007-11-12 17:23:01 -05:00
|
|
|
|
2005-11-24 09:59:36 -05:00
|
|
|
/* destroying the parent group destroys its contents, namely any polygons etc. that we added */
|
2010-11-14 06:50:43 -05:00
|
|
|
delete group;
|
2013-04-15 16:10:13 -04:00
|
|
|
delete _time_bars_line;
|
|
|
|
delete _track_canvas_line;
|
2007-11-12 17:23:01 -05:00
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
void Marker::reparent(ArdourCanvas::Group & parent)
|
|
|
|
{
|
2013-04-04 00:32:52 -04:00
|
|
|
group->reparent (&parent);
|
2008-01-10 16:20:59 -05:00
|
|
|
_parent = &parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-11-11 08:36:38 -05:00
|
|
|
Marker::set_selected (bool s)
|
2008-01-10 16:20:59 -05:00
|
|
|
{
|
2010-11-11 08:36:38 -05:00
|
|
|
_selected = s;
|
|
|
|
setup_line ();
|
2008-01-10 16:20:59 -05:00
|
|
|
}
|
|
|
|
|
2007-11-12 17:23:01 -05:00
|
|
|
void
|
2010-11-11 08:36:38 -05:00
|
|
|
Marker::set_show_line (bool s)
|
2007-11-12 17:23:01 -05:00
|
|
|
{
|
2010-11-11 10:21:37 -05:00
|
|
|
_line_shown = s;
|
2010-11-11 08:36:38 -05:00
|
|
|
setup_line ();
|
2007-11-12 17:23:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-11-11 08:36:38 -05:00
|
|
|
Marker::setup_line ()
|
2007-11-12 17:23:01 -05:00
|
|
|
{
|
2010-11-11 10:21:37 -05:00
|
|
|
if (_shown && (_selected || _line_shown)) {
|
2010-11-11 08:36:38 -05:00
|
|
|
|
2013-04-15 16:10:13 -04:00
|
|
|
if (_time_bars_line == 0) {
|
2010-11-11 10:21:37 -05:00
|
|
|
|
2013-04-15 16:10:13 -04:00
|
|
|
_time_bars_line = new ArdourCanvas::Line (editor.get_time_bars_group());
|
2013-04-16 23:46:22 -04:00
|
|
|
_time_bars_line->set_outline_color (ARDOUR_UI::config()->get_canvasvar_EditPoint());
|
2013-04-15 16:10:13 -04:00
|
|
|
_time_bars_line->Event.connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_marker_event), group, this));
|
|
|
|
|
|
|
|
_track_canvas_line = new ArdourCanvas::Line (editor.get_track_canvas_group());
|
2013-04-16 23:46:22 -04:00
|
|
|
_track_canvas_line->set_outline_color (ARDOUR_UI::config()->get_canvasvar_EditPoint());
|
2013-04-15 16:10:13 -04:00
|
|
|
_track_canvas_line->Event.connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_marker_event), group, this));
|
2010-11-11 08:36:38 -05:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2013-04-15 16:10:13 -04:00
|
|
|
ArdourCanvas::Duple g = group->item_to_canvas (ArdourCanvas::Duple (0, 0));
|
|
|
|
ArdourCanvas::Duple d = _time_bars_line->canvas_to_item (ArdourCanvas::Duple (g.x + _shift, 0));
|
|
|
|
|
|
|
|
_time_bars_line->set_x0 (d.x);
|
|
|
|
_time_bars_line->set_x1 (d.x);
|
|
|
|
_time_bars_line->set_y0 (d.y);
|
|
|
|
_time_bars_line->set_y1 (ArdourCanvas::COORD_MAX);
|
2013-04-16 23:46:22 -04:00
|
|
|
_time_bars_line->set_outline_color (_selected ? ARDOUR_UI::config()->get_canvasvar_EditPoint() : _color);
|
2013-04-15 16:10:13 -04:00
|
|
|
_time_bars_line->raise_to_top ();
|
|
|
|
_time_bars_line->show ();
|
|
|
|
|
|
|
|
d = _track_canvas_line->canvas_to_item (ArdourCanvas::Duple (g.x + _shift, 0));
|
|
|
|
_track_canvas_line->set_x0 (d.x);
|
|
|
|
_track_canvas_line->set_x1 (d.x);
|
|
|
|
_track_canvas_line->set_y0 (d.y);
|
|
|
|
_track_canvas_line->set_y1 (ArdourCanvas::COORD_MAX);
|
2013-04-16 23:46:22 -04:00
|
|
|
_track_canvas_line->set_outline_color (_selected ? ARDOUR_UI::config()->get_canvasvar_EditPoint() : _color);
|
2013-04-15 16:10:13 -04:00
|
|
|
_track_canvas_line->raise_to_top ();
|
|
|
|
_track_canvas_line->show ();
|
2010-11-11 08:36:38 -05:00
|
|
|
|
|
|
|
} else {
|
2013-04-15 16:10:13 -04:00
|
|
|
if (_time_bars_line) {
|
|
|
|
_time_bars_line->hide ();
|
|
|
|
_track_canvas_line->hide ();
|
2010-11-11 08:36:38 -05:00
|
|
|
}
|
2007-11-12 17:23:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
void
|
2010-11-11 08:36:38 -05:00
|
|
|
Marker::canvas_height_set (double h)
|
2007-11-12 17:23:01 -05:00
|
|
|
{
|
2010-11-11 08:36:38 -05:00
|
|
|
_canvas_height = h;
|
|
|
|
setup_line ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-11-24 09:59:36 -05:00
|
|
|
ArdourCanvas::Item&
|
|
|
|
Marker::the_item() const
|
|
|
|
{
|
2013-04-10 10:53:21 -04:00
|
|
|
return *group;
|
2005-11-24 09:59:36 -05:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2009-05-21 13:30:45 -04:00
|
|
|
Marker::set_name (const string& new_name)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-11-12 17:51:54 -05:00
|
|
|
_name = new_name;
|
|
|
|
|
2010-11-13 17:39:42 -05:00
|
|
|
setup_name_display ();
|
2010-11-12 17:51:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @return true if our label is on the left of the mark, otherwise false */
|
|
|
|
bool
|
|
|
|
Marker::label_on_left () const
|
|
|
|
{
|
|
|
|
return (_type == SessionEnd || _type == RangeEnd || _type == LoopEnd || _type == PunchOut);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-11-13 17:39:42 -05:00
|
|
|
Marker::setup_name_display ()
|
2010-11-12 17:51:54 -05:00
|
|
|
{
|
|
|
|
double limit = DBL_MAX;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
if (label_on_left ()) {
|
|
|
|
limit = _left_label_limit;
|
|
|
|
} else {
|
|
|
|
limit = _right_label_limit;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
/* Work out how wide the name can be */
|
2011-06-02 13:50:37 -04:00
|
|
|
int name_width = min ((double) pixel_width (_name, name_font) + 2, limit);
|
2013-04-06 16:39:11 -04:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
if (name_width == 0) {
|
|
|
|
name_width = 1;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
if (label_on_left ()) {
|
2013-04-06 16:39:11 -04:00
|
|
|
_name_item->set_x_position (-name_width);
|
2009-11-12 15:39:53 -05:00
|
|
|
}
|
2010-11-12 17:51:54 -05:00
|
|
|
|
2013-04-06 16:39:11 -04:00
|
|
|
_name_item->set (_name);
|
|
|
|
|
|
|
|
// CAIROCANVAS
|
|
|
|
// need to "clip" name to name_width and name_height
|
2010-11-13 17:39:42 -05:00
|
|
|
|
|
|
|
if (label_on_left ()) {
|
2013-04-06 16:39:11 -04:00
|
|
|
_name_background->set_x0 (_name_item->position().x - 2);
|
|
|
|
_name_background->set_x1 (_name_item->position().x + name_width + _shift);
|
2010-11-13 17:39:42 -05:00
|
|
|
} else {
|
2013-04-06 16:39:11 -04:00
|
|
|
_name_background->set_x0 (_name_item->position().x - _label_offset + 2);
|
|
|
|
_name_background->set_x1 (_name_item->position().x + name_width);
|
2010-11-13 17:39:42 -05:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
_name_background->set_y0 (0);
|
|
|
|
_name_background->set_y1 (13);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-09-17 14:20:37 -04:00
|
|
|
Marker::set_position (framepos_t frame)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-04-12 11:15:45 -04:00
|
|
|
unit_position = editor.sample_to_pixel (frame) - _shift;
|
2013-04-04 00:32:52 -04:00
|
|
|
group->set_x_position (unit_position);
|
2013-04-15 16:10:13 -04:00
|
|
|
setup_line ();
|
2005-09-25 14:42:24 -04:00
|
|
|
frame_position = frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Marker::reposition ()
|
|
|
|
{
|
|
|
|
set_position (frame_position);
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
Marker::show ()
|
|
|
|
{
|
2010-11-11 10:21:37 -05:00
|
|
|
_shown = true;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
group->show ();
|
|
|
|
setup_line ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Marker::hide ()
|
|
|
|
{
|
2010-11-11 10:21:37 -05:00
|
|
|
_shown = false;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
group->hide ();
|
|
|
|
setup_line ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-11-11 08:36:38 -05:00
|
|
|
Marker::set_color_rgba (uint32_t c)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-11-11 08:36:38 -05:00
|
|
|
_color = c;
|
2013-04-04 00:32:52 -04:00
|
|
|
mark->set_fill_color (_color);
|
|
|
|
mark->set_outline_color (_color);
|
2010-11-13 17:39:42 -05:00
|
|
|
|
2013-04-15 16:10:13 -04:00
|
|
|
if (_time_bars_line && !_selected) {
|
|
|
|
_time_bars_line->set_outline_color (_color);
|
|
|
|
_track_canvas_line->set_outline_color (_color);
|
2010-11-11 08:36:38 -05:00
|
|
|
}
|
2010-11-13 17:39:42 -05:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
_name_background->set_fill (true);
|
|
|
|
_name_background->set_fill_color (UINT_RGBA_CHANGE_A (_color, 0x70));
|
|
|
|
_name_background->set_outline_color (_color);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
/** Set the number of pixels that are available for a label to the left of the centre of this marker */
|
|
|
|
void
|
|
|
|
Marker::set_left_label_limit (double p)
|
|
|
|
{
|
|
|
|
/* Account for the size of the marker */
|
|
|
|
_left_label_limit = p - 13;
|
|
|
|
if (_left_label_limit < 0) {
|
|
|
|
_left_label_limit = 0;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
if (label_on_left ()) {
|
2010-11-13 17:39:42 -05:00
|
|
|
setup_name_display ();
|
2010-11-12 17:51:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set the number of pixels that are available for a label to the right of the centre of this marker */
|
|
|
|
void
|
|
|
|
Marker::set_right_label_limit (double p)
|
|
|
|
{
|
|
|
|
/* Account for the size of the marker */
|
|
|
|
_right_label_limit = p - 13;
|
|
|
|
if (_right_label_limit < 0) {
|
|
|
|
_right_label_limit = 0;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
if (!label_on_left ()) {
|
2010-11-13 17:39:42 -05:00
|
|
|
setup_name_display ();
|
2010-11-12 17:51:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/***********************************************************************/
|
|
|
|
|
2010-12-29 08:47:36 -05:00
|
|
|
TempoMarker::TempoMarker (PublicEditor& editor, ArdourCanvas::Group& parent, guint32 rgba, const string& text,
|
2005-11-24 09:59:36 -05:00
|
|
|
ARDOUR::TempoSection& temp)
|
2010-12-29 08:47:36 -05:00
|
|
|
: Marker (editor, parent, rgba, text, Tempo, 0, false),
|
2005-09-25 14:42:24 -04:00
|
|
|
_tempo (temp)
|
|
|
|
{
|
|
|
|
set_position (_tempo.frame());
|
2013-04-10 10:53:21 -04:00
|
|
|
group->Event.connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_tempo_marker_event), group, this));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
TempoMarker::~TempoMarker ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************/
|
|
|
|
|
2010-12-29 08:47:36 -05:00
|
|
|
MeterMarker::MeterMarker (PublicEditor& editor, ArdourCanvas::Group& parent, guint32 rgba, const string& text,
|
2009-10-14 12:10:01 -04:00
|
|
|
ARDOUR::MeterSection& m)
|
2010-12-29 08:47:36 -05:00
|
|
|
: Marker (editor, parent, rgba, text, Meter, 0, false),
|
2005-09-25 14:42:24 -04:00
|
|
|
_meter (m)
|
|
|
|
{
|
|
|
|
set_position (_meter.frame());
|
2013-04-10 10:53:21 -04:00
|
|
|
group->Event.connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_meter_marker_event), group, this));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MeterMarker::~MeterMarker ()
|
|
|
|
{
|
|
|
|
}
|
2005-11-24 09:59:36 -05:00
|
|
|
|