non/timeline/src/Time_Sequence.H

69 lines
2.4 KiB
C++
Raw Normal View History

2008-02-21 13:57:33 +01: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-02-21 13:57:33 +01:00
#pragma once
2008-04-19 06:16:21 +02:00
#include "Sequence.H"
2008-02-21 13:57:33 +01:00
#include "Time_Point.H"
#include <list>
using std::list;
2008-04-19 06:16:21 +02:00
class Time_Sequence : public Sequence
2008-02-21 13:57:33 +01:00
{
protected:
/* not used */
2008-05-19 05:01:09 +02:00
void get ( Log_Entry & ) const { }
void set ( Log_Entry & ) { }
2008-02-21 13:57:33 +01:00
public:
Fl_Cursor cursor ( void ) const { return FL_CURSOR_DEFAULT; }
2008-04-19 06:16:21 +02:00
Time_Sequence ( int X, int Y, int W, int H ) : Sequence ( X, Y, W, H )
2008-02-21 13:57:33 +01:00
{
2008-04-27 12:33:26 +02:00
// box( FL_UP_BOX );
2008-02-21 13:57:33 +01:00
}
time_sig
time ( nframes_t when )
{
2008-04-19 06:16:21 +02:00
for ( list <Sequence_Widget *>::const_reverse_iterator i = _widgets.rbegin();
2008-02-21 13:57:33 +01:00
i != _widgets.rend(); i++ )
{
if ( (*i)->offset() < when )
return ((Time_Point*)(*i))->time();
}
return time_sig( 4, 4 );
}
void
time ( nframes_t when, int bpb, int note )
{
add( new Time_Point( when, bpb, note ) );
}
void handle_widget_change ( nframes_t start, nframes_t length );
int handle ( int m );
2008-02-21 13:57:33 +01:00
};