2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2002 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_automation_line_h__
|
|
|
|
#define __ardour_automation_line_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <sigc++/signal.h>
|
2006-08-24 21:07:15 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "evoral/TimeConverter.hpp"
|
2009-02-15 23:46:45 -05:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/undo.h"
|
2009-10-14 12:10:01 -04:00
|
|
|
#include "pbd/statefuldestructible.h"
|
2010-07-14 08:27:37 -04:00
|
|
|
#include "pbd/memento_command.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/automation_list.h"
|
2014-11-02 01:29:33 -05:00
|
|
|
#include "ardour/parameter_descriptor.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/types.h"
|
2014-06-22 11:41:05 -04:00
|
|
|
#include "canvas/container.h"
|
2013-12-28 13:52:46 -05:00
|
|
|
#include "canvas/poly_line.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
class AutomationLine;
|
|
|
|
class ControlPoint;
|
|
|
|
class PointSelection;
|
|
|
|
class TimeAxisView;
|
|
|
|
class AutomationTimeAxisView;
|
|
|
|
class Selectable;
|
|
|
|
class Selection;
|
2014-06-07 11:43:12 -04:00
|
|
|
class PublicEditor;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-13 13:13:50 -05:00
|
|
|
|
2010-07-13 20:58:15 -04:00
|
|
|
/** A GUI representation of an ARDOUR::AutomationList */
|
2009-12-17 13:24:23 -05:00
|
|
|
class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2014-01-06 15:32:37 -05:00
|
|
|
public:
|
2012-05-29 14:30:10 -04:00
|
|
|
enum VisibleAspects {
|
|
|
|
Line = 0x1,
|
|
|
|
ControlPoints = 0x2,
|
|
|
|
SelectedControlPoints = 0x4
|
|
|
|
};
|
|
|
|
|
2014-11-01 23:29:10 -04:00
|
|
|
AutomationLine (const std::string& name,
|
|
|
|
TimeAxisView& tv,
|
|
|
|
ArdourCanvas::Item& parent,
|
|
|
|
boost::shared_ptr<ARDOUR::AutomationList> al,
|
2014-11-02 01:29:33 -05:00
|
|
|
const ARDOUR::ParameterDescriptor& desc,
|
2014-01-06 15:32:37 -05:00
|
|
|
Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter = 0);
|
2014-11-01 23:29:10 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
virtual ~AutomationLine ();
|
|
|
|
|
|
|
|
void queue_reset ();
|
|
|
|
void reset ();
|
2010-07-30 20:44:26 -04:00
|
|
|
void clear ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2011-07-13 15:24:46 -04:00
|
|
|
void set_selected_points (PointSelection const &);
|
2010-08-06 19:28:44 -04:00
|
|
|
void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable*>&);
|
2008-12-18 12:46:28 -05:00
|
|
|
void get_inverted_selectables (Selection&, std::list<Selectable*>& results);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
virtual void remove_point (ControlPoint&);
|
|
|
|
bool control_points_adjacent (double xval, uint32_t& before, uint32_t& after);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* dragging API */
|
2014-01-06 15:32:37 -05:00
|
|
|
virtual void start_drag_single (ControlPoint*, double, float);
|
|
|
|
virtual void start_drag_line (uint32_t, uint32_t, float);
|
|
|
|
virtual void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode *);
|
|
|
|
virtual std::pair<double, float> drag_motion (double, float, bool, bool with_push, uint32_t& final_index);
|
|
|
|
virtual void end_drag (bool with_push, uint32_t final_index);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
ControlPoint* nth (uint32_t);
|
2010-08-10 21:23:03 -04:00
|
|
|
ControlPoint const * nth (uint32_t) const;
|
2005-09-25 14:42:24 -04:00
|
|
|
uint32_t npoints() const { return control_points.size(); }
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
std::string name() const { return _name; }
|
2012-05-29 14:30:10 -04:00
|
|
|
bool visible() const { return _visible != VisibleAspects(0); }
|
2009-02-15 23:46:45 -05:00
|
|
|
guint32 height() const { return _height; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
void set_line_color (uint32_t);
|
2005-09-25 14:42:24 -04:00
|
|
|
uint32_t get_line_color() const { return _line_color; }
|
|
|
|
|
2012-05-29 14:30:10 -04:00
|
|
|
void set_visibility (VisibleAspects);
|
|
|
|
void add_visibility (VisibleAspects);
|
|
|
|
void remove_visibility (VisibleAspects);
|
|
|
|
|
|
|
|
void hide ();
|
|
|
|
void set_height (guint32);
|
|
|
|
void set_uses_gain_mapping (bool yn);
|
|
|
|
bool get_uses_gain_mapping () const { return _uses_gain_mapping; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
TimeAxisView& trackview;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-06-22 11:41:05 -04:00
|
|
|
ArdourCanvas::Container& canvas_group() const { return *group; }
|
2005-11-23 12:21:12 -05:00
|
|
|
ArdourCanvas::Item& parent_group() const { return _parent_group; }
|
|
|
|
ArdourCanvas::Item& grab_item() const { return *line; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-01-06 17:02:55 -05:00
|
|
|
virtual std::string get_verbose_cursor_string (double) const;
|
2014-01-06 15:32:37 -05:00
|
|
|
std::string get_verbose_cursor_relative_string (double, double) const;
|
2009-05-12 13:03:42 -04:00
|
|
|
std::string fraction_to_string (double) const;
|
2014-01-06 15:32:37 -05:00
|
|
|
std::string fraction_to_relative_string (double, double) const;
|
2009-05-12 13:03:42 -04:00
|
|
|
double string_to_fraction (std::string const &) const;
|
2009-02-15 23:46:45 -05:00
|
|
|
void view_to_model_coord (double& x, double& y) const;
|
2010-07-20 12:53:30 -04:00
|
|
|
void view_to_model_coord_y (double &) const;
|
2009-02-15 23:46:45 -05:00
|
|
|
void model_to_view_coord (double& x, double& y) const;
|
2014-11-29 01:25:27 -05:00
|
|
|
void model_to_view_coord_y (double &) const;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-21 12:17:02 -04:00
|
|
|
void set_list(boost::shared_ptr<ARDOUR::AutomationList> list);
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationList> the_list() const { return alist; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
void track_entered();
|
|
|
|
void track_exited();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
bool is_last_point (ControlPoint &);
|
|
|
|
bool is_first_point (ControlPoint &);
|
|
|
|
|
2006-07-28 23:17:11 -04:00
|
|
|
XMLNode& get_state (void);
|
2009-10-15 14:56:11 -04:00
|
|
|
int set_state (const XMLNode&, int version);
|
2007-04-02 22:05:34 -04:00
|
|
|
void set_colors();
|
2006-07-28 23:17:11 -04:00
|
|
|
|
2008-12-18 12:46:28 -05:00
|
|
|
void modify_point_y (ControlPoint&, double);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-07-14 08:27:37 -04:00
|
|
|
virtual MementoCommandBinder<ARDOUR::AutomationList>* memento_command_binder ();
|
|
|
|
|
2010-09-17 14:20:37 -04:00
|
|
|
const Evoral::TimeConverter<double, ARDOUR::framepos_t>& time_converter () const {
|
2012-03-22 12:41:23 -04:00
|
|
|
return *_time_converter;
|
2010-08-05 09:36:38 -04:00
|
|
|
}
|
2010-08-20 18:43:10 -04:00
|
|
|
|
2010-09-09 17:35:28 -04:00
|
|
|
std::pair<ARDOUR::framepos_t, ARDOUR::framepos_t> get_point_x_range () const;
|
|
|
|
|
2010-12-12 17:25:27 -05:00
|
|
|
void set_maximum_time (ARDOUR::framecnt_t);
|
2014-01-06 15:32:37 -05:00
|
|
|
ARDOUR::framecnt_t maximum_time () const {
|
2010-08-20 18:43:10 -04:00
|
|
|
return _maximum_time;
|
|
|
|
}
|
2010-12-12 17:25:27 -05:00
|
|
|
|
|
|
|
void set_offset (ARDOUR::framecnt_t);
|
|
|
|
void set_width (ARDOUR::framecnt_t);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2012-04-22 10:03:07 -04:00
|
|
|
framepos_t session_position (ARDOUR::AutomationList::const_iterator) const;
|
|
|
|
|
2014-01-06 15:32:37 -05:00
|
|
|
protected:
|
2006-09-07 11:07:14 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
std::string _name;
|
2009-01-21 05:20:27 -05:00
|
|
|
guint32 _height;
|
|
|
|
uint32_t _line_color;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationList> alist;
|
2012-03-22 12:41:23 -04:00
|
|
|
Evoral::TimeConverter<double, ARDOUR::framepos_t>* _time_converter;
|
2012-04-22 10:03:07 -04:00
|
|
|
/** true if _time_converter belongs to us (ie we should delete it on destruction) */
|
2012-03-22 12:41:23 -04:00
|
|
|
bool _our_time_converter;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-05-29 14:30:10 -04:00
|
|
|
VisibleAspects _visible;
|
2012-07-13 17:05:45 -04:00
|
|
|
|
2014-01-06 15:32:37 -05:00
|
|
|
bool _uses_gain_mapping;
|
|
|
|
bool terminal_points_can_slide;
|
|
|
|
bool update_pending;
|
|
|
|
bool have_timeout;
|
|
|
|
bool no_draw;
|
|
|
|
bool _is_boolean;
|
2012-05-31 13:08:39 -04:00
|
|
|
/** true if we did a push at any point during the current drag */
|
2006-11-28 12:52:09 -05:00
|
|
|
bool did_push;
|
|
|
|
|
2014-06-21 11:44:22 -04:00
|
|
|
ArdourCanvas::Item& _parent_group;
|
2014-06-22 11:41:05 -04:00
|
|
|
ArdourCanvas::Container* group;
|
2013-12-28 13:52:46 -05:00
|
|
|
ArdourCanvas::PolyLine* line; /* line */
|
2009-01-21 05:20:27 -05:00
|
|
|
ArdourCanvas::Points line_points; /* coordinates for canvas line */
|
2008-12-18 12:46:28 -05:00
|
|
|
std::vector<ControlPoint*> control_points; /* visible control points */
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-01-06 15:32:37 -05:00
|
|
|
class ContiguousControlPoints : public std::list<ControlPoint*> {
|
|
|
|
public:
|
|
|
|
ContiguousControlPoints (AutomationLine& al);
|
|
|
|
double clamp_dx (double dx);
|
|
|
|
void move (double dx, double dy);
|
2014-06-07 11:43:12 -04:00
|
|
|
void compute_x_bounds (PublicEditor& e);
|
2014-01-06 15:32:37 -05:00
|
|
|
private:
|
|
|
|
AutomationLine& line;
|
|
|
|
double before_x;
|
|
|
|
double after_x;
|
2012-11-17 17:55:03 -05:00
|
|
|
};
|
|
|
|
|
2014-01-06 15:32:37 -05:00
|
|
|
friend class ContiguousControlPoints;
|
2012-11-17 17:55:03 -05:00
|
|
|
|
|
|
|
typedef boost::shared_ptr<ContiguousControlPoints> CCP;
|
2014-01-06 15:32:37 -05:00
|
|
|
std::vector<CCP> contiguous_points;
|
2012-11-17 17:55:03 -05:00
|
|
|
|
2015-03-26 13:22:57 -04:00
|
|
|
bool sync_model_with_view_point (ControlPoint&);
|
|
|
|
bool sync_model_with_view_points (std::list<ControlPoint*>);
|
2014-01-06 15:32:37 -05:00
|
|
|
void start_drag_common (double, float);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
void reset_callback (const Evoral::ControlList&);
|
2006-11-16 13:42:48 -05:00
|
|
|
void list_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-15 21:57:22 -05:00
|
|
|
virtual bool event_handler (GdkEvent*);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2014-01-06 15:32:37 -05:00
|
|
|
private:
|
2010-01-01 17:11:15 -05:00
|
|
|
std::list<ControlPoint*> _drag_points; ///< points we are dragging
|
2010-01-11 14:36:29 -05:00
|
|
|
std::list<ControlPoint*> _push_points; ///< additional points we are dragging if "push" is enabled
|
2010-01-01 17:11:15 -05:00
|
|
|
bool _drag_had_movement; ///< true if the drag has seen movement, otherwise false
|
2010-01-11 14:36:29 -05:00
|
|
|
double _drag_x; ///< last x position of the drag, in units
|
2012-04-22 20:35:49 -04:00
|
|
|
double _drag_distance; ///< total x movement of the drag, in canvas units
|
2010-01-01 17:11:15 -05:00
|
|
|
double _last_drag_fraction; ///< last y position of the drag, as a fraction
|
2010-12-12 17:25:27 -05:00
|
|
|
/** offset from the start of the automation list to the start of the line, so that
|
|
|
|
* a +ve offset means that the 0 on the line is at _offset in the list
|
|
|
|
*/
|
|
|
|
ARDOUR::framecnt_t _offset;
|
2009-02-15 23:46:45 -05:00
|
|
|
|
2014-11-28 19:17:39 -05:00
|
|
|
bool is_stepped() const;
|
2014-03-05 12:11:22 -05:00
|
|
|
void update_visibility ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void reset_line_coords (ControlPoint&);
|
2009-12-21 20:11:06 -05:00
|
|
|
void add_visible_control_point (uint32_t, uint32_t, double, double, ARDOUR::AutomationList::iterator, uint32_t);
|
2006-10-31 16:48:51 -05:00
|
|
|
double control_point_box_size ();
|
2010-07-13 20:58:15 -04:00
|
|
|
void connect_to_list ();
|
|
|
|
void interpolation_changed (ARDOUR::AutomationList::InterpolationStyle);
|
2006-10-31 15:09:41 -05:00
|
|
|
|
2010-07-13 20:58:15 -04:00
|
|
|
PBD::ScopedConnectionList _list_connections;
|
2010-08-20 18:43:10 -04:00
|
|
|
|
2010-12-12 17:25:27 -05:00
|
|
|
/** maximum time that a point on this line can be at, relative to the position of its region or start of its track */
|
2010-08-20 18:43:10 -04:00
|
|
|
ARDOUR::framecnt_t _maximum_time;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2014-11-02 01:29:33 -05:00
|
|
|
const ARDOUR::ParameterDescriptor _desc;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
friend class AudioRegionGainLine;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_automation_line_h__ */
|
|
|
|
|