non/timeline/src/Sequence.C

562 lines
15 KiB
C++
Raw Normal View History

2008-04-19 06:16:21 +02:00
/*******************************************************************************/
/* 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.H"
#include "Timeline.H"
#include <FL/fl_draw.H>
#include "Track.H"
2008-04-19 06:16:21 +02:00
2008-06-19 06:14:14 +02:00
#include "FL/event_name.H"
#include "Transport.H" // for locate()
#include "const.h"
2010-02-01 07:25:16 +01:00
#include "debug.h"
2008-05-22 22:58:36 +02:00
using namespace std;
2008-06-19 06:14:14 +02:00
2008-04-19 06:16:21 +02:00
queue <Sequence_Widget *> Sequence::_delete_queue;
2008-06-19 06:14:14 +02:00
Sequence::Sequence ( Track *track, const char *name ) : Fl_Widget( 0, 0, 0, 0 ), Loggable( true )
2008-04-19 06:16:21 +02:00
{
init();
2008-04-20 04:15:54 +02:00
_track = track;
2008-04-19 06:16:21 +02:00
if ( name )
_name = strdup( name );
// log_create();
}
Sequence::Sequence ( int X, int Y, int W, int H ) : Fl_Widget( X, Y, W, H ), Loggable( false )
{
init();
}
void
Sequence::init ( void )
{
_track = NULL;
_name = NULL;
2008-04-27 12:33:26 +02:00
box( FL_DOWN_BOX );
color( FL_BACKGROUND_COLOR );
2008-04-19 06:16:21 +02:00
align( FL_ALIGN_LEFT );
2008-05-27 05:32:35 +02:00
// clear_visible_focus();
2008-04-19 06:16:21 +02:00
}
2008-06-19 06:14:14 +02:00
Sequence::~Sequence ( )
{
DMESSAGE( "destroying sequence" );
if ( _name )
free( _name );
if ( _widgets.size() )
FATAL( "programming error: leaf destructor must call Sequence::clear()!" );
if ( parent() )
parent()->remove( this );
2008-06-19 06:14:14 +02:00
}
void
Sequence::log_children ( void ) const
2008-04-19 06:16:21 +02:00
{
if ( id() > 0 )
log_create();
2008-06-19 06:14:14 +02:00
for ( std::list <Sequence_Widget*>::const_iterator i = _widgets.begin();
i != _widgets.end(); ++i )
(*i)->log_create();
}
/** remove all widgets from this sequence */
void
Sequence::clear ( void )
{
Loggable::block_start();
while ( _widgets.size() )
delete _widgets.front();
2008-06-19 06:14:14 +02:00
Loggable::block_end();
}
2008-06-19 06:14:14 +02:00
/** given screen pixel coordinate X, return an absolute frame offset into this sequence */
2008-04-26 13:58:50 +02:00
nframes_t
Sequence::x_to_offset ( int X )
{
return timeline->xoffset + timeline->x_to_ts( X - x() );
}
2008-06-19 06:14:14 +02:00
/** sort the widgets in this sequence by position */
2008-04-19 06:16:21 +02:00
void
Sequence::sort ( void )
{
_widgets.sort( Sequence_Widget::sort_func );
}
/** return a pointer to the widget that /r/ overlaps, or NULL if none. */
Sequence_Widget *
Sequence::overlaps ( Sequence_Widget *r )
{
for ( list <Sequence_Widget *>::const_iterator i = _widgets.begin(); i != _widgets.end(); i++ )
{
if ( *i == r ) continue;
if ( (*i)->overlaps( r ) )
2008-04-19 06:16:21 +02:00
return *i;
}
return NULL;
}
2008-05-28 01:47:47 +02:00
void
Sequence::handle_widget_change ( nframes_t start, nframes_t length )
{
timeline->wrlock();
sort();
timeline->unlock();
// timeline->update_length( start + length );
2008-05-28 01:47:47 +02:00
}
2008-04-19 06:16:21 +02:00
Sequence_Widget *
Sequence::widget_at ( nframes_t ts, int Y )
2008-04-19 06:16:21 +02:00
{
for ( list <Sequence_Widget *>::const_reverse_iterator r = _widgets.rbegin(); r != _widgets.rend(); ++r )
if ( ts >= (*r)->start() && ts <= (*r)->start() + (*r)->length()
&& Y >= (*r)->y() && Y <= (*r)->y() + (*r)->h() )
2008-04-19 06:16:21 +02:00
return (*r);
return NULL;
}
2008-06-19 06:14:14 +02:00
/** return a pointer to the widget under the current mouse event, or
* NULL if no widget intersects the event coordinates */
Sequence_Widget *
Sequence::event_widget ( void )
{
nframes_t ets = timeline->xoffset + timeline->x_to_ts( Fl::event_x() - x() );
return widget_at( ets, Fl::event_y() );
}
2008-04-19 06:16:21 +02:00
void
Sequence::add ( Sequence_Widget *r )
{
// Logger _log( this );
2008-05-07 18:42:31 +02:00
if ( r->sequence() )
2008-04-19 06:16:21 +02:00
{
r->redraw();
2008-05-07 18:42:31 +02:00
r->sequence()->remove( r );
2008-04-19 06:16:21 +02:00
// r->track()->redraw();
}
timeline->wrlock();
2008-05-07 18:42:31 +02:00
r->sequence( this );
2008-04-19 06:16:21 +02:00
_widgets.push_back( r );
timeline->unlock();
handle_widget_change( r->start(), r->length() );
2008-04-19 06:16:21 +02:00
}
2008-06-19 06:14:14 +02:00
void
Sequence::remove ( Sequence_Widget *r )
{
timeline->wrlock();
_widgets.remove( r );
timeline->unlock();
handle_widget_change( r->start(), r->length() );
}
2008-05-17 04:07:56 +02:00
static nframes_t
abs_diff ( nframes_t n1, nframes_t n2 )
{
return n1 > n2 ? n1 - n2 : n2 - n1;
}
2008-06-19 06:14:14 +02:00
/** snap widget /r/ to nearest edge */
2008-04-19 06:16:21 +02:00
void
Sequence::snap ( Sequence_Widget *r )
{
const int snap_pixels = 10;
2008-05-19 05:01:09 +02:00
const nframes_t snap_frames = timeline->x_to_ts( snap_pixels );
2008-04-19 06:16:21 +02:00
2008-05-17 04:07:56 +02:00
/* snap to other widgets */
2008-04-27 20:56:20 +02:00
if ( Timeline::snap_magnetic )
2008-04-19 06:16:21 +02:00
{
2008-05-17 04:07:56 +02:00
const int rx1 = r->start();
const int rx2 = r->start() + r->length();
2008-04-19 06:16:21 +02:00
2008-05-17 04:07:56 +02:00
for ( list <Sequence_Widget*>::const_iterator i = _widgets.begin(); i != _widgets.end(); i++ )
2008-04-19 06:16:21 +02:00
{
2008-04-27 20:56:20 +02:00
const Sequence_Widget *w = (*i);
if ( w == r )
continue;
2008-05-17 04:07:56 +02:00
const int wx1 = w->start();
const int wx2 = w->start() + w->length();
2008-04-27 20:56:20 +02:00
2008-05-17 04:07:56 +02:00
if ( abs_diff( rx1, wx2 ) < snap_frames )
2008-04-27 20:56:20 +02:00
{
r->start( w->start() + w->length() + 1 );
2008-04-19 06:16:21 +02:00
return;
2008-04-27 20:56:20 +02:00
}
2008-04-19 06:16:21 +02:00
2008-05-17 04:07:56 +02:00
if ( abs_diff( rx2, wx1 ) < snap_frames )
2008-04-27 20:56:20 +02:00
{
r->start( ( w->start() - r->length() ) - 1 );
2008-04-19 06:16:21 +02:00
return;
2008-04-27 20:56:20 +02:00
}
2008-04-19 06:16:21 +02:00
}
}
2008-05-29 03:31:06 +02:00
nframes_t f = r->start();
2008-04-19 06:16:21 +02:00
2008-05-17 04:07:56 +02:00
/* snap to beat/bar lines */
2008-05-29 03:31:06 +02:00
if ( timeline->nearest_line( &f ) )
r->start( f );
2008-04-19 06:16:21 +02:00
}
2008-06-19 06:14:14 +02:00
void
Sequence::draw ( void )
{
2008-06-19 06:14:14 +02:00
if ( ! fl_not_clipped( x(), y(), w(), h() ) )
return;
2008-06-19 06:14:14 +02:00
fl_push_clip( x(), y(), w(), h() );
2008-06-19 06:14:14 +02:00
/* draw the box with the ends cut off. */
draw_box( box(), x() - Fl::box_dx( box() ) - 1, y(), w() + Fl::box_dw( box() ) + 2, h(), color() );
2008-06-19 06:14:14 +02:00
int X, Y, W, H;
2008-06-19 06:14:14 +02:00
fl_clip_box( x(), y(), w(), h(), X, Y, W, H );
/* if ( Sequence_Widget::pushed() && Sequence_Widget::pushed()->sequence() == this ) */
/* { */
/* /\* make sure the Sequence_Widget::pushed widget is above all others *\/ */
/* remove( Sequence_Widget::pushed() ); */
/* add( Sequence_Widget::pushed() ); */
/* } */
// printf( "track::draw %d,%d %dx%d\n", X,Y,W,H );
// timeline->draw_measure_lines( X, Y, W, H, color() );
2008-06-19 06:14:14 +02:00
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); ++r )
(*r)->draw_box();
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); ++r )
(*r)->draw();
fl_pop_clip();
}
#include "FL/test_press.H"
2008-04-19 06:16:21 +02:00
int
Sequence::handle ( int m )
{
/* if ( m != FL_NO_EVENT ) */
/* DMESSAGE( "%s", event_name( m ) ); */
2008-04-19 06:16:21 +02:00
switch ( m )
{
2008-05-27 05:32:35 +02:00
case FL_KEYBOARD:
case FL_SHORTCUT:
if ( Fl::test_shortcut( FL_CTRL + FL_Right ) )
{
transport->locate( next( transport->frame ) );
return 1;
}
else if ( Fl::test_shortcut( FL_CTRL + FL_Left ) )
{
transport->locate( prev( transport->frame ) );
return 1;
}
else if ( Fl::test_shortcut( FL_CTRL + ' ' ) )
{
Sequence_Widget *r = widget_at( transport->frame, y() );
if ( r )
{
if ( r->selected() )
r->deselect();
else
r->select();
}
}
else
{
switch ( Fl::event_key() )
{
case FL_Left:
case FL_Right:
case FL_Up:
case FL_Down:
/* this is a hack to override FLTK's use of arrow keys for
* focus navigation */
return timeline->handle_scroll( m );
default:
break;
}
}
if ( Sequence_Widget::belowmouse() )
return Sequence_Widget::belowmouse()->dispatch( m );
case FL_NO_EVENT:
/* garbage from overlay window */
return 0;
2008-04-19 06:16:21 +02:00
case FL_FOCUS:
Fl_Widget::handle( m );
redraw();
return 1;
2008-04-19 06:16:21 +02:00
case FL_UNFOCUS:
Fl_Widget::handle( m );
redraw();
2008-05-26 04:22:52 +02:00
return 1;
case FL_LEAVE:
2008-05-26 04:22:52 +02:00
// DMESSAGE( "leave" );
fl_cursor( FL_CURSOR_DEFAULT );
Fl_Widget::handle( m );
return 1;
case FL_DND_DRAG:
return 1;
case FL_ENTER:
2008-05-26 04:22:52 +02:00
// DMESSAGE( "enter" );
if ( Sequence_Widget::pushed() )
2008-04-19 06:16:21 +02:00
{
2008-05-07 18:42:31 +02:00
if ( Sequence_Widget::pushed()->sequence()->class_name() == class_name() )
{
/* accept objects dragged from other sequences of this type */
add( Sequence_Widget::pushed() );
redraw();
fl_cursor( FL_CURSOR_MOVE );
}
else
fl_cursor( (Fl_Cursor)1 );
2008-04-19 06:16:21 +02:00
}
else
2008-05-26 04:22:52 +02:00
if ( ! event_widget() )
fl_cursor( cursor() );
Fl_Widget::handle( m );
return 1;
case FL_DND_ENTER:
2008-04-19 06:16:21 +02:00
case FL_DND_LEAVE:
case FL_DND_RELEASE:
2008-04-19 06:16:21 +02:00
return 1;
case FL_MOVE:
{
Sequence_Widget *r = event_widget();
if ( r != Sequence_Widget::belowmouse() )
{
if ( Sequence_Widget::belowmouse() )
Sequence_Widget::belowmouse()->handle( FL_LEAVE );
2008-04-19 06:16:21 +02:00
Sequence_Widget::belowmouse( r );
if ( r )
r->handle( FL_ENTER );
}
return 1;
2008-04-19 06:16:21 +02:00
}
default:
{
Sequence_Widget *r = Sequence_Widget::pushed() ? Sequence_Widget::pushed() : event_widget();
/* if ( this == Fl::focus() ) */
/* DMESSAGE( "Sequence widget = %p", r ); */
2008-04-19 06:16:21 +02:00
if ( r )
{
int retval = r->dispatch( m );
/* DMESSAGE( "retval = %d", retval ); */
if ( m == FL_PUSH )
take_focus();
2008-05-26 04:22:52 +02:00
if ( retval )
2008-04-19 06:16:21 +02:00
{
2008-05-26 04:22:52 +02:00
if ( m == FL_PUSH )
{
if ( Sequence_Widget::pushed() )
Sequence_Widget::pushed()->handle( FL_UNFOCUS );
2008-04-19 06:16:21 +02:00
2008-05-26 04:22:52 +02:00
Sequence_Widget::pushed( r );
r->handle( FL_FOCUS );
2008-05-26 04:22:52 +02:00
}
else if ( m == FL_RELEASE )
Sequence_Widget::pushed( NULL );
2008-04-19 06:16:21 +02:00
}
Loggable::block_start();
while ( _delete_queue.size() )
{
Sequence_Widget *t = _delete_queue.front();
_delete_queue.pop();
if ( Sequence_Widget::pushed() == t )
Sequence_Widget::pushed( NULL );
if ( Sequence_Widget::belowmouse() == t )
{
Sequence_Widget::belowmouse()->handle( FL_LEAVE );
Sequence_Widget::belowmouse( NULL );
}
delete t;
}
Loggable::block_end();
if ( m == FL_PUSH )
return 1;
else
return retval;
2008-04-19 06:16:21 +02:00
}
else
{
if ( test_press( FL_BUTTON1 ) )
{
/* traditional selection model */
Sequence_Widget::select_none();
}
2008-04-19 06:16:21 +02:00
return Fl_Widget::handle( m );
}
2008-04-19 06:16:21 +02:00
}
}
}
2008-06-19 06:14:14 +02:00
2008-06-19 06:14:14 +02:00
/**********/
/* Public */
/**********/
/** calculate the length of this sequence by looking at the end of the
* least widget it contains */
/** return the length in frames of this sequence calculated from the
* right edge of the rightmost widget */
nframes_t
Sequence::length ( void ) const
{
nframes_t l = 0;
2008-06-19 06:14:14 +02:00
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); ++r )
l = max( l, (*r)->start() + (*r)->length() );
2008-06-19 06:14:14 +02:00
return l;
}
2008-06-19 06:14:14 +02:00
/** return the location of the next widget from frame /from/ */
nframes_t
Sequence::next ( nframes_t from ) const
{
for ( list <Sequence_Widget*>::const_iterator i = _widgets.begin(); i != _widgets.end(); i++ )
if ( (*i)->start() > from )
return (*i)->start();
2008-06-19 06:14:14 +02:00
if ( _widgets.size() )
return _widgets.back()->start();
else
return 0;
}
2008-06-19 06:14:14 +02:00
/** return the location of the next widget from frame /from/ */
nframes_t
Sequence::prev ( nframes_t from ) const
{
for ( list <Sequence_Widget*>::const_reverse_iterator i = _widgets.rbegin(); i != _widgets.rend(); i++ )
if ( (*i)->start() < from )
return (*i)->start();
2008-06-19 06:14:14 +02:00
if ( _widgets.size() )
return _widgets.front()->start();
else
return 0;
}
2008-06-19 06:14:14 +02:00
/** delete all selected widgets in this sequence */
void
Sequence::remove_selected ( void )
{
Loggable::block_start();
2008-06-19 06:14:14 +02:00
for ( list <Sequence_Widget *>::iterator r = _widgets.begin(); r != _widgets.end(); )
if ( (*r)->selected() )
{
Sequence_Widget *t = *r;
_widgets.erase( r++ );
delete t;
}
else
++r;
2008-06-19 06:14:14 +02:00
Loggable::block_end();
}
2008-06-19 06:14:14 +02:00
/** select all widgets intersecting with the range defined by the
* pixel coordinates X through W */
void
Sequence::select_range ( int X, int W )
{
nframes_t sts = x_to_offset( X );
nframes_t ets = sts + timeline->x_to_ts( W );
2008-06-19 06:14:14 +02:00
for ( list <Sequence_Widget *>::const_reverse_iterator r = _widgets.rbegin(); r != _widgets.rend(); ++r )
if ( ! ( (*r)->start() > ets || (*r)->start() + (*r)->length() < sts ) )
(*r)->select();
}