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"
|
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"
|
2005-11-24 09:59:36 -05:00
|
|
|
#include "canvas_impl.h"
|
2008-01-12 18:45:50 -05:00
|
|
|
#include "simpleline.h"
|
2010-11-13 17:39:42 -05:00
|
|
|
#include "simplerect.h"
|
|
|
|
#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)
|
|
|
|
, _line (0)
|
|
|
|
, _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
|
|
|
, _canvas_height (0)
|
|
|
|
, _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
|
|
|
|
2005-11-12 22:53:51 -05:00
|
|
|
points->push_back (Gnome::Art::Point (0.0, 0.0));
|
|
|
|
points->push_back (Gnome::Art::Point (6.0, 0.0));
|
|
|
|
points->push_back (Gnome::Art::Point (6.0, 5.0));
|
2010-11-13 17:39:42 -05:00
|
|
|
points->push_back (Gnome::Art::Point (3.0, 13.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (0.0, 5.0));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 0.0));
|
|
|
|
|
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 ();
|
2005-11-12 22:53:51 -05:00
|
|
|
points->push_back (Gnome::Art::Point (3.0, 0.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (6.0, 5.0));
|
|
|
|
points->push_back (Gnome::Art::Point (6.0, 10.0));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 10.0));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 5.0));
|
|
|
|
points->push_back (Gnome::Art::Point (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 ();
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (0.0, 0.0));
|
|
|
|
points->push_back (Gnome::Art::Point (6.5, 6.5));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 13.0));
|
|
|
|
points->push_back (Gnome::Art::Point (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 ();
|
2006-01-20 07:36:24 -05:00
|
|
|
points->push_back (Gnome::Art::Point (6.5, 6.5));
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (13.0, 0.0));
|
|
|
|
points->push_back (Gnome::Art::Point (13.0, 13.0));
|
|
|
|
points->push_back (Gnome::Art::Point (6.5, 6.5));
|
|
|
|
|
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 ();
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (0.0, 0.0));
|
|
|
|
points->push_back (Gnome::Art::Point (13.0, 13.0));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 13.0));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 0.0));
|
|
|
|
|
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 ();
|
2006-01-20 07:36:24 -05:00
|
|
|
points->push_back (Gnome::Art::Point (13.0, 0.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (13.0, 13.0));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 13.0));
|
2006-01-20 07:36:24 -05:00
|
|
|
points->push_back (Gnome::Art::Point (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 ();
|
2005-11-12 22:53:51 -05:00
|
|
|
points->push_back (Gnome::Art::Point (0.0, 0.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (13.0, 0.0));
|
|
|
|
points->push_back (Gnome::Art::Point (0.0, 13.0));
|
|
|
|
points->push_back (Gnome::Art::Point (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 ();
|
2005-11-12 22:53:51 -05:00
|
|
|
points->push_back (Gnome::Art::Point (0.0, 0.0));
|
2009-10-14 12:10:01 -04:00
|
|
|
points->push_back (Gnome::Art::Point (12.0, 0.0));
|
|
|
|
points->push_back (Gnome::Art::Point (12.0, 12.0));
|
|
|
|
points->push_back (Gnome::Art::Point (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;
|
|
|
|
unit_position = editor.frame_to_unit (frame);
|
2010-11-11 10:21:37 -05:00
|
|
|
unit_position -= _shift;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2012-05-23 11:47:28 -04:00
|
|
|
group = new Group (parent, unit_position, 0);
|
2005-12-08 13:53:43 -05:00
|
|
|
|
2010-11-13 17:39:42 -05:00
|
|
|
_name_background = new ArdourCanvas::SimpleRect (*group);
|
|
|
|
_name_background->property_outline_pixels() = 1;
|
|
|
|
|
|
|
|
/* adjust to properly locate the tip */
|
|
|
|
|
2005-11-24 09:59:36 -05:00
|
|
|
mark = new Polygon (*group);
|
2005-11-27 17:35:04 -05:00
|
|
|
mark->property_points() = *points;
|
2010-11-11 08:36:38 -05:00
|
|
|
set_color_rgba (rgba);
|
2005-12-12 15:54:55 -05:00
|
|
|
mark->property_width_pixels() = 1;
|
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);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-21 13:30:45 -04:00
|
|
|
name_pixbuf = new ArdourCanvas::Pixbuf(*group);
|
2010-11-13 17:39:42 -05:00
|
|
|
name_pixbuf->property_x() = _label_offset;
|
2010-03-16 11:33:04 -04:00
|
|
|
name_pixbuf->property_y() = (13/2) - (name_height/2);
|
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
|
|
|
|
|
|
|
mark->set_data ("marker", this);
|
2010-11-14 06:50:43 -05:00
|
|
|
_name_background->set_data ("marker", this);
|
2005-11-24 09:59:36 -05:00
|
|
|
|
|
|
|
if (handle_events) {
|
2009-12-11 18:29:48 -05:00
|
|
|
group->signal_event().connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_marker_event), mark, this));
|
2005-11-24 09:59:36 -05:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -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;
|
2010-11-11 08:36:38 -05:00
|
|
|
delete _line;
|
2007-11-12 17:23:01 -05:00
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
void Marker::reparent(ArdourCanvas::Group & parent)
|
|
|
|
{
|
2010-12-29 08:47:36 -05: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
|
|
|
|
|
|
|
if (_line == 0) {
|
|
|
|
|
2010-12-29 08:47:36 -05:00
|
|
|
_line = new ArdourCanvas::SimpleLine (*group);
|
2010-11-11 08:36:38 -05:00
|
|
|
_line->property_color_rgba() = ARDOUR_UI::config()->canvasvar_EditPoint.get();
|
2010-11-11 10:21:37 -05:00
|
|
|
|
2010-11-11 08:36:38 -05:00
|
|
|
_line->signal_event().connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_marker_event), mark, this));
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-29 08:47:36 -05:00
|
|
|
/* work out where to start the line from so that it extends from the top of the canvas */
|
2010-11-11 08:36:38 -05:00
|
|
|
double yo = 0;
|
2010-12-29 08:47:36 -05:00
|
|
|
double xo = 0;
|
|
|
|
|
|
|
|
_line->i2w (xo, yo);
|
2010-11-11 08:36:38 -05:00
|
|
|
|
2010-12-29 08:47:36 -05:00
|
|
|
_line->property_x1() = _shift;
|
|
|
|
_line->property_x2() = _shift;
|
|
|
|
_line->property_y1() = -yo; // zero in world coordinates, negative in item/parent coordinate space
|
|
|
|
_line->property_y2() = -yo + _canvas_height;
|
2010-11-11 08:36:38 -05:00
|
|
|
|
|
|
|
_line->property_color_rgba() = _selected ? ARDOUR_UI::config()->canvasvar_EditPoint.get() : _color;
|
|
|
|
_line->raise_to_top ();
|
|
|
|
_line->show ();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (_line) {
|
|
|
|
_line->hide ();
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
return *mark;
|
|
|
|
}
|
|
|
|
|
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);
|
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 ()) {
|
|
|
|
name_pixbuf->property_x() = -name_width;
|
2009-11-12 15:39:53 -05:00
|
|
|
}
|
2010-11-12 17:51:54 -05:00
|
|
|
|
|
|
|
name_pixbuf->property_pixbuf() = pixbuf_from_string (_name, name_font, name_width, name_height, Gdk::Color ("#000000"));
|
2010-11-13 17:39:42 -05:00
|
|
|
|
|
|
|
if (label_on_left ()) {
|
|
|
|
_name_background->property_x1() = name_pixbuf->property_x() - 2;
|
|
|
|
_name_background->property_x2() = name_pixbuf->property_x() + name_width + _shift;
|
|
|
|
} else {
|
|
|
|
_name_background->property_x1() = name_pixbuf->property_x() - _label_offset + 2;
|
|
|
|
_name_background->property_x2() = name_pixbuf->property_x() + name_width;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-13 17:39:42 -05:00
|
|
|
_name_background->property_y1() = 0;
|
|
|
|
_name_background->property_y2() = 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
|
|
|
{
|
|
|
|
double new_unit_position = editor.frame_to_unit (frame);
|
2010-11-11 10:21:37 -05:00
|
|
|
new_unit_position -= _shift;
|
2005-11-12 22:53:51 -05:00
|
|
|
group->move (new_unit_position - unit_position, 0.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
frame_position = frame;
|
|
|
|
unit_position = new_unit_position;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
mark->property_fill_color_rgba() = _color;
|
|
|
|
mark->property_outline_color_rgba() = _color;
|
2010-11-13 17:39:42 -05:00
|
|
|
|
2010-11-11 08:36:38 -05:00
|
|
|
if (_line && !_selected) {
|
|
|
|
_line->property_color_rgba() = _color;
|
|
|
|
}
|
2010-11-13 17:39:42 -05:00
|
|
|
|
|
|
|
_name_background->property_fill() = true;
|
|
|
|
_name_background->property_fill_color_rgba() = UINT_RGBA_CHANGE_A (_color, 0x70);
|
|
|
|
_name_background->property_outline_color_rgba() = _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());
|
2009-12-11 18:29:48 -05:00
|
|
|
group->signal_event().connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_tempo_marker_event), mark, 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());
|
2009-12-11 18:29:48 -05:00
|
|
|
group->signal_event().connect (sigc::bind (sigc::mem_fun (editor, &PublicEditor::canvas_meter_marker_event), mark, this));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MeterMarker::~MeterMarker ()
|
|
|
|
{
|
|
|
|
}
|
2005-11-24 09:59:36 -05:00
|
|
|
|