non/timeline/src/Audio_Sequence.H

75 lines
2.4 KiB
C++
Raw 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
2008-04-19 06:16:21 +02:00
#include "Sequence.H"
2008-05-05 02:04:20 +02:00
#include "Audio_Region.H"
2008-04-07 12:00:16 +02:00
2008-02-21 08:17:49 +01:00
#include <FL/Fl_Input.H>
class Audio_Sequence : public Sequence
{
2008-04-20 04:15:54 +02:00
protected:
void get ( Log_Entry &e ) const;
void set ( Log_Entry &e );
Audio_Sequence ( ) : Sequence( 0 )
2008-04-20 04:15:54 +02:00
{
}
void handle_widget_change ( nframes_t start, nframes_t length );
2008-06-19 06:14:14 +02:00
void draw ( void );
int handle ( int m );
public:
2008-04-20 04:15:54 +02:00
LOG_CREATE_FUNC( Audio_Sequence );
Audio_Sequence ( Track *track, const char *name = 0 );
~Audio_Sequence ( );
2008-02-21 13:57:33 +01:00
2008-06-19 06:14:14 +02:00
Fl_Cursor cursor ( void ) const { return FL_CURSOR_DEFAULT; }
2008-03-09 18:56:17 +01:00
2012-05-31 07:58:35 +02:00
virtual Sequence * clone_empty ( void )
{
Audio_Sequence *t = new Audio_Sequence( track() );
return t;
}
virtual Sequence * clone_empty ( const char *name )
2008-03-09 18:56:17 +01:00
{
Audio_Sequence *t = new Audio_Sequence( track(), name );
2008-03-09 18:56:17 +01:00
return t;
}
2008-05-23 04:23:41 +02:00
const Audio_Region *capture_region ( void ) const;
2008-04-25 09:07:18 +02:00
2008-04-07 12:00:16 +02:00
nframes_t play ( sample_t *buf, nframes_t frame, nframes_t nframes, int channels );
2008-04-07 10:12:01 +02:00
};