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. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <FL/Fl_Widget.H>
|
|
|
|
#include <FL/Fl_Group.H>
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "Loggable.H"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
2008-04-20 04:15:54 +02:00
|
|
|
class Track;
|
2008-04-19 06:16:21 +02:00
|
|
|
class Sequence_Widget;
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
/* This is the base class for all track types. */
|
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
class Sequence : public Fl_Widget, public Loggable
|
2008-04-19 06:16:21 +02:00
|
|
|
{
|
|
|
|
|
2008-05-08 03:05:49 +02:00
|
|
|
/* not permitted */
|
|
|
|
Sequence ( const Sequence &rhs );
|
|
|
|
Sequence & operator= ( const Sequence &rhs );
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
static queue <Sequence_Widget *> _delete_queue;
|
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
void init ( void );
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
protected:
|
|
|
|
|
2008-04-20 23:46:47 +02:00
|
|
|
Track *_track; /* track this sequence belongs to */
|
|
|
|
|
|
|
|
char *_name;
|
|
|
|
|
2008-04-30 23:03:58 +02:00
|
|
|
friend class Timeline; // for draw_measure
|
2008-04-19 06:16:21 +02:00
|
|
|
std::list <Sequence_Widget *> _widgets;
|
|
|
|
Sequence_Widget *event_widget ( void );
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2008-05-04 01:25:59 +02:00
|
|
|
/* welcome to C++ */
|
2008-04-25 08:34:08 +02:00
|
|
|
LOG_NAME_FUNC( Sequence );
|
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
Sequence ( Track *track=0 );
|
2008-05-08 03:05:49 +02:00
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
Sequence ( int X, int Y, int W, int H );
|
2008-04-19 06:16:21 +02:00
|
|
|
|
|
|
|
virtual ~Sequence ( );
|
|
|
|
|
2008-05-02 13:42:50 +02:00
|
|
|
/* override this to provide cursor */
|
|
|
|
virtual Fl_Cursor cursor ( void ) const = 0;
|
|
|
|
|
2008-04-26 13:58:50 +02:00
|
|
|
nframes_t x_to_offset ( int X );
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
const char * name ( void ) const { return _name; }
|
2008-04-20 23:46:47 +02:00
|
|
|
void name ( const char *s )
|
|
|
|
{
|
|
|
|
if ( _name ) free( _name );
|
|
|
|
_name = strdup( s );
|
|
|
|
label( _name );
|
|
|
|
}
|
2008-04-19 06:16:21 +02:00
|
|
|
|
|
|
|
void sort ( void );
|
|
|
|
|
2008-04-20 23:46:47 +02:00
|
|
|
Track *track ( void ) const { return _track; }
|
|
|
|
void track ( Track *t ) { _track = t; }
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
void remove ( Sequence_Widget *r );
|
|
|
|
void add ( Sequence_Widget *r );
|
|
|
|
|
|
|
|
void select_range ( int X, int W );
|
|
|
|
|
|
|
|
void remove_selected ( void );
|
|
|
|
|
|
|
|
const std::list <Sequence_Widget *> widgets ( void ) const { return _widgets; }
|
|
|
|
|
|
|
|
void queue_delete ( Sequence_Widget *r )
|
|
|
|
{
|
|
|
|
_delete_queue.push( r );
|
|
|
|
}
|
|
|
|
|
|
|
|
Sequence_Widget * overlaps ( Sequence_Widget *r );
|
|
|
|
|
|
|
|
virtual Sequence * clone ( void )
|
|
|
|
{
|
|
|
|
assert( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Sequence * clone_empty ( void )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void snap ( Sequence_Widget *r );
|
|
|
|
virtual int handle ( int m );
|
|
|
|
virtual void draw ( void );
|
|
|
|
|
|
|
|
virtual nframes_t process ( nframes_t nframes ) { return 0; }
|
|
|
|
|
|
|
|
};
|