2008-05-01 07:26:57 +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-06-18 06:01:22 +02:00
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
|
|
2008-05-01 07:26:57 +02:00
|
|
|
|
#include "Control_Point.H"
|
|
|
|
|
|
2008-06-18 06:01:22 +02:00
|
|
|
|
|
2008-05-18 07:09:18 +02:00
|
|
|
|
|
2008-05-01 07:26:57 +02:00
|
|
|
|
Control_Point::Control_Point ( Sequence *t, nframes_t when, float y )
|
|
|
|
|
{
|
2008-05-07 18:42:31 +02:00
|
|
|
|
_sequence = t;
|
2008-05-01 07:26:57 +02:00
|
|
|
|
_y = y;
|
2008-05-07 20:43:56 +02:00
|
|
|
|
_r->start = when;
|
2008-05-01 07:26:57 +02:00
|
|
|
|
_box_color = FL_WHITE;
|
|
|
|
|
|
|
|
|
|
log_create();
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-08 02:04:47 +02:00
|
|
|
|
Control_Point::Control_Point ( const Control_Point &rhs ) : Sequence_Point( rhs )
|
2008-05-01 07:26:57 +02:00
|
|
|
|
{
|
|
|
|
|
_y = rhs._y;
|
2008-05-08 02:04:47 +02:00
|
|
|
|
|
|
|
|
|
log_create();
|
2008-05-01 07:26:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Control_Point::get ( Log_Entry &e ) const
|
|
|
|
|
{
|
|
|
|
|
Sequence_Point::get( e );
|
|
|
|
|
|
|
|
|
|
e.add( ":y", _y );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Control_Point::set ( Log_Entry &e )
|
|
|
|
|
{
|
|
|
|
|
for ( int i = 0; i < e.size(); ++i )
|
|
|
|
|
{
|
|
|
|
|
const char *s, *v;
|
|
|
|
|
|
|
|
|
|
e.get( i, &s, &v );
|
|
|
|
|
|
|
|
|
|
if ( ! strcmp( s, ":y" ) )
|
|
|
|
|
_y = atof( v );
|
|
|
|
|
|
|
|
|
|
timeline->redraw();
|
|
|
|
|
|
|
|
|
|
// _make_label();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Sequence_Point::set( e );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Control_Point::draw_box ( void )
|
|
|
|
|
{
|
|
|
|
|
if ( selected() )
|
|
|
|
|
{
|
|
|
|
|
fl_color( selection_color() );
|
|
|
|
|
fl_pie( x(), y(), w(), h(), 0, 360 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fl_color( box_color() );
|
|
|
|
|
|
|
|
|
|
fl_arc( x(), y(), w(), h(), 0, 360 );
|
2008-12-27 22:43:50 +01:00
|
|
|
|
|
|
|
|
|
if ( this == Sequence_Widget::belowmouse() ||
|
|
|
|
|
this == Sequence_Widget::pushed() )
|
|
|
|
|
{
|
|
|
|
|
char val[10];
|
|
|
|
|
snprintf( val, sizeof( val ), "%+.2f", 1.0 - _y * 2 );
|
|
|
|
|
|
|
|
|
|
draw_label( val, (Fl_Align)( FL_ALIGN_TOP | FL_ALIGN_LEFT ), FL_FOREGROUND_COLOR );
|
|
|
|
|
}
|
2008-05-01 07:26:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
Control_Point::handle ( int m )
|
|
|
|
|
{
|
|
|
|
|
int r = Sequence_Widget::handle( m );
|
|
|
|
|
|
|
|
|
|
switch ( m )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
case FL_RELEASE:
|
2008-05-07 18:42:31 +02:00
|
|
|
|
sequence()->sort();
|
2008-05-01 07:26:57 +02:00
|
|
|
|
redraw();
|
|
|
|
|
break;
|
2008-12-27 22:43:50 +01:00
|
|
|
|
case FL_ENTER:
|
|
|
|
|
case FL_LEAVE:
|
|
|
|
|
redraw();
|
|
|
|
|
break;
|
2008-05-01 07:26:57 +02:00
|
|
|
|
case FL_DRAG:
|
|
|
|
|
{
|
2008-05-07 18:42:31 +02:00
|
|
|
|
sequence()->sort();
|
2008-05-01 07:26:57 +02:00
|
|
|
|
|
2008-12-28 07:27:43 +01:00
|
|
|
|
if ( nselected() > 1 )
|
|
|
|
|
// only allow horizontal movement when part of a selection...
|
2008-05-01 07:26:57 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
int Y = Fl::event_y() - parent()->y();
|
|
|
|
|
|
|
|
|
|
if ( Y >= 0 && Y < parent()->h() )
|
|
|
|
|
{
|
|
|
|
|
_y = (float)Y / parent()->h();
|
|
|
|
|
redraw();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|