Split Region into Audio_Region and Sequence_Region base class.
This commit is contained in:
parent
33d78a726a
commit
875ff62c8a
|
@ -105,7 +105,7 @@ Audio_Region::init ( void )
|
||||||
/* copy constructor */
|
/* copy constructor */
|
||||||
Audio_Region::Audio_Region ( const Audio_Region & rhs )
|
Audio_Region::Audio_Region ( const Audio_Region & rhs )
|
||||||
{
|
{
|
||||||
*((Sequence_Widget*)this) = (Sequence_Widget &)rhs;
|
*((Sequence_Region*)this) = (Sequence_Region &)rhs;
|
||||||
|
|
||||||
_clip = rhs._clip;
|
_clip = rhs._clip;
|
||||||
_scale = rhs._scale;
|
_scale = rhs._scale;
|
||||||
|
@ -166,59 +166,6 @@ Audio_Region::Audio_Region ( Audio_File *c, Sequence *t, nframes_t o )
|
||||||
log_create();
|
log_create();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
Audio_Region::trim ( enum trim_e t, int X )
|
|
||||||
{
|
|
||||||
|
|
||||||
X -= _track->x();
|
|
||||||
redraw();
|
|
||||||
|
|
||||||
switch ( t )
|
|
||||||
{
|
|
||||||
case LEFT:
|
|
||||||
{
|
|
||||||
/* if ( d < 0 ) */
|
|
||||||
/* // _track->damage( FL_DAMAGE_EXPOSE, x() + d, y(), 1 - d, h() ); */
|
|
||||||
/* _track->damage( FL_DAMAGE_EXPOSE, x(), y(), w(), h() ); */
|
|
||||||
/* else */
|
|
||||||
/* _track->damage( FL_DAMAGE_EXPOSE, x(), y(), d, h() ); */
|
|
||||||
|
|
||||||
int d = X - ( abs_x() - scroll_x() );
|
|
||||||
|
|
||||||
long td = timeline->x_to_ts( d );
|
|
||||||
|
|
||||||
if ( td < 0 && _r->start < 0 - td )
|
|
||||||
td = 0 - _r->start;
|
|
||||||
|
|
||||||
if ( _r->start + td >= _r->end )
|
|
||||||
td = (_r->end - _r->start) - timeline->x_to_ts( 1 );
|
|
||||||
|
|
||||||
_r->start += td;
|
|
||||||
_r->offset += td;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case RIGHT:
|
|
||||||
{
|
|
||||||
int d = (( abs_x() - scroll_x() ) + abs_w() ) - X;
|
|
||||||
|
|
||||||
/* _track->damage( FL_DAMAGE_EXPOSE, x() + w(), y(), d, h() ); */
|
|
||||||
|
|
||||||
long td = timeline->x_to_ts( d );
|
|
||||||
|
|
||||||
// printf( "%li %li\n", td, _r->end - _r->start );
|
|
||||||
|
|
||||||
if ( td >= 0 && _r->end - _r->start < td )
|
|
||||||
_r->end = _r->start + timeline->x_to_ts( 1 );
|
|
||||||
else
|
|
||||||
_r->end -= td;
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
return;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
Audio_Region::handle ( int m )
|
Audio_Region::handle ( int m )
|
||||||
|
@ -239,19 +186,14 @@ Audio_Region::handle ( int m )
|
||||||
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
if ( Sequence_Region::handle( m ) )
|
||||||
|
return 1;
|
||||||
|
|
||||||
Logger _log( this );
|
Logger _log( this );
|
||||||
//log_r->start();
|
//log_r->start();
|
||||||
|
|
||||||
switch ( m )
|
switch ( m )
|
||||||
{
|
{
|
||||||
case FL_ENTER:
|
|
||||||
Sequence_Widget::handle( m );
|
|
||||||
// redraw();
|
|
||||||
break;
|
|
||||||
case FL_LEAVE:
|
|
||||||
Sequence_Widget::handle( m );
|
|
||||||
// redraw();
|
|
||||||
break;
|
|
||||||
case FL_KEYBOARD:
|
case FL_KEYBOARD:
|
||||||
{
|
{
|
||||||
if ( Fl::event_key() == FL_F + 3 )
|
if ( Fl::event_key() == FL_F + 3 )
|
||||||
|
@ -286,22 +228,11 @@ Audio_Region::handle ( int m )
|
||||||
}
|
}
|
||||||
case FL_PUSH:
|
case FL_PUSH:
|
||||||
{
|
{
|
||||||
|
/* splitting */
|
||||||
/* trimming / splitting */
|
|
||||||
if ( Fl::event_shift() && ! Fl::event_ctrl() )
|
if ( Fl::event_shift() && ! Fl::event_ctrl() )
|
||||||
{
|
{
|
||||||
switch ( Fl::event_button() )
|
switch ( Fl::event_button() )
|
||||||
{
|
{
|
||||||
case 1:
|
|
||||||
trim( trimming = LEFT, X );
|
|
||||||
begin_drag( Drag( x() - X, y() - Y ) );
|
|
||||||
_log.hold();
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
trim( trimming = RIGHT, X );
|
|
||||||
begin_drag( Drag( x() - X, y() - Y ) );
|
|
||||||
_log.hold();
|
|
||||||
break;
|
|
||||||
case 2:
|
case 2:
|
||||||
{
|
{
|
||||||
/* split */
|
/* split */
|
||||||
|
@ -327,7 +258,6 @@ Audio_Region::handle ( int m )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
fl_cursor( FL_CURSOR_WE );
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -354,7 +284,7 @@ Audio_Region::handle ( int m )
|
||||||
}
|
}
|
||||||
|
|
||||||
redraw();
|
redraw();
|
||||||
goto changed;
|
return 1;
|
||||||
}
|
}
|
||||||
else if ( Fl::event_button1() && Fl::event_ctrl() )
|
else if ( Fl::event_button1() && Fl::event_ctrl() )
|
||||||
{
|
{
|
||||||
|
@ -411,10 +341,8 @@ Audio_Region::handle ( int m )
|
||||||
Sequence_Widget::handle( m );
|
Sequence_Widget::handle( m );
|
||||||
|
|
||||||
copied = false;
|
copied = false;
|
||||||
if ( trimming != NO )
|
|
||||||
trimming = NO;
|
|
||||||
|
|
||||||
goto changed;
|
return 1;
|
||||||
}
|
}
|
||||||
case FL_DRAG:
|
case FL_DRAG:
|
||||||
|
|
||||||
|
@ -444,16 +372,6 @@ Audio_Region::handle ( int m )
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* trimming */
|
|
||||||
if ( Fl::event_state() & FL_SHIFT )
|
|
||||||
if ( trimming )
|
|
||||||
{
|
|
||||||
trim( trimming, X );
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
/* duplication */
|
/* duplication */
|
||||||
if ( Fl::event_state() & FL_CTRL )
|
if ( Fl::event_state() & FL_CTRL )
|
||||||
{
|
{
|
||||||
|
@ -465,36 +383,12 @@ Audio_Region::handle ( int m )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* track jumping */
|
|
||||||
if ( ! selected() )
|
|
||||||
{
|
|
||||||
if ( Y > y() + h() || Y < y() )
|
|
||||||
{
|
|
||||||
printf( "wants to jump tracks\n" );
|
|
||||||
|
|
||||||
Track *t = timeline->track_under( Y );
|
|
||||||
|
|
||||||
fl_cursor( (Fl_Cursor)1 );
|
|
||||||
|
|
||||||
if ( t )
|
|
||||||
t->handle( FL_ENTER );
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = Sequence_Widget::handle( m );
|
ret = Sequence_Widget::handle( m );
|
||||||
return ret | 1;
|
return ret | 1;
|
||||||
default:
|
default:
|
||||||
return Sequence_Widget::handle( m );
|
return Sequence_Widget::handle( m );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
changed:
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -16,21 +16,20 @@
|
||||||
/* with This program; see the file COPYING. If not,write to the Free Software */
|
/* with This program; see the file COPYING. If not,write to the Free Software */
|
||||||
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
/*******************************************************************************/
|
/*******************************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "Audio_File.H"
|
#include "Audio_File.H"
|
||||||
#include "Sequence.H"
|
|
||||||
#include "Timeline.H"
|
#include "Timeline.H"
|
||||||
|
|
||||||
/* Audio_Regions are "virtual" FLTK widgets; this is necessary because the
|
/* Audio_Regions are "virtual" FLTK widgets; this is necessary because the
|
||||||
* dimensions of real FLTK widgets are limited to 16-bits, which is
|
* dimensions of real FLTK widgets are limited to 16-bits, which is
|
||||||
* far too little for our purposes */
|
* far too little for our purposes */
|
||||||
|
|
||||||
#include "Sequence_Widget.H"
|
#include "Sequence_Region.H"
|
||||||
#include "Loggable.H"
|
|
||||||
|
|
||||||
|
|
||||||
class Audio_Region : public Sequence_Widget
|
class Audio_Region : public Sequence_Region
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -158,8 +157,6 @@ public:
|
||||||
Fl_Color selection_color ( void ) const { return _selection_color; }
|
Fl_Color selection_color ( void ) const { return _selection_color; }
|
||||||
void selection_color ( Fl_Color v ) { _selection_color = v; }
|
void selection_color ( Fl_Color v ) { _selection_color = v; }
|
||||||
|
|
||||||
enum trim_e { NO, LEFT, RIGHT };
|
|
||||||
void trim ( enum trim_e t, int X );
|
|
||||||
void init ( void );
|
void init ( void );
|
||||||
|
|
||||||
Audio_Region ( )
|
Audio_Region ( )
|
||||||
|
@ -171,7 +168,6 @@ public:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|
||||||
const char *source_name ( void ) const { return _clip->name(); }
|
const char *source_name ( void ) const { return _clip->name(); }
|
||||||
|
|
||||||
LOG_CREATE_FUNC( Audio_Region );
|
LOG_CREATE_FUNC( Audio_Region );
|
||||||
|
@ -190,9 +186,10 @@ public:
|
||||||
Audio_Region ( Audio_File *c );
|
Audio_Region ( Audio_File *c );
|
||||||
Audio_Region ( Audio_File *c, Sequence *t, nframes_t o );
|
Audio_Region ( Audio_File *c, Sequence *t, nframes_t o );
|
||||||
|
|
||||||
int handle ( int m );
|
|
||||||
void draw_fade ( const Fade &fade, Fade::fade_dir_e dir, bool filled, int X, int W );
|
void draw_fade ( const Fade &fade, Fade::fade_dir_e dir, bool filled, int X, int W );
|
||||||
|
|
||||||
|
|
||||||
|
int handle ( int m );
|
||||||
void draw_box( void );
|
void draw_box( void );
|
||||||
void draw ( void );
|
void draw ( void );
|
||||||
void resize ( void );
|
void resize ( void );
|
||||||
|
|
|
@ -0,0 +1,217 @@
|
||||||
|
|
||||||
|
/*******************************************************************************/
|
||||||
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
||||||
|
/* */
|
||||||
|
/* 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; see the file COPYING. If not,write to the Free Software */
|
||||||
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
/*******************************************************************************/
|
||||||
|
|
||||||
|
#include "Sequence_Region.H"
|
||||||
|
#include "Track.H"
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
Sequence_Region::draw_box ( void )
|
||||||
|
{
|
||||||
|
fl_draw_box( box(), x(), y(), w(), h(), color() );
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
Sequence_Region::draw ( void )
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
Sequence_Region::trim ( enum trim_e t, int X )
|
||||||
|
{
|
||||||
|
|
||||||
|
X -= _track->x();
|
||||||
|
redraw();
|
||||||
|
|
||||||
|
switch ( t )
|
||||||
|
{
|
||||||
|
case LEFT:
|
||||||
|
{
|
||||||
|
/* if ( d < 0 ) */
|
||||||
|
/* // _track->damage( FL_DAMAGE_EXPOSE, x() + d, y(), 1 - d, h() ); */
|
||||||
|
/* _track->damage( FL_DAMAGE_EXPOSE, x(), y(), w(), h() ); */
|
||||||
|
/* else */
|
||||||
|
/* _track->damage( FL_DAMAGE_EXPOSE, x(), y(), d, h() ); */
|
||||||
|
|
||||||
|
int d = X - ( abs_x() - scroll_x() );
|
||||||
|
|
||||||
|
long td = timeline->x_to_ts( d );
|
||||||
|
|
||||||
|
if ( td < 0 && _r->start < 0 - td )
|
||||||
|
td = 0 - _r->start;
|
||||||
|
|
||||||
|
if ( _r->start + td >= _r->end )
|
||||||
|
td = (_r->end - _r->start) - timeline->x_to_ts( 1 );
|
||||||
|
|
||||||
|
_r->start += td;
|
||||||
|
_r->offset += td;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case RIGHT:
|
||||||
|
{
|
||||||
|
int d = (( abs_x() - scroll_x() ) + abs_w() ) - X;
|
||||||
|
|
||||||
|
/* _track->damage( FL_DAMAGE_EXPOSE, x() + w(), y(), d, h() ); */
|
||||||
|
|
||||||
|
long td = timeline->x_to_ts( d );
|
||||||
|
|
||||||
|
// printf( "%li %li\n", td, _r->end - _r->start );
|
||||||
|
|
||||||
|
if ( td >= 0 && _r->end - _r->start < td )
|
||||||
|
_r->end = _r->start + timeline->x_to_ts( 1 );
|
||||||
|
else
|
||||||
|
_r->end -= td;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
Sequence_Region::handle ( int m )
|
||||||
|
{
|
||||||
|
static int ox, oy;
|
||||||
|
static enum trim_e trimming;
|
||||||
|
|
||||||
|
static bool copied = false;
|
||||||
|
static nframes_t os;
|
||||||
|
|
||||||
|
|
||||||
|
/* if ( ! active_r() ) */
|
||||||
|
/* return 0; */
|
||||||
|
|
||||||
|
// int X = Fl::event_x() - _track->x();
|
||||||
|
int X = Fl::event_x();
|
||||||
|
int Y = Fl::event_y();
|
||||||
|
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
Logger _log( this );
|
||||||
|
//log_r->start();
|
||||||
|
|
||||||
|
switch ( m )
|
||||||
|
{
|
||||||
|
case FL_PUSH:
|
||||||
|
{
|
||||||
|
/* trimming */
|
||||||
|
if ( Fl::event_shift() && ! Fl::event_ctrl() )
|
||||||
|
{
|
||||||
|
switch ( Fl::event_button() )
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
trim( trimming = LEFT, X );
|
||||||
|
begin_drag( Drag( x() - X, y() - Y ) );
|
||||||
|
_log.hold();
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
trim( trimming = RIGHT, X );
|
||||||
|
begin_drag( Drag( x() - X, y() - Y ) );
|
||||||
|
_log.hold();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
fl_cursor( FL_CURSOR_WE );
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else if ( Fl::test_shortcut( FL_BUTTON3 ) )
|
||||||
|
{
|
||||||
|
if ( Sequence_Widget::current() == this )
|
||||||
|
{
|
||||||
|
if ( selected() )
|
||||||
|
deselect();
|
||||||
|
else
|
||||||
|
select();
|
||||||
|
}
|
||||||
|
|
||||||
|
redraw();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else if ( Fl::test_shortcut( FL_CTRL + FL_BUTTON1 ) )
|
||||||
|
{
|
||||||
|
/* duplication */
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return Sequence_Widget::handle( m );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case FL_RELEASE:
|
||||||
|
{
|
||||||
|
Sequence_Widget::handle( m );
|
||||||
|
|
||||||
|
copied = false;
|
||||||
|
if ( trimming != NO )
|
||||||
|
trimming = NO;
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
case FL_DRAG:
|
||||||
|
{
|
||||||
|
if ( ! _drag )
|
||||||
|
{
|
||||||
|
begin_drag( Drag( x() - X, y() - Y, x_to_offset( X ) ) );
|
||||||
|
_log.hold();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* trimming */
|
||||||
|
if ( Fl::event_state() & FL_SHIFT )
|
||||||
|
if ( trimming )
|
||||||
|
{
|
||||||
|
trim( trimming, X );
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
/* track jumping */
|
||||||
|
if ( ! selected() )
|
||||||
|
{
|
||||||
|
if ( Y > y() + h() || Y < y() )
|
||||||
|
{
|
||||||
|
printf( "wants to jump tracks\n" );
|
||||||
|
|
||||||
|
Track *t = timeline->track_under( Y );
|
||||||
|
|
||||||
|
fl_cursor( (Fl_Cursor)1 );
|
||||||
|
|
||||||
|
if ( t )
|
||||||
|
t->handle( FL_ENTER );
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = Sequence_Widget::handle( m );
|
||||||
|
return ret | 1;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return Sequence_Widget::handle( m );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,78 @@
|
||||||
|
|
||||||
|
/*******************************************************************************/
|
||||||
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
||||||
|
/* */
|
||||||
|
/* 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; see the file COPYING. If not,write to the Free Software */
|
||||||
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
/*******************************************************************************/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "Sequence.H"
|
||||||
|
#include "Sequence_Widget.H"
|
||||||
|
|
||||||
|
/* Base class representing a /region/ of time on a /sequence/, with
|
||||||
|
controls for the start and end points. */
|
||||||
|
|
||||||
|
class Sequence_Region : public Sequence_Widget
|
||||||
|
{
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
virtual void get ( Log_Entry &e ) const
|
||||||
|
{
|
||||||
|
e.add( ":color", (int)_box_color );
|
||||||
|
|
||||||
|
Sequence_Widget::get( e );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
set ( Log_Entry &e )
|
||||||
|
{
|
||||||
|
for ( int i = 0; i < e.size(); ++i )
|
||||||
|
{
|
||||||
|
const char *s, *v;
|
||||||
|
|
||||||
|
e.get( i, &s, &v );
|
||||||
|
|
||||||
|
if ( ! strcmp( s, ":color" ) )
|
||||||
|
_box_color = (Fl_Color)atoll( v );
|
||||||
|
}
|
||||||
|
|
||||||
|
Sequence_Widget::set( e );
|
||||||
|
}
|
||||||
|
|
||||||
|
Sequence_Region ( )
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual ~Sequence_Region ( )
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
LOG_NAME_FUNC( Region );
|
||||||
|
|
||||||
|
enum trim_e { NO, LEFT, RIGHT };
|
||||||
|
void trim ( enum trim_e t, int X );
|
||||||
|
|
||||||
|
int handle ( int m );
|
||||||
|
void draw_box( void );
|
||||||
|
void draw ( void );
|
||||||
|
|
||||||
|
};
|
|
@ -1,3 +1,4 @@
|
||||||
|
# -*- mode: makefile; -*-
|
||||||
|
|
||||||
Timeline_VERSION := 0.5.0
|
Timeline_VERSION := 0.5.0
|
||||||
|
|
||||||
|
@ -19,6 +20,7 @@ Timeline/Audio_Region.C \
|
||||||
Timeline/Sequence.C \
|
Timeline/Sequence.C \
|
||||||
Timeline/Sequence_Point.C \
|
Timeline/Sequence_Point.C \
|
||||||
Timeline/Sequence_Widget.C \
|
Timeline/Sequence_Widget.C \
|
||||||
|
Timeline/Sequence_Region.C \
|
||||||
Timeline/TLE.C \
|
Timeline/TLE.C \
|
||||||
Timeline/Tempo_Point.C \
|
Timeline/Tempo_Point.C \
|
||||||
Timeline/Time_Point.C \
|
Timeline/Time_Point.C \
|
||||||
|
|
Loading…
Reference in New Issue