2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2003 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_time_axis_view_item_h__
|
|
|
|
#define __gtk_ardour_time_axis_view_item_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2009-05-13 11:33:41 -04:00
|
|
|
#include <libgnomecanvasmm/pixbuf.h>
|
2005-11-12 17:07:07 -05:00
|
|
|
|
2009-12-19 15:26:31 -05:00
|
|
|
#include "pbd/signals.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "selectable.h"
|
2005-11-12 17:07:07 -05:00
|
|
|
#include "simplerect.h"
|
2005-11-23 12:21:12 -05:00
|
|
|
#include "canvas.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
class TimeAxisView;
|
|
|
|
|
2010-09-17 14:20:37 -04:00
|
|
|
using ARDOUR::framepos_t;
|
|
|
|
using ARDOUR::framecnt_t;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/**
|
2010-04-07 07:03:00 -04:00
|
|
|
* Base class for items that may appear upon a TimeAxisView.
|
2005-09-25 14:42:24 -04:00
|
|
|
*/
|
2010-04-07 07:03:00 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
class TimeAxisViewItem : public Selectable, public PBD::ScopedConnectionList
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2010-04-07 07:03:00 -04:00
|
|
|
virtual ~TimeAxisViewItem();
|
|
|
|
|
2010-09-17 14:20:37 -04:00
|
|
|
virtual bool set_position(framepos_t, void*, double* delta = 0);
|
|
|
|
framepos_t get_position() const;
|
|
|
|
virtual bool set_duration(framecnt_t, void*);
|
|
|
|
framecnt_t get_duration() const;
|
|
|
|
virtual void set_max_duration(framecnt_t, void*);
|
|
|
|
framecnt_t get_max_duration() const;
|
|
|
|
virtual void set_min_duration(framecnt_t, void*);
|
|
|
|
framecnt_t get_min_duration() const;
|
2010-04-07 07:03:00 -04:00
|
|
|
virtual void set_position_locked(bool, void*);
|
|
|
|
bool get_position_locked() const;
|
|
|
|
void set_max_duration_active(bool, void*);
|
|
|
|
bool get_max_duration_active() const;
|
|
|
|
void set_min_duration_active(bool, void*);
|
|
|
|
bool get_min_duration_active() const;
|
|
|
|
void set_item_name(std::string, void*);
|
|
|
|
virtual std::string get_item_name() const;
|
|
|
|
virtual void set_selected(bool yn);
|
|
|
|
void set_sensitive (bool yn) { _sensitive = yn; }
|
|
|
|
bool sensitive () const { return _sensitive; }
|
2010-09-06 08:34:11 -04:00
|
|
|
TimeAxisView& get_time_axis_view () const;
|
2010-09-14 12:51:02 -04:00
|
|
|
void set_name_text(const std::string&);
|
2010-04-07 07:03:00 -04:00
|
|
|
virtual void set_height(double h);
|
|
|
|
void set_y (double);
|
|
|
|
void set_color (Gdk::Color const &);
|
2010-06-24 15:46:28 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
ArdourCanvas::Item* get_canvas_frame();
|
|
|
|
ArdourCanvas::Group* get_canvas_group();
|
|
|
|
ArdourCanvas::Item* get_name_highlight();
|
|
|
|
ArdourCanvas::Pixbuf* get_name_pixbuf();
|
|
|
|
|
|
|
|
virtual void set_samples_per_unit(double spu);
|
|
|
|
|
|
|
|
double get_samples_per_unit();
|
|
|
|
|
|
|
|
virtual void raise () { return; }
|
|
|
|
virtual void raise_to_top () { return; }
|
|
|
|
virtual void lower () { return; }
|
|
|
|
virtual void lower_to_bottom () { return; }
|
2011-03-03 09:51:02 -05:00
|
|
|
|
|
|
|
virtual void hide_rect ();
|
|
|
|
virtual void show_rect ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** @return true if the name area should respond to events */
|
|
|
|
bool name_active() const { return name_connected; }
|
|
|
|
|
|
|
|
// Default sizes, font and spacing
|
2011-06-02 13:50:37 -04:00
|
|
|
static Pango::FontDescription NAME_FONT;
|
2010-06-03 11:57:31 -04:00
|
|
|
static void set_constant_heights ();
|
2010-04-07 07:03:00 -04:00
|
|
|
static const double NAME_X_OFFSET;
|
|
|
|
static const double GRAB_HANDLE_LENGTH;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/* these are not constant, but vary with the pixel size
|
|
|
|
of the font used to display the item name.
|
|
|
|
*/
|
|
|
|
static int NAME_HEIGHT;
|
|
|
|
static double NAME_Y_OFFSET;
|
|
|
|
static double NAME_HIGHLIGHT_SIZE;
|
|
|
|
static double NAME_HIGHLIGHT_THRESH;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emitted when this Group has been removed.
|
|
|
|
* This is different to the CatchDeletion signal in that this signal
|
|
|
|
* is emitted during the deletion of this Time Axis, and not during
|
|
|
|
* the destructor, this allows us to capture the source of the deletion
|
|
|
|
* event
|
|
|
|
*/
|
|
|
|
|
|
|
|
sigc::signal<void,std::string,void*> ItemRemoved;
|
|
|
|
|
|
|
|
/** Emitted when the name of this item is changed */
|
|
|
|
sigc::signal<void,std::string,std::string,void*> NameChanged;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** Emiited when the position of this item changes */
|
2010-09-17 14:20:37 -04:00
|
|
|
sigc::signal<void,framepos_t,void*> PositionChanged;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** Emitted when the position lock of this item is changed */
|
|
|
|
sigc::signal<void,bool,void*> PositionLockChanged;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** Emitted when the duration of this item changes */
|
2010-09-17 14:20:37 -04:00
|
|
|
sigc::signal<void,framecnt_t,void*> DurationChanged;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** Emitted when the maximum item duration is changed */
|
2010-09-17 14:20:37 -04:00
|
|
|
sigc::signal<void,framecnt_t,void*> MaxDurationChanged;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** Emitted when the mionimum item duration is changed */
|
2010-09-17 14:20:37 -04:00
|
|
|
sigc::signal<void,framecnt_t,void*> MinDurationChanged;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
enum Visibility {
|
|
|
|
ShowFrame = 0x1,
|
|
|
|
ShowNameHighlight = 0x2,
|
|
|
|
ShowNameText = 0x4,
|
|
|
|
ShowHandles = 0x8,
|
|
|
|
HideFrameLeft = 0x10,
|
|
|
|
HideFrameRight = 0x20,
|
|
|
|
HideFrameTB = 0x40,
|
|
|
|
FullWidthNameHighlight = 0x80
|
|
|
|
};
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-09-17 14:20:37 -04:00
|
|
|
protected:
|
2010-04-07 07:03:00 -04:00
|
|
|
TimeAxisViewItem(const std::string &, ArdourCanvas::Group&, TimeAxisView&, double, Gdk::Color const &,
|
2010-09-17 14:20:37 -04:00
|
|
|
framepos_t, framepos_t, bool recording = false, bool automation = false, Visibility v = Visibility (0));
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
TimeAxisViewItem (const TimeAxisViewItem&);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-09-17 14:20:37 -04:00
|
|
|
void init (const std::string&, double, Gdk::Color const &, framepos_t, framepos_t, Visibility, bool, bool);
|
2010-04-07 07:03:00 -04:00
|
|
|
|
|
|
|
virtual void compute_colors (Gdk::Color const &);
|
|
|
|
virtual void set_colors();
|
|
|
|
virtual void set_frame_color();
|
|
|
|
void set_trim_handle_colors();
|
|
|
|
|
|
|
|
virtual void reset_width_dependent_items (double);
|
|
|
|
void reset_name_width (double);
|
|
|
|
void update_name_pixbuf_visibility ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
static gint idle_remove_this_item(TimeAxisViewItem*, void*);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** time axis that this item is on */
|
|
|
|
TimeAxisView& trackview;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** indicates whether this item is locked to its current position */
|
|
|
|
bool position_locked;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** position of this item on the timeline */
|
2010-09-17 14:20:37 -04:00
|
|
|
framepos_t frame_position;
|
2010-04-07 07:03:00 -04:00
|
|
|
|
|
|
|
/** duration of this item upon the timeline */
|
2010-09-17 14:20:37 -04:00
|
|
|
framecnt_t item_duration;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** maximum duration that this item can have */
|
2010-09-17 14:20:37 -04:00
|
|
|
framecnt_t max_item_duration;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** minimum duration that this item can have */
|
2010-09-17 14:20:37 -04:00
|
|
|
framecnt_t min_item_duration;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** indicates whether the max duration constraint is active */
|
|
|
|
bool max_duration_active;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** indicates whether the min duration constraint is active */
|
|
|
|
bool min_duration_active;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/** samples per canvas unit */
|
|
|
|
double samples_per_unit;
|
|
|
|
|
|
|
|
/** should the item respond to events */
|
|
|
|
bool _sensitive;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
/**
|
|
|
|
* The unique item name of this Item.
|
|
|
|
* Each item upon a time axis must have a unique id.
|
|
|
|
*/
|
|
|
|
std::string item_name;
|
|
|
|
|
|
|
|
/** true if the name should respond to events */
|
|
|
|
bool name_connected;
|
|
|
|
|
|
|
|
/** true if a small vestigial rect should be shown when the item gets very narrow */
|
|
|
|
bool show_vestigial;
|
|
|
|
|
|
|
|
uint32_t fill_opacity;
|
|
|
|
uint32_t fill_color;
|
|
|
|
uint32_t frame_color_r;
|
|
|
|
uint32_t frame_color_g;
|
|
|
|
uint32_t frame_color_b;
|
|
|
|
uint32_t selected_frame_color_r;
|
|
|
|
uint32_t selected_frame_color_g;
|
|
|
|
uint32_t selected_frame_color_b;
|
|
|
|
uint32_t label_color;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
uint32_t handle_color_r;
|
|
|
|
uint32_t handle_color_g;
|
|
|
|
uint32_t handle_color_b;
|
|
|
|
uint32_t lock_handle_color_r;
|
|
|
|
uint32_t lock_handle_color_g;
|
|
|
|
uint32_t lock_handle_color_b;
|
|
|
|
uint32_t last_item_width;
|
|
|
|
int name_pixbuf_width;
|
|
|
|
bool wide_enough_for_name;
|
|
|
|
bool high_enough_for_name;
|
2011-03-03 09:51:02 -05:00
|
|
|
bool rect_visible;
|
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
ArdourCanvas::Group* group;
|
|
|
|
ArdourCanvas::SimpleRect* vestigial_frame;
|
|
|
|
ArdourCanvas::SimpleRect* frame;
|
|
|
|
ArdourCanvas::Pixbuf* name_pixbuf;
|
|
|
|
ArdourCanvas::SimpleRect* name_highlight;
|
2010-07-19 19:26:10 -04:00
|
|
|
|
|
|
|
/* with these two values, if frame_handle_start == 0 then frame_handle_end will also be 0 */
|
|
|
|
ArdourCanvas::SimpleRect* frame_handle_start; ///< `frame' (fade) handle for the start of the item, or 0
|
|
|
|
ArdourCanvas::SimpleRect* frame_handle_end; ///< `frame' (fade) handle for the end of the item, or 0
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-04-07 07:03:00 -04:00
|
|
|
double _height;
|
|
|
|
Visibility visibility;
|
|
|
|
bool _recregion;
|
2010-09-01 18:35:46 -04:00
|
|
|
bool _automation; ///< true if this is an automation region view
|
2011-02-08 15:01:55 -05:00
|
|
|
|
|
|
|
private:
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-02-08 15:01:55 -05:00
|
|
|
void parameter_changed (std::string);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
}; /* class TimeAxisViewItem */
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_time_axis_view_item_h__ */
|