Update NTK.
[nondaw.git] / timeline / src / Annotation_Region.H
blobcefb6d23859ef669842c2228772222561ad73dbc
2 /*******************************************************************************/
3 /* Copyright (C) 2008 Jonathan Moore Liles                                     */
4 /*                                                                             */
5 /* This program is free software; you can redistribute it and/or modify it     */
6 /* under the terms of the GNU General Public License as published by the       */
7 /* Free Software Foundation; either version 2 of the License, or (at your      */
8 /* option) any later version.                                                  */
9 /*                                                                             */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
12 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
13 /* more details.                                                               */
14 /*                                                                             */
15 /* You should have received a copy of the GNU General Public License along     */
16 /* with This program; see the file COPYING.  If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 /*******************************************************************************/
21 #pragma once
23 // #include "Loggable.H"
24 #include "Sequence_Region.H"
27 class Annotation_Region : public Sequence_Region
30     /* not permitted */
31     Annotation_Region & operator = ( const Annotation_Region &rhs );
33     char *_label;
35 public:
37     const char *name ( void ) const { return _label; }
38     void name ( const char *s )
39         {
40             if ( _label )
41                 free( _label );
42             _label = strdup( s );
43             redraw();
44         }
46 protected:
48     virtual void get ( Log_Entry &e ) const;
49     virtual void set ( Log_Entry &e );
51     Annotation_Region ( )
52         {
53             _label = NULL;
54         }
56     Annotation_Region ( const Annotation_Region &rhs );
58 public:
60     /* for loggable */
61     LOG_CREATE_FUNC( Annotation_Region );
62     SEQUENCE_WIDGET_CLONE_FUNC( Annotation_Region );
64     Annotation_Region ( Sequence *track, nframes_t when, const char *name );
65     virtual ~Annotation_Region ( );
67     void draw_box ( void );
68     void draw ( void );
69     int handle ( int m );