mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
time line items now have 64 bit location + duration; start making note resize apply across regions
git-svn-id: svn://localhost/ardour2/branches/3.0@5642 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
1bf79fa885
commit
5328a114c9
14 changed files with 90 additions and 52 deletions
|
|
@ -139,7 +139,7 @@ AutomationRegionView::set_height (double h)
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
AutomationRegionView::set_position (nframes_t pos, void* src, double* ignored)
|
AutomationRegionView::set_position (nframes64_t pos, void* src, double* ignored)
|
||||||
{
|
{
|
||||||
return RegionView::set_position(pos, src, ignored);
|
return RegionView::set_position(pos, src, ignored);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void create_line(boost::shared_ptr<ARDOUR::AutomationList> list);
|
void create_line(boost::shared_ptr<ARDOUR::AutomationList> list);
|
||||||
bool set_position(nframes_t pos, void* src, double* ignored);
|
bool set_position(nframes64_t pos, void* src, double* ignored);
|
||||||
void region_resized(ARDOUR::Change what_changed);
|
void region_resized(ARDOUR::Change what_changed);
|
||||||
bool canvas_event(GdkEvent* ev);
|
bool canvas_event(GdkEvent* ev);
|
||||||
void add_automation_event (GdkEvent* event, nframes_t when, double y);
|
void add_automation_event (GdkEvent* event, nframes_t when, double y);
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,8 @@
|
||||||
#include "audio_time_axis.h"
|
#include "audio_time_axis.h"
|
||||||
#include "midi_time_axis.h"
|
#include "midi_time_axis.h"
|
||||||
#include "canvas-note.h"
|
#include "canvas-note.h"
|
||||||
|
#include "selection.h"
|
||||||
|
#include "midi_selection.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace ARDOUR;
|
using namespace ARDOUR;
|
||||||
|
|
@ -1415,21 +1417,49 @@ NoteResizeDrag::start_grab (GdkEvent* event, Gdk::Cursor *)
|
||||||
} else {
|
} else {
|
||||||
relative = true;
|
relative = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MidiRegionSelection& ms (_editor->get_selection().midi_regions);
|
||||||
|
|
||||||
|
if (ms.size() > 1) {
|
||||||
|
/* has to be relative, may make no sense otherwise */
|
||||||
|
relative = true;
|
||||||
|
}
|
||||||
|
|
||||||
region->note_selected (cnote, true);
|
region->note_selected (cnote, true);
|
||||||
region->begin_resizing (at_front);
|
|
||||||
|
for (MidiRegionSelection::iterator r = ms.begin(); r != ms.end(); ) {
|
||||||
|
MidiRegionSelection::iterator next;
|
||||||
|
next = r;
|
||||||
|
++next;
|
||||||
|
(*r)->begin_resizing (at_front);
|
||||||
|
r = next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
NoteResizeDrag::motion (GdkEvent* /*event*/, bool first_move)
|
NoteResizeDrag::motion (GdkEvent* /*event*/, bool first_move)
|
||||||
{
|
{
|
||||||
region->update_resizing (at_front, _current_pointer_x - _grab_x, relative);
|
MidiRegionSelection& ms (_editor->get_selection().midi_regions);
|
||||||
|
for (MidiRegionSelection::iterator r = ms.begin(); r != ms.end();) {
|
||||||
|
MidiRegionSelection::iterator next;
|
||||||
|
next = r;
|
||||||
|
++next;
|
||||||
|
(*r)->update_resizing (at_front, _current_pointer_x - _grab_x, relative);
|
||||||
|
r = next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
NoteResizeDrag::finished (GdkEvent* event, bool movement_occurred)
|
NoteResizeDrag::finished (GdkEvent* event, bool movement_occurred)
|
||||||
{
|
{
|
||||||
region->commit_resizing (at_front, _current_pointer_x - _grab_x, relative);
|
MidiRegionSelection& ms (_editor->get_selection().midi_regions);
|
||||||
|
for (MidiRegionSelection::iterator r = ms.begin(); r != ms.end();) {
|
||||||
|
MidiRegionSelection::iterator next;
|
||||||
|
next = r;
|
||||||
|
++next;
|
||||||
|
(*r)->commit_resizing (at_front, _current_pointer_x - _grab_x, relative);
|
||||||
|
r = next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
|
|
@ -168,9 +168,9 @@ ImageFrameView::~ImageFrameView()
|
||||||
* @return true if the position change was a success, false otherwise
|
* @return true if the position change was a success, false otherwise
|
||||||
*/
|
*/
|
||||||
bool
|
bool
|
||||||
ImageFrameView::set_position(nframes_t pos, void* src, double* delta)
|
ImageFrameView::set_position(nframes64_t pos, void* src, double* delta)
|
||||||
{
|
{
|
||||||
nframes_t old_pos = frame_position ;
|
nframes64_t old_pos = frame_position ;
|
||||||
|
|
||||||
// do the standard stuff
|
// do the standard stuff
|
||||||
bool ret = TimeAxisViewItem::set_position(pos, src, delta) ;
|
bool ret = TimeAxisViewItem::set_position(pos, src, delta) ;
|
||||||
|
|
@ -182,7 +182,7 @@ ImageFrameView::set_position(nframes_t pos, void* src, double* delta)
|
||||||
{
|
{
|
||||||
// calculate the offset of the marker
|
// calculate the offset of the marker
|
||||||
MarkerView* mv = (MarkerView*)*i ;
|
MarkerView* mv = (MarkerView*)*i ;
|
||||||
nframes_t marker_old_pos = mv->get_position() ;
|
nframes64_t marker_old_pos = mv->get_position() ;
|
||||||
|
|
||||||
mv->set_position(pos + (marker_old_pos - old_pos), src) ;
|
mv->set_position(pos + (marker_old_pos - old_pos), src) ;
|
||||||
}
|
}
|
||||||
|
|
@ -199,7 +199,7 @@ ImageFrameView::set_position(nframes_t pos, void* src, double* delta)
|
||||||
* @return true if the duration change was succesful, false otherwise
|
* @return true if the duration change was succesful, false otherwise
|
||||||
*/
|
*/
|
||||||
bool
|
bool
|
||||||
ImageFrameView::set_duration(nframes_t dur, void* src)
|
ImageFrameView::set_duration(nframes64_t dur, void* src)
|
||||||
{
|
{
|
||||||
/* do the standard stuff */
|
/* do the standard stuff */
|
||||||
bool ret = TimeAxisViewItem::set_duration(dur, src) ;
|
bool ret = TimeAxisViewItem::set_duration(dur, src) ;
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ class ImageFrameView : public TimeAxisViewItem
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
* @return true if the position change was a success, false otherwise
|
* @return true if the position change was a success, false otherwise
|
||||||
*/
|
*/
|
||||||
virtual bool set_position(nframes_t pos, void* src, double* delta = 0) ;
|
virtual bool set_position(nframes64_t pos, void* src, double* delta = 0) ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the duration of this item
|
* Sets the duration of this item
|
||||||
|
|
@ -99,7 +99,7 @@ class ImageFrameView : public TimeAxisViewItem
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
* @return true if the duration change was succesful, false otherwise
|
* @return true if the duration change was succesful, false otherwise
|
||||||
*/
|
*/
|
||||||
virtual bool set_duration(nframes_t dur, void* src) ;
|
virtual bool set_duration(nframes64_t dur, void* src) ;
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------//
|
//---------------------------------------------------------------------------------------//
|
||||||
// Parent Component Methods
|
// Parent Component Methods
|
||||||
|
|
|
||||||
|
|
@ -390,7 +390,7 @@ Marker::set_name (const string& new_name)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Marker::set_position (nframes_t frame)
|
Marker::set_position (nframes64_t frame)
|
||||||
{
|
{
|
||||||
double new_unit_position = editor.frame_to_unit (frame);
|
double new_unit_position = editor.frame_to_unit (frame);
|
||||||
new_unit_position -= shift;
|
new_unit_position -= shift;
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ class Marker : public PBD::Destructible
|
||||||
void hide_line ();
|
void hide_line ();
|
||||||
void set_line_vpos (double y_origin, double height);
|
void set_line_vpos (double y_origin, double height);
|
||||||
|
|
||||||
void set_position (nframes_t);
|
void set_position (nframes64_t);
|
||||||
void set_name (const std::string&);
|
void set_name (const std::string&);
|
||||||
void set_color_rgba (uint32_t rgba);
|
void set_color_rgba (uint32_t rgba);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1669,6 +1669,13 @@ MidiRegionView::get_position_pixels()
|
||||||
return trackview.editor().frame_to_pixel(region_frame);
|
return trackview.editor().frame_to_pixel(region_frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double
|
||||||
|
MidiRegionView::get_end_position_pixels()
|
||||||
|
{
|
||||||
|
nframes64_t frame = get_position() + get_duration ();
|
||||||
|
return trackview.editor().frame_to_pixel(frame);
|
||||||
|
}
|
||||||
|
|
||||||
nframes64_t
|
nframes64_t
|
||||||
MidiRegionView::beats_to_frames(double beats) const
|
MidiRegionView::beats_to_frames(double beats) const
|
||||||
{
|
{
|
||||||
|
|
@ -1727,7 +1734,6 @@ MidiRegionView::update_resizing (bool at_front, double delta_x, bool relative)
|
||||||
for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
|
for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
|
||||||
SimpleRect* resize_rect = (*i)->resize_rect;
|
SimpleRect* resize_rect = (*i)->resize_rect;
|
||||||
CanvasNote* canvas_note = (*i)->canvas_note;
|
CanvasNote* canvas_note = (*i)->canvas_note;
|
||||||
const double region_start = get_position_pixels();
|
|
||||||
double current_x;
|
double current_x;
|
||||||
|
|
||||||
if (at_front) {
|
if (at_front) {
|
||||||
|
|
@ -1735,14 +1741,14 @@ MidiRegionView::update_resizing (bool at_front, double delta_x, bool relative)
|
||||||
current_x = canvas_note->x1() + delta_x;
|
current_x = canvas_note->x1() + delta_x;
|
||||||
} else {
|
} else {
|
||||||
// x is in track relative, transform it to region relative
|
// x is in track relative, transform it to region relative
|
||||||
current_x = delta_x - region_start;
|
current_x = delta_x - get_position_pixels();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (relative) {
|
if (relative) {
|
||||||
current_x = canvas_note->x2() + delta_x;
|
current_x = canvas_note->x2() + delta_x;
|
||||||
} else {
|
} else {
|
||||||
// x is in track relative, transform it to region relative
|
// x is in track relative, transform it to region relative
|
||||||
current_x = delta_x - region_start;
|
current_x = delta_x - get_end_position_pixels ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1772,14 +1778,14 @@ MidiRegionView::commit_resizing (bool at_front, double delta_x, bool relative)
|
||||||
current_x = canvas_note->x1() + delta_x;
|
current_x = canvas_note->x1() + delta_x;
|
||||||
} else {
|
} else {
|
||||||
// x is in track relative, transform it to region relative
|
// x is in track relative, transform it to region relative
|
||||||
current_x = delta_x - region_start;
|
current_x = region_start + delta_x;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (relative) {
|
if (relative) {
|
||||||
current_x = canvas_note->x2() + delta_x;
|
current_x = canvas_note->x2() + delta_x;
|
||||||
} else {
|
} else {
|
||||||
// x is in track relative, transform it to region relative
|
// x is in track relative, transform it to region relative
|
||||||
current_x = delta_x - region_start;
|
current_x = region_start + delta_x;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1787,7 +1793,6 @@ MidiRegionView::commit_resizing (bool at_front, double delta_x, bool relative)
|
||||||
current_x = frames_to_beats (current_x);
|
current_x = frames_to_beats (current_x);
|
||||||
|
|
||||||
if (at_front && current_x < canvas_note->note()->end_time()) {
|
if (at_front && current_x < canvas_note->note()->end_time()) {
|
||||||
|
|
||||||
diff_add_change (canvas_note, MidiModel::DiffCommand::StartTime, current_x);
|
diff_add_change (canvas_note, MidiModel::DiffCommand::StartTime, current_x);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -199,6 +199,9 @@ class MidiRegionView : public RegionView
|
||||||
/** Get the region position in pixels relative to session. */
|
/** Get the region position in pixels relative to session. */
|
||||||
double get_position_pixels();
|
double get_position_pixels();
|
||||||
|
|
||||||
|
/** Get the region end position in pixels relative to session. */
|
||||||
|
double get_end_position_pixels();
|
||||||
|
|
||||||
/** Begin resizing of some notes.
|
/** Begin resizing of some notes.
|
||||||
* Called by CanvasMidiNote when resizing starts.
|
* Called by CanvasMidiNote when resizing starts.
|
||||||
* @param at_front which end of the note (true == note on, false == note off)
|
* @param at_front which end of the note (true == note on, false == note off)
|
||||||
|
|
|
||||||
|
|
@ -393,7 +393,7 @@ Mixer_UI::sync_order_keys (string const & src)
|
||||||
for (order = 0, ri = rows.begin(); ri != rows.end(); ++ri, ++order) {
|
for (order = 0, ri = rows.begin(); ri != rows.end(); ++ri, ++order) {
|
||||||
boost::shared_ptr<Route> route = (*ri)[track_columns.route];
|
boost::shared_ptr<Route> route = (*ri)[track_columns.route];
|
||||||
int old_key = order;
|
int old_key = order;
|
||||||
int new_key = route->order_key (N_("signal"));
|
unsigned int new_key = route->order_key (N_("signal"));
|
||||||
|
|
||||||
assert (new_key < neworder.size());
|
assert (new_key < neworder.size());
|
||||||
neworder[new_key] = old_key;
|
neworder[new_key] = old_key;
|
||||||
|
|
|
||||||
|
|
@ -310,7 +310,7 @@ RegionView::lower_to_bottom ()
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
RegionView::set_position (nframes_t pos, void* /*src*/, double* ignored)
|
RegionView::set_position (nframes64_t pos, void* /*src*/, double* ignored)
|
||||||
{
|
{
|
||||||
double delta;
|
double delta;
|
||||||
bool ret;
|
bool ret;
|
||||||
|
|
@ -346,7 +346,7 @@ RegionView::set_samples_per_unit (gdouble spu)
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
RegionView::set_duration (nframes_t frames, void *src)
|
RegionView::set_duration (nframes64_t frames, void *src)
|
||||||
{
|
{
|
||||||
if (!TimeAxisViewItem::set_duration (frames, src)) {
|
if (!TimeAxisViewItem::set_duration (frames, src)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -62,14 +62,14 @@ class RegionView : public TimeAxisViewItem
|
||||||
|
|
||||||
virtual void set_height (double);
|
virtual void set_height (double);
|
||||||
virtual void set_samples_per_unit (double);
|
virtual void set_samples_per_unit (double);
|
||||||
virtual bool set_duration (nframes_t, void*);
|
virtual bool set_duration (nframes64_t, void*);
|
||||||
|
|
||||||
void move (double xdelta, double ydelta);
|
void move (double xdelta, double ydelta);
|
||||||
|
|
||||||
void raise_to_top ();
|
void raise_to_top ();
|
||||||
void lower_to_bottom ();
|
void lower_to_bottom ();
|
||||||
|
|
||||||
bool set_position(nframes_t pos, void* src, double* delta = 0);
|
bool set_position(nframes64_t pos, void* src, double* delta = 0);
|
||||||
void fake_set_opaque (bool yn);
|
void fake_set_opaque (bool yn);
|
||||||
|
|
||||||
virtual void show_region_editor () {}
|
virtual void show_region_editor () {}
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ double TimeAxisViewItem::NAME_HIGHLIGHT_THRESH;
|
||||||
* @param duration the duration of this item
|
* @param duration the duration of this item
|
||||||
*/
|
*/
|
||||||
TimeAxisViewItem::TimeAxisViewItem(const string & it_name, ArdourCanvas::Group& parent, TimeAxisView& tv, double spu, Gdk::Color const & base_color,
|
TimeAxisViewItem::TimeAxisViewItem(const string & it_name, ArdourCanvas::Group& parent, TimeAxisView& tv, double spu, Gdk::Color const & base_color,
|
||||||
nframes_t start, nframes_t duration, bool recording,
|
nframes64_t start, nframes64_t duration, bool recording,
|
||||||
Visibility vis)
|
Visibility vis)
|
||||||
: trackview (tv), _recregion(recording)
|
: trackview (tv), _recregion(recording)
|
||||||
{
|
{
|
||||||
|
|
@ -130,7 +130,7 @@ TimeAxisViewItem::TimeAxisViewItem (const TimeAxisViewItem& other)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
TimeAxisViewItem::init (const string& it_name, double spu, Gdk::Color const & base_color, nframes_t start, nframes_t duration, Visibility vis)
|
TimeAxisViewItem::init (const string& it_name, double spu, Gdk::Color const & base_color, nframes64_t start, nframes64_t duration, Visibility vis)
|
||||||
{
|
{
|
||||||
item_name = it_name ;
|
item_name = it_name ;
|
||||||
samples_per_unit = spu ;
|
samples_per_unit = spu ;
|
||||||
|
|
@ -238,7 +238,7 @@ TimeAxisViewItem::~TimeAxisViewItem()
|
||||||
* @return true if the position change was a success, false otherwise
|
* @return true if the position change was a success, false otherwise
|
||||||
*/
|
*/
|
||||||
bool
|
bool
|
||||||
TimeAxisViewItem::set_position(nframes_t pos, void* src, double* delta)
|
TimeAxisViewItem::set_position(nframes64_t pos, void* src, double* delta)
|
||||||
{
|
{
|
||||||
if (position_locked) {
|
if (position_locked) {
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -278,7 +278,7 @@ TimeAxisViewItem::set_position(nframes_t pos, void* src, double* delta)
|
||||||
*
|
*
|
||||||
* @return the position of this item
|
* @return the position of this item
|
||||||
*/
|
*/
|
||||||
nframes_t
|
nframes64_t
|
||||||
TimeAxisViewItem::get_position() const
|
TimeAxisViewItem::get_position() const
|
||||||
{
|
{
|
||||||
return frame_position;
|
return frame_position;
|
||||||
|
|
@ -292,7 +292,7 @@ TimeAxisViewItem::get_position() const
|
||||||
* @return true if the duration change was succesful, false otherwise
|
* @return true if the duration change was succesful, false otherwise
|
||||||
*/
|
*/
|
||||||
bool
|
bool
|
||||||
TimeAxisViewItem::set_duration (nframes_t dur, void* src)
|
TimeAxisViewItem::set_duration (nframes64_t dur, void* src)
|
||||||
{
|
{
|
||||||
if ((dur > max_item_duration) || (dur < min_item_duration)) {
|
if ((dur > max_item_duration) || (dur < min_item_duration)) {
|
||||||
warning << string_compose (_("new duration %1 frames is out of bounds for %2"), get_item_name(), dur)
|
warning << string_compose (_("new duration %1 frames is out of bounds for %2"), get_item_name(), dur)
|
||||||
|
|
@ -316,7 +316,7 @@ TimeAxisViewItem::set_duration (nframes_t dur, void* src)
|
||||||
* Returns the duration of this item
|
* Returns the duration of this item
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
nframes_t
|
nframes64_t
|
||||||
TimeAxisViewItem::get_duration() const
|
TimeAxisViewItem::get_duration() const
|
||||||
{
|
{
|
||||||
return (item_duration);
|
return (item_duration);
|
||||||
|
|
@ -329,7 +329,7 @@ TimeAxisViewItem::get_duration() const
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
TimeAxisViewItem::set_max_duration(nframes_t dur, void* src)
|
TimeAxisViewItem::set_max_duration(nframes64_t dur, void* src)
|
||||||
{
|
{
|
||||||
max_item_duration = dur ;
|
max_item_duration = dur ;
|
||||||
MaxDurationChanged(max_item_duration, src) ; /* EMIT_SIGNAL */
|
MaxDurationChanged(max_item_duration, src) ; /* EMIT_SIGNAL */
|
||||||
|
|
@ -340,7 +340,7 @@ TimeAxisViewItem::set_max_duration(nframes_t dur, void* src)
|
||||||
*
|
*
|
||||||
* @return the maximum duration that this item may be set to
|
* @return the maximum duration that this item may be set to
|
||||||
*/
|
*/
|
||||||
nframes_t
|
nframes64_t
|
||||||
TimeAxisViewItem::get_max_duration() const
|
TimeAxisViewItem::get_max_duration() const
|
||||||
{
|
{
|
||||||
return (max_item_duration) ;
|
return (max_item_duration) ;
|
||||||
|
|
@ -353,7 +353,7 @@ TimeAxisViewItem::get_max_duration() const
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
TimeAxisViewItem::set_min_duration(nframes_t dur, void* src)
|
TimeAxisViewItem::set_min_duration(nframes64_t dur, void* src)
|
||||||
{
|
{
|
||||||
min_item_duration = dur ;
|
min_item_duration = dur ;
|
||||||
MinDurationChanged(max_item_duration, src) ; /* EMIT_SIGNAL */
|
MinDurationChanged(max_item_duration, src) ; /* EMIT_SIGNAL */
|
||||||
|
|
@ -364,7 +364,7 @@ TimeAxisViewItem::set_min_duration(nframes_t dur, void* src)
|
||||||
*
|
*
|
||||||
* @return the nimum duration that this item mey be set to
|
* @return the nimum duration that this item mey be set to
|
||||||
*/
|
*/
|
||||||
nframes_t
|
nframes64_t
|
||||||
TimeAxisViewItem::get_min_duration() const
|
TimeAxisViewItem::get_min_duration() const
|
||||||
{
|
{
|
||||||
return(min_item_duration) ;
|
return(min_item_duration) ;
|
||||||
|
|
|
||||||
|
|
@ -47,14 +47,14 @@ class TimeAxisViewItem : public Selectable
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
* @return true if the position change was a success, false otherwise
|
* @return true if the position change was a success, false otherwise
|
||||||
*/
|
*/
|
||||||
virtual bool set_position(nframes_t pos, void* src, double* delta = 0) ;
|
virtual bool set_position(nframes64_t pos, void* src, double* delta = 0) ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the position of this item upon the timeline
|
* Return the position of this item upon the timeline
|
||||||
*
|
*
|
||||||
* @return the position of this item
|
* @return the position of this item
|
||||||
*/
|
*/
|
||||||
nframes_t get_position() const ;
|
nframes64_t get_position() const ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the duration of this item
|
* Sets the duration of this item
|
||||||
|
|
@ -63,13 +63,13 @@ class TimeAxisViewItem : public Selectable
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
* @return true if the duration change was succesful, false otherwise
|
* @return true if the duration change was succesful, false otherwise
|
||||||
*/
|
*/
|
||||||
virtual bool set_duration(nframes_t dur, void* src) ;
|
virtual bool set_duration(nframes64_t dur, void* src) ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the duration of this item
|
* Returns the duration of this item
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
nframes_t get_duration() const ;
|
nframes64_t get_duration() const ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the maximum duration that this item make have.
|
* Sets the maximum duration that this item make have.
|
||||||
|
|
@ -77,14 +77,14 @@ class TimeAxisViewItem : public Selectable
|
||||||
* @param dur the new maximum duration
|
* @param dur the new maximum duration
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
*/
|
*/
|
||||||
virtual void set_max_duration(nframes_t dur, void* src) ;
|
virtual void set_max_duration(nframes64_t dur, void* src) ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the maxmimum duration that this item may be set to
|
* Returns the maxmimum duration that this item may be set to
|
||||||
*
|
*
|
||||||
* @return the maximum duration that this item may be set to
|
* @return the maximum duration that this item may be set to
|
||||||
*/
|
*/
|
||||||
nframes_t get_max_duration() const ;
|
nframes64_t get_max_duration() const ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the minimu duration that this item may be set to
|
* Sets the minimu duration that this item may be set to
|
||||||
|
|
@ -92,14 +92,14 @@ class TimeAxisViewItem : public Selectable
|
||||||
* @param the minimum duration that this item may be set to
|
* @param the minimum duration that this item may be set to
|
||||||
* @param src the identity of the object that initiated the change
|
* @param src the identity of the object that initiated the change
|
||||||
*/
|
*/
|
||||||
virtual void set_min_duration(nframes_t dur, void* src) ;
|
virtual void set_min_duration(nframes64_t dur, void* src) ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the minimum duration that this item mey be set to
|
* Returns the minimum duration that this item mey be set to
|
||||||
*
|
*
|
||||||
* @return the nimum duration that this item mey be set to
|
* @return the nimum duration that this item mey be set to
|
||||||
*/
|
*/
|
||||||
nframes_t get_min_duration() const ;
|
nframes64_t get_min_duration() const ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets whether the position of this Item is locked to its current position
|
* Sets whether the position of this Item is locked to its current position
|
||||||
|
|
@ -305,19 +305,19 @@ class TimeAxisViewItem : public Selectable
|
||||||
sigc::signal<void,std::string,std::string,void*> NameChanged ;
|
sigc::signal<void,std::string,std::string,void*> NameChanged ;
|
||||||
|
|
||||||
/** Emiited when the position of this item changes */
|
/** Emiited when the position of this item changes */
|
||||||
sigc::signal<void,nframes_t,void*> PositionChanged ;
|
sigc::signal<void,nframes64_t,void*> PositionChanged ;
|
||||||
|
|
||||||
/** Emitted when the position lock of this item is changed */
|
/** Emitted when the position lock of this item is changed */
|
||||||
sigc::signal<void,bool,void*> PositionLockChanged ;
|
sigc::signal<void,bool,void*> PositionLockChanged ;
|
||||||
|
|
||||||
/** Emitted when the duration of this item changes */
|
/** Emitted when the duration of this item changes */
|
||||||
sigc::signal<void,nframes_t,void*> DurationChanged ;
|
sigc::signal<void,nframes64_t,void*> DurationChanged ;
|
||||||
|
|
||||||
/** Emitted when the maximum item duration is changed */
|
/** Emitted when the maximum item duration is changed */
|
||||||
sigc::signal<void,nframes_t,void*> MaxDurationChanged ;
|
sigc::signal<void,nframes64_t,void*> MaxDurationChanged ;
|
||||||
|
|
||||||
/** Emitted when the mionimum item duration is changed */
|
/** Emitted when the mionimum item duration is changed */
|
||||||
sigc::signal<void,nframes_t,void*> MinDurationChanged ;
|
sigc::signal<void,nframes64_t,void*> MinDurationChanged ;
|
||||||
|
|
||||||
enum Visibility {
|
enum Visibility {
|
||||||
ShowFrame = 0x1,
|
ShowFrame = 0x1,
|
||||||
|
|
@ -342,11 +342,11 @@ class TimeAxisViewItem : public Selectable
|
||||||
* @param duration the duration of this item
|
* @param duration the duration of this item
|
||||||
*/
|
*/
|
||||||
TimeAxisViewItem(const std::string & it_name, ArdourCanvas::Group& parent, TimeAxisView& tv, double spu, Gdk::Color const & base_color,
|
TimeAxisViewItem(const std::string & it_name, ArdourCanvas::Group& parent, TimeAxisView& tv, double spu, Gdk::Color const & base_color,
|
||||||
nframes_t start, nframes_t duration, bool recording = false, Visibility v = Visibility (0));
|
nframes64_t start, nframes64_t duration, bool recording = false, Visibility v = Visibility (0));
|
||||||
|
|
||||||
TimeAxisViewItem (const TimeAxisViewItem& other);
|
TimeAxisViewItem (const TimeAxisViewItem& other);
|
||||||
|
|
||||||
void init (const std::string& it_name, double spu, Gdk::Color const & base_color, nframes_t start, nframes_t duration, Visibility vis);
|
void init (const std::string& it_name, double spu, Gdk::Color const & base_color, nframes64_t start, nframes64_t duration, Visibility vis);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Calculates some contrasting color for displaying various parts of this item, based upon the base color
|
* Calculates some contrasting color for displaying various parts of this item, based upon the base color
|
||||||
|
|
@ -391,16 +391,16 @@ class TimeAxisViewItem : public Selectable
|
||||||
bool position_locked ;
|
bool position_locked ;
|
||||||
|
|
||||||
/** The posotion of this item on the timeline */
|
/** The posotion of this item on the timeline */
|
||||||
nframes_t frame_position ;
|
nframes64_t frame_position ;
|
||||||
|
|
||||||
/** the duration of this item upon the timeline */
|
/** the duration of this item upon the timeline */
|
||||||
nframes_t item_duration ;
|
nframes64_t item_duration ;
|
||||||
|
|
||||||
/** the maximum duration that we allow this item to take */
|
/** the maximum duration that we allow this item to take */
|
||||||
nframes_t max_item_duration ;
|
nframes64_t max_item_duration ;
|
||||||
|
|
||||||
/** the minimu duration that we allow this item to take */
|
/** the minimu duration that we allow this item to take */
|
||||||
nframes_t min_item_duration ;
|
nframes64_t min_item_duration ;
|
||||||
|
|
||||||
/** indicates whether this Max Duration constraint is active */
|
/** indicates whether this Max Duration constraint is active */
|
||||||
bool max_duration_active ;
|
bool max_duration_active ;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue