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. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
2008-05-22 17:32:26 +02:00
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
#include "Sequence.H"
|
|
|
|
#include "Timeline.H"
|
|
|
|
|
2008-05-05 02:04:20 +02:00
|
|
|
#include "Audio_Region.H"
|
2008-04-19 06:16:21 +02:00
|
|
|
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
|
2008-04-20 23:46:47 +02:00
|
|
|
#include "Track.H"
|
2008-04-19 06:16:21 +02:00
|
|
|
|
2008-04-27 12:18:03 +02:00
|
|
|
#include "../FL/Boxtypes.H"
|
|
|
|
|
2008-05-22 22:58:36 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
queue <Sequence_Widget *> Sequence::_delete_queue;
|
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
Sequence::Sequence ( Track *track ) : Fl_Widget( 0, 0, 0, 0 ), Loggable( true )
|
2008-04-19 06:16:21 +02:00
|
|
|
{
|
2008-05-05 07:29:39 +02:00
|
|
|
init();
|
|
|
|
|
2008-04-20 04:15:54 +02:00
|
|
|
_track = track;
|
2008-04-19 06:16:21 +02:00
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
// 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-20 23:46:47 +02:00
|
|
|
|
2008-04-27 12:33:26 +02:00
|
|
|
box( FL_DOWN_BOX );
|
2008-04-27 12:41:53 +02:00
|
|
|
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-06 06:14:00 +02:00
|
|
|
void
|
|
|
|
Sequence::clear ( void )
|
2008-04-19 06:16:21 +02:00
|
|
|
{
|
2008-05-07 04:00:36 +02:00
|
|
|
for ( std::list <Sequence_Widget*>::iterator i = _widgets.begin();
|
|
|
|
i != _widgets.end(); ++i )
|
|
|
|
{
|
|
|
|
Sequence_Widget *w = *i;
|
|
|
|
|
|
|
|
*i = NULL;
|
|
|
|
|
|
|
|
delete w;
|
|
|
|
}
|
|
|
|
|
|
|
|
_widgets.clear();
|
2008-04-19 06:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-06-06 06:14:00 +02:00
|
|
|
Sequence::~Sequence ( )
|
|
|
|
{
|
|
|
|
DMESSAGE( "destroying sequence" );
|
|
|
|
|
|
|
|
if ( _name )
|
|
|
|
free( _name );
|
|
|
|
|
|
|
|
if ( _widgets.size() )
|
|
|
|
FATAL( "programming error: leaf destructor must call Sequence::clear()!" );
|
|
|
|
}
|
|
|
|
|
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-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;
|
2008-05-29 18:38:06 +02:00
|
|
|
if ( (*i)->overlaps( r ) )
|
2008-04-19 06:16:21 +02:00
|
|
|
return *i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Sequence::draw ( void )
|
|
|
|
{
|
|
|
|
|
|
|
|
if ( ! fl_not_clipped( x(), y(), w(), h() ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
fl_push_clip( x(), y(), w(), h() );
|
|
|
|
|
2008-04-23 05:40:31 +02:00
|
|
|
/* draw the box with the ends cut off. */
|
2008-04-27 20:44:20 +02:00
|
|
|
draw_box( box(), x() - Fl::box_dx( box() ) - 1, y(), w() + Fl::box_dw( box() ) + 2, h(), color() );
|
2008-04-19 06:16:21 +02:00
|
|
|
|
|
|
|
int X, Y, W, H;
|
|
|
|
|
|
|
|
fl_clip_box( x(), y(), w(), h(), X, Y, W, H );
|
|
|
|
|
2008-05-25 21:11:28 +02:00
|
|
|
/* 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() ); */
|
|
|
|
/* } */
|
2008-04-19 06:16:21 +02:00
|
|
|
|
|
|
|
// printf( "track::draw %d,%d %dx%d\n", X,Y,W,H );
|
|
|
|
|
2008-05-01 02:38:49 +02:00
|
|
|
timeline->draw_measure_lines( X, Y, W, H, color() );
|
2008-04-19 06:16:21 +02:00
|
|
|
|
2008-05-14 04:16:59 +02:00
|
|
|
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); ++r )
|
2008-04-19 06:16:21 +02:00
|
|
|
(*r)->draw_box();
|
|
|
|
|
|
|
|
|
2008-05-14 04:16:59 +02:00
|
|
|
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); ++r )
|
2008-04-19 06:16:21 +02:00
|
|
|
(*r)->draw();
|
|
|
|
|
|
|
|
fl_pop_clip();
|
2008-05-01 08:07:10 +02:00
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Sequence::remove ( Sequence_Widget *r )
|
|
|
|
{
|
2008-05-25 21:11:28 +02:00
|
|
|
timeline->wrlock();
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
_widgets.remove( r );
|
2008-05-23 00:02:39 +02:00
|
|
|
|
2008-05-25 21:11:28 +02:00
|
|
|
timeline->unlock();
|
|
|
|
|
2008-05-23 00:02:39 +02:00
|
|
|
handle_widget_change( r->start(), r->length() );
|
2008-04-19 06:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
Sequence::remove_selected ( void )
|
|
|
|
{
|
|
|
|
Loggable::block_start();
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
Loggable::block_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-28 01:47:47 +02:00
|
|
|
void
|
|
|
|
Sequence::handle_widget_change ( nframes_t start, nframes_t length )
|
|
|
|
{
|
2008-05-29 22:54:05 +02:00
|
|
|
// timeline->update_length( start + length );
|
2008-05-28 01:47:47 +02:00
|
|
|
}
|
|
|
|
|
2008-05-29 22:54:05 +02:00
|
|
|
/** calculate the length of this sequence by looking at the end of the
|
|
|
|
* least widget it contains */
|
|
|
|
nframes_t
|
|
|
|
Sequence::length ( void ) const
|
|
|
|
{
|
|
|
|
nframes_t l = 0;
|
2008-05-28 01:47:47 +02:00
|
|
|
|
2008-05-29 22:54:05 +02:00
|
|
|
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); ++r )
|
|
|
|
l = max( l, (*r)->start() + (*r)->length() );
|
2008-05-28 01:47:47 +02:00
|
|
|
|
2008-05-29 22:54:05 +02:00
|
|
|
return l;
|
|
|
|
}
|
2008-05-28 01:47:47 +02:00
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
Sequence_Widget *
|
|
|
|
Sequence::event_widget ( void )
|
|
|
|
{
|
|
|
|
nframes_t ets = timeline->xoffset + timeline->x_to_ts( Fl::event_x() - x() );
|
2008-05-29 22:54:05 +02:00
|
|
|
for ( list <Sequence_Widget *>::const_reverse_iterator r = _widgets.rbegin(); r != _widgets.rend(); ++r )
|
2008-05-14 04:15:56 +02:00
|
|
|
if ( ets > (*r)->start() && ets < (*r)->start() + (*r)->length()
|
|
|
|
&& Fl::event_y() >= (*r)->y() && Fl::event_y() <= (*r)->y() + (*r)->h() )
|
2008-04-19 06:16:21 +02:00
|
|
|
return (*r);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Sequence::select_range ( int X, int W )
|
|
|
|
{
|
2008-05-19 04:01:59 +02:00
|
|
|
nframes_t sts = x_to_offset( X );
|
2008-04-19 06:16:21 +02:00
|
|
|
nframes_t ets = sts + timeline->x_to_ts( W );
|
|
|
|
|
2008-05-29 22:54:05 +02:00
|
|
|
for ( list <Sequence_Widget *>::const_reverse_iterator r = _widgets.rbegin(); r != _widgets.rend(); ++r )
|
2008-05-07 20:43:56 +02:00
|
|
|
if ( ! ( (*r)->start() > ets || (*r)->start() + (*r)->length() < sts ) )
|
2008-04-19 06:16:21 +02:00
|
|
|
(*r)->select();
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2008-05-25 21:11:28 +02:00
|
|
|
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 );
|
|
|
|
|
|
|
|
sort();
|
2008-05-23 00:02:39 +02:00
|
|
|
|
2008-05-25 21:11:28 +02:00
|
|
|
timeline->unlock();
|
|
|
|
|
2008-05-23 00:02:39 +02:00
|
|
|
handle_widget_change( r->start(), r->length() );
|
2008-04-19 06:16:21 +02:00
|
|
|
}
|
|
|
|
|
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-04-19 06:16:21 +02:00
|
|
|
/* snap /r/ to nearest edge */
|
|
|
|
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
|
|
|
{
|
2008-05-07 20:43:56 +02:00
|
|
|
r->start( w->start() + w->length() + 1 );
|
2008-04-19 06:16:21 +02:00
|
|
|
|
2008-05-03 03:48:16 +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
|
|
|
{
|
2008-05-07 20:43:56 +02:00
|
|
|
r->start( ( w->start() - r->length() ) - 1 );
|
2008-04-19 06:16:21 +02:00
|
|
|
|
2008-05-03 03:48:16 +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 ) )
|
2008-05-07 20:43:56 +02:00
|
|
|
r->start( f );
|
2008-04-19 06:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-05-28 07:19: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();
|
|
|
|
|
|
|
|
if ( _widgets.size() )
|
|
|
|
return _widgets.back()->start();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 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();
|
|
|
|
|
|
|
|
if ( _widgets.size() )
|
|
|
|
return _widgets.front()->start();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-27 02:03:31 +02:00
|
|
|
#include "FL/event_name.H"
|
|
|
|
|
2008-05-28 07:19:14 +02:00
|
|
|
#include "Transport.H" // for locate()
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
int
|
|
|
|
Sequence::handle ( int m )
|
|
|
|
{
|
2008-05-27 02:03:31 +02:00
|
|
|
|
|
|
|
/* 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:
|
2008-05-29 08:11:35 +02:00
|
|
|
case FL_SHORTCUT:
|
2008-05-28 07:19:14 +02:00
|
|
|
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
|
2008-05-29 08:11:35 +02:00
|
|
|
{
|
|
|
|
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() )
|
2008-05-29 20:01:10 +02:00
|
|
|
return Sequence_Widget::belowmouse()->dispatch( m );
|
2008-05-27 02:03:31 +02:00
|
|
|
case FL_NO_EVENT:
|
|
|
|
/* garbage from overlay window */
|
|
|
|
return 0;
|
2008-04-19 06:16:21 +02:00
|
|
|
case FL_FOCUS:
|
|
|
|
case FL_UNFOCUS:
|
2008-05-27 02:03:31 +02:00
|
|
|
Fl_Widget::handle( m );
|
|
|
|
redraw();
|
2008-05-26 04:22:52 +02:00
|
|
|
return 1;
|
2008-04-25 05:29:28 +02:00
|
|
|
case FL_LEAVE:
|
2008-05-26 04:22:52 +02:00
|
|
|
// DMESSAGE( "leave" );
|
2008-05-02 13:42:50 +02:00
|
|
|
fl_cursor( FL_CURSOR_DEFAULT );
|
2008-05-27 02:03:31 +02:00
|
|
|
Fl_Widget::handle( m );
|
2008-05-02 13:42:50 +02:00
|
|
|
return 1;
|
2008-05-01 11:47:37 +02:00
|
|
|
case FL_DND_DRAG:
|
2008-04-25 05:29:28 +02:00
|
|
|
return 1;
|
2008-05-01 11:47:37 +02:00
|
|
|
case FL_ENTER:
|
2008-05-26 04:22:52 +02:00
|
|
|
// DMESSAGE( "enter" );
|
2008-05-01 11:47:37 +02:00
|
|
|
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() )
|
2008-05-01 11:47:37 +02:00
|
|
|
{
|
|
|
|
/* 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
|
|
|
}
|
2008-05-02 13:42:50 +02:00
|
|
|
else
|
2008-05-26 04:22:52 +02:00
|
|
|
if ( ! event_widget() )
|
|
|
|
fl_cursor( cursor() );
|
2008-05-02 13:42:50 +02:00
|
|
|
|
2008-05-27 02:03:31 +02:00
|
|
|
Fl_Widget::handle( m );
|
|
|
|
|
2008-05-02 13:42:50 +02:00
|
|
|
return 1;
|
2008-05-01 11:47:37 +02:00
|
|
|
case FL_DND_ENTER:
|
2008-04-19 06:16:21 +02:00
|
|
|
case FL_DND_LEAVE:
|
2008-05-01 11:47:37 +02:00
|
|
|
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-05-27 02:03:31 +02:00
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
Sequence_Widget::belowmouse( r );
|
|
|
|
|
|
|
|
if ( r )
|
|
|
|
r->handle( FL_ENTER );
|
|
|
|
}
|
|
|
|
|
2008-05-27 02:03:31 +02:00
|
|
|
return 1;
|
2008-04-19 06:16:21 +02:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
Sequence_Widget *r = Sequence_Widget::pushed() ? Sequence_Widget::pushed() : event_widget();
|
|
|
|
|
2008-05-27 02:03:31 +02:00
|
|
|
/* if ( this == Fl::focus() ) */
|
|
|
|
/* DMESSAGE( "Sequence widget = %p", r ); */
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
if ( r )
|
|
|
|
{
|
|
|
|
int retval = r->dispatch( m );
|
|
|
|
|
2008-05-27 02:03:31 +02:00
|
|
|
/* 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 )
|
|
|
|
{
|
2008-05-27 02:03:31 +02:00
|
|
|
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 );
|
2008-05-27 02:03:31 +02:00
|
|
|
|
|
|
|
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();
|
|
|
|
|
2008-05-27 02:03:31 +02:00
|
|
|
if ( m == FL_PUSH )
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return retval;
|
2008-04-19 06:16:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return Fl_Widget::handle( m );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|