2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2008-2011 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2014-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2016-2017 Nick Mainsbridge <mainsbridge@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#ifndef __gtk_ardour_marker_h__
|
|
|
|
#define __gtk_ardour_marker_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <glib.h>
|
2009-05-21 13:30:45 -04:00
|
|
|
|
2009-12-22 15:21:43 -05:00
|
|
|
#include <sigc++/signal.h>
|
2009-05-21 13:30:45 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/ardour.h"
|
2009-12-22 15:21:43 -05:00
|
|
|
#include "pbd/signals.h"
|
2013-04-06 16:39:11 -04:00
|
|
|
|
|
|
|
#include "canvas/fwd.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/types.h"
|
2022-01-20 15:44:29 -05:00
|
|
|
#include "canvas/circle.h"
|
2023-04-09 16:35:43 -04:00
|
|
|
#include "canvas/text.h"
|
2005-11-23 12:21:12 -05:00
|
|
|
|
2020-11-16 13:19:22 -05:00
|
|
|
namespace Temporal {
|
2022-01-18 21:45:18 -05:00
|
|
|
class Point;
|
2020-11-16 13:19:22 -05:00
|
|
|
class TempoPoint;
|
|
|
|
class MeterPoint;
|
2021-02-10 16:34:30 -05:00
|
|
|
class MusicTimePoint;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class PublicEditor;
|
2021-05-18 20:01:38 -04:00
|
|
|
class RegionView;
|
2022-01-18 21:45:18 -05:00
|
|
|
class TempoCurve;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2016-03-30 19:11:05 -04:00
|
|
|
/** Location Marker
|
|
|
|
*
|
|
|
|
* Editor ruler representation of a location marker or range on the timeline.
|
|
|
|
*/
|
2015-07-23 07:23:47 -04:00
|
|
|
class ArdourMarker : public sigc::trackable
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2005-09-25 14:42:24 -04:00
|
|
|
enum Type {
|
|
|
|
Mark,
|
|
|
|
Tempo,
|
|
|
|
Meter,
|
2021-02-10 16:34:30 -05:00
|
|
|
BBTPosition,
|
2010-11-12 13:53:15 -05:00
|
|
|
SessionStart, ///< session start
|
|
|
|
SessionEnd, ///< session end
|
2023-08-29 23:46:28 -04:00
|
|
|
Section,
|
2010-11-12 13:53:15 -05:00
|
|
|
RangeStart,
|
|
|
|
RangeEnd,
|
2005-09-25 14:42:24 -04:00
|
|
|
LoopStart,
|
|
|
|
LoopEnd,
|
|
|
|
PunchIn,
|
2021-05-14 09:48:53 -04:00
|
|
|
PunchOut,
|
2022-01-19 11:06:38 -05:00
|
|
|
RegionCue,
|
2023-05-16 14:48:42 -04:00
|
|
|
Cue,
|
|
|
|
SelectionStart,
|
|
|
|
SelectionEnd,
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2005-11-24 09:59:36 -05:00
|
|
|
|
2023-05-17 18:45:14 -04:00
|
|
|
ArdourMarker (PublicEditor& editor, ArdourCanvas::Item &, std::string const& color_name, std::string const& text, Type,
|
2023-07-26 00:31:00 -04:00
|
|
|
Temporal::timepos_t const & position, bool handle_events = true, RegionView* rv = nullptr, bool use_tooltip = true);
|
2021-02-11 00:27:27 -05:00
|
|
|
|
2015-07-23 07:23:47 -04:00
|
|
|
virtual ~ArdourMarker ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2015-07-23 07:23:47 -04:00
|
|
|
static PBD::Signal1<void,ArdourMarker*> CatchDeletion;
|
2009-12-22 15:21:43 -05:00
|
|
|
|
2014-12-28 09:01:49 -05:00
|
|
|
static void setup_sizes (const double timebar_height);
|
|
|
|
|
2005-11-24 09:59:36 -05:00
|
|
|
ArdourCanvas::Item& the_item() const;
|
|
|
|
|
2010-11-11 08:36:38 -05:00
|
|
|
void set_selected (bool);
|
2021-05-18 16:46:25 -04:00
|
|
|
void set_entered (bool);
|
2010-11-11 08:36:38 -05:00
|
|
|
void set_show_line (bool);
|
2021-05-14 19:14:52 -04:00
|
|
|
void set_line_height (double);
|
2007-11-12 17:23:01 -05:00
|
|
|
|
2023-07-15 12:44:44 -04:00
|
|
|
virtual void reposition ();
|
2023-06-28 20:02:45 -04:00
|
|
|
virtual void set_position (Temporal::timepos_t const &);
|
2022-08-16 17:51:25 -04:00
|
|
|
void set_name (const std::string&, const std::string & tooltip = std::string());
|
2023-05-17 18:45:14 -04:00
|
|
|
void set_color (std::string const& color_name);
|
|
|
|
void set_points_color (std::string const& color_name);
|
2010-11-11 10:21:37 -05:00
|
|
|
void setup_line ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2020-09-26 11:14:59 -04:00
|
|
|
ARDOUR::timepos_t position() const { return _position; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2021-02-11 00:27:27 -05:00
|
|
|
ArdourCanvas::Item * get_parent() { return _parent; }
|
|
|
|
void reparent (ArdourCanvas::Item & parent);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void hide ();
|
|
|
|
void show ();
|
|
|
|
|
|
|
|
Type type () { return _type; }
|
2008-01-10 16:20:59 -05:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
void set_left_label_limit (double);
|
|
|
|
void set_right_label_limit (double);
|
|
|
|
|
|
|
|
std::string name () const {
|
|
|
|
return _name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool label_on_left () const;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2021-05-18 20:01:38 -04:00
|
|
|
/* this will be null for all global markers; non-null for region markers */
|
|
|
|
|
|
|
|
RegionView* region_view() const { return _region_view; }
|
|
|
|
|
2022-01-20 15:44:29 -05:00
|
|
|
/* this will be -1 for all non-cue markers; or cue_index for cue markers */
|
|
|
|
|
|
|
|
void set_cue_index(int c) { _cue_index = c; set_name(_name); }
|
|
|
|
int cue_index() const { return _cue_index; }
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
protected:
|
2005-09-25 14:42:24 -04:00
|
|
|
PublicEditor& editor;
|
|
|
|
|
2011-06-02 13:50:37 -04:00
|
|
|
Pango::FontDescription name_font;
|
2009-05-21 13:30:45 -04:00
|
|
|
|
2021-02-11 00:27:27 -05:00
|
|
|
ArdourCanvas::Item* _parent;
|
|
|
|
ArdourCanvas::Item *group;
|
2022-01-20 15:44:29 -05:00
|
|
|
ArdourCanvas::Circle *_pcue;
|
|
|
|
ArdourCanvas::Polygon *_pmark;
|
2017-07-01 12:42:24 -04:00
|
|
|
ArdourCanvas::Text *_name_item;
|
2005-11-23 12:21:12 -05:00
|
|
|
ArdourCanvas::Points *points;
|
2013-04-15 16:10:13 -04:00
|
|
|
ArdourCanvas::Line* _track_canvas_line;
|
2022-01-20 15:44:29 -05:00
|
|
|
ArdourCanvas::Rectangle* _name_flag;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
std::string _name;
|
2007-11-12 17:23:01 -05:00
|
|
|
double unit_position;
|
2020-09-26 11:14:59 -04:00
|
|
|
ARDOUR::timepos_t _position;
|
2010-11-11 10:21:37 -05:00
|
|
|
double _shift;
|
2010-11-11 08:36:38 -05:00
|
|
|
Type _type;
|
2009-05-21 13:30:45 -04:00
|
|
|
int name_height;
|
2023-07-01 23:07:06 -04:00
|
|
|
int name_descent;
|
2010-11-11 08:36:38 -05:00
|
|
|
bool _selected;
|
2021-05-18 16:46:25 -04:00
|
|
|
bool _entered;
|
2010-11-11 08:36:38 -05:00
|
|
|
bool _shown;
|
2010-11-11 10:21:37 -05:00
|
|
|
bool _line_shown;
|
2023-07-26 00:31:00 -04:00
|
|
|
bool _use_tooltip;
|
2023-05-17 18:45:14 -04:00
|
|
|
|
|
|
|
std::string _color;
|
|
|
|
std::string _points_color;
|
|
|
|
|
2010-11-12 17:51:54 -05:00
|
|
|
double _left_label_limit; ///< the number of pixels available to the left of this marker for a label
|
|
|
|
double _right_label_limit; ///< the number of pixels available to the right of this marker for a label
|
2010-11-13 17:39:42 -05:00
|
|
|
double _label_offset;
|
2021-05-14 19:14:52 -04:00
|
|
|
double _line_height;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2021-05-18 20:01:38 -04:00
|
|
|
RegionView* _region_view;
|
|
|
|
|
2022-01-20 15:44:29 -05:00
|
|
|
int _cue_index;
|
|
|
|
|
2010-11-11 10:21:37 -05:00
|
|
|
void setup_line_x ();
|
2010-11-13 17:39:42 -05:00
|
|
|
void setup_name_display ();
|
2011-05-04 11:51:30 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
/* disallow copy construction */
|
2015-07-23 07:23:47 -04:00
|
|
|
ArdourMarker (ArdourMarker const &);
|
|
|
|
ArdourMarker & operator= (ArdourMarker const &);
|
2023-05-17 18:45:14 -04:00
|
|
|
|
|
|
|
static uint32_t color (std::string const&);
|
|
|
|
void apply_color ();
|
|
|
|
void color_handler ();
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2023-05-16 19:44:26 -04:00
|
|
|
class SelectionMarker : public ArdourMarker
|
|
|
|
{
|
|
|
|
public:
|
2023-05-17 18:45:14 -04:00
|
|
|
SelectionMarker (PublicEditor& ed, ArdourCanvas::Item& parent, std::string const& color_name, Type);
|
2023-05-16 19:44:26 -04:00
|
|
|
};
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
class MetricMarker : public ArdourMarker
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2023-05-17 18:45:14 -04:00
|
|
|
MetricMarker (PublicEditor& ed, ArdourCanvas::Item& parent, std::string const& color_name, const std::string& annotation, Type type, Temporal::timepos_t const & pos, bool handle_events);
|
2022-01-18 21:45:18 -05:00
|
|
|
virtual Temporal::Point const & point() const = 0;
|
2022-06-28 00:20:51 -04:00
|
|
|
virtual void update() = 0;
|
2022-01-18 21:45:18 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class TempoMarker : public MetricMarker
|
|
|
|
{
|
|
|
|
public:
|
2023-09-05 14:25:57 -04:00
|
|
|
TempoMarker (PublicEditor& editor, ArdourCanvas::Item & parent, std::string const& color_name, const std::string& text, Temporal::TempoPoint const &, samplepos_t sample, uint32_t curve_color);
|
2005-09-25 14:42:24 -04:00
|
|
|
~TempoMarker ();
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
void reset_tempo (Temporal::TempoPoint const & t);
|
2022-06-28 00:20:51 -04:00
|
|
|
void update ();
|
2023-04-09 16:35:43 -04:00
|
|
|
void reposition ();
|
2020-11-24 20:25:34 -05:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
Temporal::TempoPoint const & tempo() const { return *_tempo; }
|
|
|
|
Temporal::Point const & point() const;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
TempoCurve& curve();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
private:
|
2022-01-18 21:45:18 -05:00
|
|
|
Temporal::TempoPoint const * _tempo;
|
|
|
|
TempoCurve* _curve;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
class MeterMarker : public MetricMarker
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2023-05-17 18:45:14 -04:00
|
|
|
MeterMarker (PublicEditor& editor, ArdourCanvas::Item &, std::string const& color_name, const std::string& text, Temporal::MeterPoint const &);
|
2005-09-25 14:42:24 -04:00
|
|
|
~MeterMarker ();
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
void reset_meter (Temporal::MeterPoint const & m);
|
2022-06-28 00:20:51 -04:00
|
|
|
void update ();
|
2020-11-24 20:25:34 -05:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
Temporal::MeterPoint const & meter() const { return *_meter; }
|
|
|
|
Temporal::Point const & point() const;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
private:
|
2022-01-18 21:45:18 -05:00
|
|
|
Temporal::MeterPoint const * _meter;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
class BBTMarker : public MetricMarker
|
2021-02-10 16:34:30 -05:00
|
|
|
{
|
|
|
|
public:
|
2023-07-25 13:58:51 -04:00
|
|
|
BBTMarker (PublicEditor& editor, ArdourCanvas::Item &, std::string const& color_name, Temporal::MusicTimePoint const &);
|
2021-02-10 16:34:30 -05:00
|
|
|
~BBTMarker ();
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
void reset_point (Temporal::MusicTimePoint const &);
|
2022-06-28 00:20:51 -04:00
|
|
|
void update ();
|
2023-06-28 20:02:45 -04:00
|
|
|
void set_position (Temporal::timepos_t const &);
|
2021-02-10 16:34:30 -05:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
Temporal::MusicTimePoint const & mt_point() const { return *_point; }
|
|
|
|
Temporal::Point const & point() const;
|
2021-02-10 16:34:30 -05:00
|
|
|
|
|
|
|
private:
|
2022-01-18 21:45:18 -05:00
|
|
|
Temporal::MusicTimePoint const * _point;
|
2023-06-28 20:02:45 -04:00
|
|
|
TempoMarker* tempo_marker;
|
|
|
|
MeterMarker* meter_marker;
|
2021-02-10 16:34:30 -05:00
|
|
|
};
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#endif /* __gtk_ardour_marker_h__ */
|