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__
|
|
|
|
|
2013-07-11 15:29:28 -04:00
|
|
|
#ifdef interface
|
|
|
|
#undef interface
|
|
|
|
#endif
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <vector>
|
2005-11-28 23:41:15 -05:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <sigc++/signal.h>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/region.h"
|
2017-09-18 12:39:17 -04:00
|
|
|
#include "ardour/beats_samples_converter.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-11 22:54:12 -04:00
|
|
|
#include "canvas/fwd.h"
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "time_axis_view_item.h"
|
|
|
|
#include "automation_line.h"
|
|
|
|
#include "enums.h"
|
|
|
|
|
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
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
namespace ArdourCanvas {
|
|
|
|
class Polygon;
|
|
|
|
class Text;
|
|
|
|
}
|
2010-12-08 16:02:37 -05:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
class RegionView : public TimeAxisViewItem
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2019-04-13 11:48:27 -04:00
|
|
|
RegionView (ArdourCanvas::Container* parent,
|
|
|
|
TimeAxisView& time_view,
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region> region,
|
2019-04-13 11:48:27 -04:00
|
|
|
double samples_per_pixel,
|
|
|
|
uint32_t base_color,
|
|
|
|
bool automation = false);
|
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
|
|
|
|
2018-02-11 10:39:45 -05:00
|
|
|
virtual void set_selected (bool yn) {
|
|
|
|
_region->set_selected_for_solo(yn);
|
|
|
|
TimeAxisViewItem::set_selected(yn);
|
|
|
|
}
|
|
|
|
|
2014-06-09 23:28:32 -04:00
|
|
|
virtual void init (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);
|
2013-04-12 11:31:50 -04:00
|
|
|
virtual void set_samples_per_pixel (double);
|
2017-09-18 12:39:17 -04:00
|
|
|
virtual bool set_duration (samplecnt_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
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
bool set_position(samplepos_t pos, void* src, double* delta = 0);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-05-21 20:26:26 -04:00
|
|
|
virtual void show_region_editor ();
|
|
|
|
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
|
|
|
|
2014-12-16 20:37:16 -05:00
|
|
|
uint32_t get_fill_color () const;
|
|
|
|
|
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
|
|
|
|
2014-12-08 23:00:00 -05:00
|
|
|
virtual void entered () {}
|
2007-04-12 19:20:37 -04:00
|
|
|
virtual void exited () {}
|
2007-08-01 16:50:09 -04:00
|
|
|
|
2010-06-28 14:43:40 -04:00
|
|
|
virtual void enable_display(bool yn) { _enable_display = yn; }
|
2019-04-08 15:40:33 -04:00
|
|
|
virtual void update_coverage_frame (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
|
|
|
|
2010-12-07 12:16:59 -05:00
|
|
|
/** Called when a front trim is about to begin */
|
|
|
|
virtual void trim_front_starting () {}
|
2010-11-23 20:04:53 -05:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
bool trim_front (samplepos_t, bool, const int32_t sub_num);
|
2010-11-23 20:04:53 -05:00
|
|
|
|
|
|
|
/** Called when a start trim has finished */
|
2010-12-07 12:16:59 -05:00
|
|
|
virtual void trim_front_ending () {}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
bool trim_end (samplepos_t, bool, const int32_t sub_num);
|
|
|
|
void move_contents (ARDOUR::sampleoffset_t);
|
2010-11-08 20:58:12 -05:00
|
|
|
virtual void thaw_after_trim ();
|
|
|
|
|
2019-04-08 18:31:29 -04:00
|
|
|
void set_silent_frames (const ARDOUR::AudioIntervalResult&, double threshold);
|
|
|
|
void drop_silent_frames ();
|
|
|
|
void hide_silent_frames ();
|
2010-12-08 16:02:37 -05:00
|
|
|
|
2014-12-16 14:37:40 -05:00
|
|
|
struct PositionOrder {
|
|
|
|
bool operator()(const RegionView* a, const RegionView* b) {
|
|
|
|
return a->region()->position() < b->region()->position();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
ARDOUR::MusicSample snap_sample_to_sample (ARDOUR::sampleoffset_t, bool ensure_snap = false) const;
|
2015-05-22 13:09:48 -04:00
|
|
|
|
2019-05-29 17:16:00 -04:00
|
|
|
void update_visibility ();
|
|
|
|
|
2017-07-01 15:11:14 -04: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
|
2010-08-15 06:33:23 -04:00
|
|
|
* to the TimeAxisViewItem parent class
|
|
|
|
*/
|
2014-06-22 11:41:05 -04:00
|
|
|
RegionView (ArdourCanvas::Container *,
|
2017-07-01 15:11:14 -04:00
|
|
|
TimeAxisView&,
|
|
|
|
boost::shared_ptr<ARDOUR::Region>,
|
|
|
|
double samples_per_pixel,
|
|
|
|
uint32_t basic_color,
|
|
|
|
bool recording,
|
|
|
|
TimeAxisViewItem::Visibility);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2017-07-01 12:42:24 -04:00
|
|
|
bool canvas_group_event (GdkEvent*);
|
2013-04-25 16:06:12 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
virtual void region_resized (const PBD::PropertyChange&);
|
|
|
|
virtual void region_muted ();
|
|
|
|
void region_locked ();
|
|
|
|
void region_opacity ();
|
|
|
|
virtual void region_renamed ();
|
|
|
|
void region_sync_changed ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-09-14 12:51:02 -04:00
|
|
|
std::string make_name () const;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
static gint _lock_toggle (ArdourCanvas::Item*, GdkEvent*, void*);
|
|
|
|
void lock_toggle ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
virtual void set_colors ();
|
2014-12-19 10:07:20 -05:00
|
|
|
virtual void set_sync_mark_color ();
|
2010-08-15 06:33:23 -04:00
|
|
|
virtual void reset_width_dependent_items (double pixel_width);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
virtual void color_handler () {}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region> _region;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
ArdourCanvas::Polygon* sync_mark; ///< polgyon for sync position
|
|
|
|
ArdourCanvas::Line* sync_line; ///< polgyon for sync position
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
RegionEditor* editor;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
std::vector<ControlPoint *> control_points;
|
|
|
|
double current_visible_sync_position;
|
|
|
|
|
|
|
|
bool valid; ///< see StreamView::redisplay_diskstream()
|
|
|
|
bool _enable_display; ///< see StreamView::redisplay_diskstream()
|
|
|
|
double _pixel_width;
|
|
|
|
bool in_destructor;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
bool wait_for_data;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-15 06:33:23 -04:00
|
|
|
std::vector<GhostRegion*> ghosts;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2008-12-31 13:44:32 -05:00
|
|
|
/** a list of rectangles which are used in stacked display mode to colour
|
2017-07-01 15:11:14 -04:00
|
|
|
* different bits of regions according to whether or not they are the one
|
|
|
|
* that will be played at any given time.
|
|
|
|
*/
|
2019-04-08 15:40:33 -04:00
|
|
|
std::list<ArdourCanvas::Rectangle*> _coverage_frame;
|
2009-02-18 23:12:54 -05:00
|
|
|
|
2011-06-01 13:00:29 -04:00
|
|
|
/** a list of rectangles used to show silent segments
|
2010-12-08 16:02:37 -05:00
|
|
|
*/
|
2019-04-08 18:31:29 -04:00
|
|
|
std::list<ArdourCanvas::Rectangle*> _silent_frames;
|
2010-12-09 13:17:36 -05:00
|
|
|
/** a list of rectangles used to show the current silence threshold
|
|
|
|
*/
|
2017-09-18 12:39:17 -04:00
|
|
|
std::list<ArdourCanvas::Rectangle*> _silent_threshold_samples;
|
2017-07-01 15:11:14 -04:00
|
|
|
/** a text item to display strip silence statistics */
|
2017-07-01 12:42:24 -04:00
|
|
|
ArdourCanvas::Text* _silence_text;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_region_view_h__ */
|