non/timeline/src/Annotation_Point.H

121 lines
3.2 KiB
C++
Raw Permalink Normal View History

/*******************************************************************************/
/* 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
#pragma once
#include "Loggable.H"
2008-04-19 06:16:21 +02:00
#include "Sequence_Point.H"
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
{
protected:
// const char *class_label ( void ) { return "Annotation_Point"; }
2008-04-25 08:34:08 +02:00
virtual void get ( Log_Entry &e ) const
{
2008-04-20 04:15:54 +02:00
Sequence_Point::get( e );
2008-04-20 04:15:54 +02:00
e.add( ":label", _label );
}
void
2008-04-20 04:15:54 +02:00
set ( Log_Entry &e )
{
2008-04-20 04:15:54 +02:00
Sequence_Point::set( e );
2008-04-20 04:15:54 +02:00
for ( int i = 0; i < e.size(); ++i )
{
const char *s, *v;
2008-04-20 04:15:54 +02:00
e.get( i, &s, &v );
2008-04-20 04:15:54 +02:00
if ( ! strcmp( s, ":label" ) )
label( v );
}
2008-04-26 14:37:25 +02:00
// timeline->redraw();
}
2008-05-05 00:32:08 +02:00
Annotation_Point ( )
{
}
public:
/* for loggable */
2008-05-05 00:32:08 +02:00
LOG_CREATE_FUNC( Annotation_Point );
SEQUENCE_WIDGET_CLONE_FUNC( Annotation_Point );
Annotation_Point ( Sequence *sequence, nframes_t when, const char *label )
{
_sequence = NULL;
2008-04-26 13:58:50 +02:00
_r->start = when;
_label = strdup( label );
sequence->add( this );
log_create();
}
Annotation_Point ( const Annotation_Point &rhs ) : Sequence_Point( rhs )
{
log_create();
}
2008-05-05 00:32:08 +02:00
~Annotation_Point ( )
{
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 label for mark:", label() );
2008-04-26 14:37:25 +02:00
if ( s )
label( s );
2008-04-26 14:37:25 +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 );
if ( m == FL_RELEASE )
{
2008-05-07 18:42:31 +02:00
sequence()->sort();
2012-06-07 08:49:18 +02:00
redraw();
}
return r;
}
};