2008-04-18 22:18:07 +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-18 22:18:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Loggable.H"
|
2008-04-19 06:16:21 +02:00
|
|
|
#include "Sequence_Point.H"
|
2008-04-18 22:18:07 +02:00
|
|
|
|
2008-04-26 14:37:25 +02:00
|
|
|
#include <FL/fl_ask.H>
|
|
|
|
|
2008-05-05 00:32:08 +02:00
|
|
|
class Annotation_Point : public Sequence_Point
|
2008-04-18 22:18:07 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2008-05-05 00:32:08 +02:00
|
|
|
// const char *class_name ( void ) { return "Annotation_Point"; }
|
2008-04-18 22:18:07 +02:00
|
|
|
|
2008-04-25 08:34:08 +02:00
|
|
|
virtual void get ( Log_Entry &e ) const
|
2008-04-18 22:18:07 +02:00
|
|
|
{
|
2008-04-20 04:15:54 +02:00
|
|
|
Sequence_Point::get( e );
|
2008-04-18 22:18:07 +02:00
|
|
|
|
2008-04-20 04:15:54 +02:00
|
|
|
e.add( ":label", _label );
|
2008-04-18 22:18:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-04-20 04:15:54 +02:00
|
|
|
set ( Log_Entry &e )
|
2008-04-18 22:18:07 +02:00
|
|
|
{
|
2008-04-20 04:15:54 +02:00
|
|
|
Sequence_Point::set( e );
|
2008-04-18 22:18:07 +02:00
|
|
|
|
2008-04-20 04:15:54 +02:00
|
|
|
for ( int i = 0; i < e.size(); ++i )
|
|
|
|
{
|
|
|
|
const char *s, *v;
|
2008-04-18 22:18:07 +02:00
|
|
|
|
2008-04-20 04:15:54 +02:00
|
|
|
e.get( i, &s, &v );
|
2008-04-18 22:18:07 +02:00
|
|
|
|
2008-04-20 04:15:54 +02:00
|
|
|
if ( ! strcmp( s, ":label" ) )
|
2008-04-18 22:18:07 +02:00
|
|
|
name( v );
|
|
|
|
}
|
|
|
|
|
2008-04-26 14:37:25 +02:00
|
|
|
// timeline->redraw();
|
2008-04-18 22:18:07 +02:00
|
|
|
}
|
|
|
|
|
2008-05-05 00:32:08 +02:00
|
|
|
Annotation_Point ( )
|
2008-04-18 22:18:07 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/* for loggable */
|
2008-05-05 00:32:08 +02:00
|
|
|
LOG_CREATE_FUNC( Annotation_Point );
|
2008-05-08 01:09:52 +02:00
|
|
|
SEQUENCE_WIDGET_CLONE_FUNC( Annotation_Point );
|
2008-04-18 22:18:07 +02:00
|
|
|
|
2008-05-07 18:42:31 +02:00
|
|
|
Annotation_Point ( Sequence *sequence, nframes_t when, const char *name )
|
2008-04-18 22:18:07 +02:00
|
|
|
{
|
2008-05-07 18:42:31 +02:00
|
|
|
_sequence = sequence;
|
2008-04-26 13:58:50 +02:00
|
|
|
|
2008-05-07 20:43:56 +02:00
|
|
|
_r->start = when;
|
2008-04-18 22:18:07 +02:00
|
|
|
|
|
|
|
_label = strdup( name );
|
|
|
|
|
|
|
|
log_create();
|
|
|
|
}
|
|
|
|
|
2008-05-08 02:04:47 +02:00
|
|
|
Annotation_Point ( const Annotation_Point &rhs ) : Sequence_Point( rhs )
|
2008-04-18 22:18:07 +02:00
|
|
|
{
|
2008-05-08 02:04:47 +02:00
|
|
|
log_create();
|
2008-04-18 22:18:07 +02:00
|
|
|
}
|
|
|
|
|
2008-05-05 00:32:08 +02:00
|
|
|
~Annotation_Point ( )
|
2008-04-18 22:18:07 +02:00
|
|
|
{
|
|
|
|
log_destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
handle ( int m )
|
|
|
|
{
|
2008-04-26 14:37:25 +02:00
|
|
|
Logger _log( this );
|
|
|
|
|
2008-05-06 03:04:48 +02:00
|
|
|
if ( m == FL_PUSH && Fl::test_shortcut( FL_BUTTON3 ) && ! Fl::event_shift() )
|
2008-04-26 14:37:25 +02:00
|
|
|
{
|
|
|
|
const char *s = fl_input( "New name for mark:", name() );
|
|
|
|
|
|
|
|
if ( s )
|
|
|
|
name( s );
|
|
|
|
|
2008-05-06 02:01:01 +02:00
|
|
|
return 0;
|
2008-04-26 14:37:25 +02:00
|
|
|
}
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
int r = Sequence_Widget::handle( m );
|
2008-04-18 22:18:07 +02:00
|
|
|
|
|
|
|
if ( m == FL_RELEASE )
|
|
|
|
{
|
2008-05-07 18:42:31 +02:00
|
|
|
sequence()->sort();
|
2008-04-18 22:18:07 +02:00
|
|
|
timeline->redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|