2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2001-2006 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 __gtk_ardour_region_view_h__
|
|
|
|
#define __gtk_ardour_region_view_h__
|
|
|
|
|
|
|
|
#include <vector>
|
2005-11-28 23:41:15 -05:00
|
|
|
|
2006-03-07 01:23:12 -05:00
|
|
|
#include <libgnomecanvasmm.h>
|
2005-11-12 22:53:51 -05:00
|
|
|
#include <libgnomecanvasmm/polygon.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <sigc++/signal.h>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/region.h"
|
|
|
|
#include "ardour/beats_frames_converter.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "time_axis_view_item.h"
|
|
|
|
#include "automation_line.h"
|
|
|
|
#include "enums.h"
|
2005-11-22 00:10:12 -05:00
|
|
|
#include "canvas.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
class TimeAxisView;
|
|
|
|
class RegionEditor;
|
2005-09-25 14:42:24 -04:00
|
|
|
class GhostRegion;
|
|
|
|
class AutomationTimeAxisView;
|
2007-08-31 15:29:23 -04:00
|
|
|
class AutomationRegionView;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
class RegionView : public TimeAxisViewItem
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-10-14 12:10:01 -04:00
|
|
|
RegionView (ArdourCanvas::Group* parent,
|
2009-07-09 13:58:13 -04:00
|
|
|
TimeAxisView& time_view,
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region> region,
|
2006-07-23 08:03:19 -04:00
|
|
|
double samples_per_unit,
|
2009-06-08 15:28:51 -04:00
|
|
|
Gdk::Color const & basic_color);
|
2006-02-10 21:34:03 -05:00
|
|
|
|
2007-03-18 02:07:08 -04:00
|
|
|
RegionView (const RegionView& other);
|
2008-04-11 10:06:50 -04:00
|
|
|
RegionView (const RegionView& other, boost::shared_ptr<ARDOUR::Region> other_region);
|
2007-03-18 02:07:08 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
~RegionView ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-08 15:28:51 -04:00
|
|
|
virtual void init (Gdk::Color const & base_color, bool wait_for_data);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region> region() const { return _region; }
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
bool is_valid() const { return valid; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
void set_valid (bool yn) { valid = yn; }
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-07 16:12:29 -05:00
|
|
|
virtual void set_height (double);
|
2007-04-12 19:20:37 -04:00
|
|
|
virtual void set_samples_per_unit (double);
|
2009-09-08 22:09:04 -04:00
|
|
|
virtual bool set_duration (nframes64_t, void*);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
void move (double xdelta, double ydelta);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
void raise_to_top ();
|
|
|
|
void lower_to_bottom ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-09-08 22:09:04 -04:00
|
|
|
bool set_position(nframes64_t pos, void* src, double* delta = 0);
|
2007-04-12 19:20:37 -04:00
|
|
|
void fake_set_opaque (bool yn);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-08-06 01:30:18 -04:00
|
|
|
virtual void show_region_editor () {}
|
2007-04-12 19:20:37 -04:00
|
|
|
virtual void hide_region_editor();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
virtual void region_changed (const PBD::PropertyChange&);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
virtual GhostRegion* add_ghost (TimeAxisView&) = 0;
|
|
|
|
void remove_ghost_in (TimeAxisView&);
|
2008-02-10 13:16:25 -05:00
|
|
|
void remove_ghost (GhostRegion*);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
uint32_t get_fill_color ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
virtual void entered () {}
|
|
|
|
virtual void exited () {}
|
2007-08-01 16:50:09 -04:00
|
|
|
|
|
|
|
void enable_display(bool yn) { _enable_display = yn; }
|
2009-08-25 17:53:21 -04:00
|
|
|
virtual void update_coverage_frames (LayerDisplay);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-19 15:26:31 -05:00
|
|
|
static PBD::Signal1<void,RegionView*> RegionViewGoingAway;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-02-10 21:34:03 -05:00
|
|
|
protected:
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
/** Allows derived types to specify their visibility requirements
|
2006-07-23 08:03:19 -04:00
|
|
|
* to the TimeAxisViewItem parent class
|
2007-03-18 02:07:08 -04:00
|
|
|
*/
|
2009-10-14 12:10:01 -04:00
|
|
|
RegionView (ArdourCanvas::Group *,
|
2009-07-09 13:58:13 -04:00
|
|
|
TimeAxisView&,
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region>,
|
2009-06-08 15:28:51 -04:00
|
|
|
double samples_per_unit,
|
|
|
|
Gdk::Color const & basic_color,
|
2008-09-10 11:03:30 -04:00
|
|
|
bool recording,
|
2006-08-29 17:21:48 -04:00
|
|
|
TimeAxisViewItem::Visibility);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
virtual void region_resized (const PBD::PropertyChange&);
|
2006-07-29 23:25:38 -04:00
|
|
|
virtual void region_muted ();
|
|
|
|
void region_locked ();
|
|
|
|
void region_opacity ();
|
2006-08-10 23:24:57 -04:00
|
|
|
virtual void region_renamed ();
|
2006-07-29 23:25:38 -04:00
|
|
|
void region_sync_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-05-14 12:16:54 -04:00
|
|
|
Glib::ustring make_name () const;
|
|
|
|
|
2005-11-23 12:21:12 -05:00
|
|
|
static gint _lock_toggle (ArdourCanvas::Item*, GdkEvent*, void*);
|
2006-07-23 08:03:19 -04:00
|
|
|
void lock_toggle ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-29 23:25:38 -04:00
|
|
|
virtual void set_colors ();
|
2006-02-10 21:34:03 -05:00
|
|
|
virtual void set_frame_color ();
|
2006-07-29 23:25:38 -04:00
|
|
|
virtual void reset_width_dependent_items (double pixel_width);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-06-15 18:08:27 -04:00
|
|
|
virtual void color_handler () {}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region> _region;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
ArdourCanvas::Polygon* sync_mark; ///< polgyon for sync position
|
|
|
|
ArdourCanvas::Line* sync_line; ///< polgyon for sync position
|
2006-08-29 17:21:48 -04:00
|
|
|
|
|
|
|
RegionEditor* editor;
|
|
|
|
|
2008-12-18 12:46:28 -05:00
|
|
|
std::vector<ControlPoint *> control_points;
|
2006-08-29 17:21:48 -04:00
|
|
|
double current_visible_sync_position;
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
bool valid; ///< see StreamView::redisplay_diskstream()
|
|
|
|
bool _enable_display; ///< see StreamView::redisplay_diskstream()
|
2006-08-29 17:21:48 -04:00
|
|
|
double _pixel_width;
|
|
|
|
bool in_destructor;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
bool wait_for_data;
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnection data_ready_connection;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-18 12:46:28 -05:00
|
|
|
std::vector<GhostRegion*> ghosts;
|
2008-12-31 13:44:32 -05:00
|
|
|
|
|
|
|
/** a list of rectangles which are used in stacked display mode to colour
|
|
|
|
different bits of regions according to whether or not they are the one
|
|
|
|
that will be played at any given time.
|
|
|
|
*/
|
|
|
|
std::list<ArdourCanvas::SimpleRect*> _coverage_frames;
|
2009-02-18 23:12:54 -05:00
|
|
|
|
|
|
|
ARDOUR::BeatsFramesConverter _time_converter;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_region_view_h__ */
|