non/Timeline/Timeline.H

187 lines
5.2 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. */
/*******************************************************************************/
#pragma once
#include <FL/Fl_Scroll.H>
#include <FL/Fl_Pack.H>
2008-02-20 07:11:33 +01:00
#include <FL/Fl_Scrollbar.H>
2008-02-21 17:20:36 +01:00
#include <FL/Fl_Widget.H>
#include <FL/fl_draw.H>
2008-02-23 06:11:37 +01:00
#include "Scalebar.H"
/* FIXME: this class needs a lot of cleaning up. Too many public
* members etc. */
/* #include "Audio_File.H" // just for nframes_t */
#include "types.h"
2008-02-19 07:22:42 +01:00
#include <math.h>
2008-02-19 07:22:42 +01:00
#include <assert.h>
2008-02-17 00:28:48 +01:00
class Timeline;
2008-02-21 17:20:36 +01:00
extern Timeline *timeline;
2008-04-19 06:16:21 +02:00
#include "Sequence.H"
2008-04-19 06:16:21 +02:00
class Tempo_Sequence;
class Time_Sequence;
class Ruler_Sequence;
class Track;
2008-03-05 20:06:41 +01:00
// disables double-buffering to make unnecessary redrawing more apparent
// #define DEBUG_TIMELINE_DRAWING
#ifndef DEBUG_TIMELINE_DRAWING
#include <Fl/Fl_Overlay_Window.H>
#else
#include <FL/Fl_Single_Window.H>
#define Fl_Overlay_Window Fl_Single_Window
#define redraw_overlay()
#endif
2008-03-05 20:06:41 +01:00
struct Rectangle
{
int x;
int y;
int w;
int h;
Rectangle ( ) : x( 0 ), y( 0 ), w( 0 ), h( 0 ) {}
Rectangle ( int X, int Y, int W, int H ) : x( X ), y( Y ), w( W ), h( H ) {}
};
2008-04-27 14:04:37 +02:00
#include "Engine.H" // for sample_rate()
// class Engine;
#include "RWLock.H"
class Timeline : public Fl_Overlay_Window, public RWLock
2008-02-21 17:20:36 +01:00
{
2008-02-28 19:34:10 +01:00
static void draw_clip ( void * v, int X, int Y, int W, int H );
2008-02-26 05:58:15 +01:00
int _old_xposition;
int _old_yposition;
2008-02-20 16:43:14 +01:00
2008-03-05 20:06:41 +01:00
Rectangle _selection;
Fl_Scroll *scroll;
Fl_Pack *tracks;
Fl_Pack *rulers;
Scalebar *hscroll;
2008-02-26 05:58:15 +01:00
Fl_Scrollbar *vscroll;
2008-02-16 11:30:56 +01:00
2008-03-06 23:45:23 +01:00
2008-04-28 07:11:47 +02:00
void adjust_vscroll ( void );
2008-03-06 23:45:23 +01:00
static void cb_scroll ( Fl_Widget *w, void *v );
void cb_scroll ( Fl_Widget *w );
2008-04-27 17:45:49 +02:00
int _fpp; /* frames per pixel, power of two */
2008-03-07 00:21:57 +01:00
nframes_t _length;
2008-03-06 23:45:23 +01:00
2008-04-24 04:23:29 +02:00
nframes_t p1, p2; /* cursors */
2008-03-07 00:21:57 +01:00
public:
2008-02-17 00:28:48 +01:00
2008-04-26 18:07:43 +02:00
enum snap_e {
Bars,
Beats,
None
};
2008-04-25 04:48:44 +02:00
static bool draw_with_measure_lines;
2008-04-26 18:07:43 +02:00
static snap_e snap_to;
2008-04-27 20:56:20 +02:00
static bool snap_magnetic;
2008-04-25 04:48:44 +02:00
2008-04-19 06:16:21 +02:00
Tempo_Sequence *tempo_track;
Time_Sequence *time_track;
Ruler_Sequence *ruler_track;
2008-02-20 07:11:33 +01:00
nframes_t xoffset;
2008-03-07 00:29:28 +01:00
int _yposition;
2008-02-26 05:58:15 +01:00
2008-02-21 17:20:36 +01:00
Timeline ( int X, int Y, int W, int H, const char *L=0 );
2008-04-27 17:45:49 +02:00
nframes_t fpp ( void ) const { return 1 << _fpp; }
2008-03-07 00:21:57 +01:00
nframes_t length ( void ) const { return _length; }
2008-04-27 14:04:37 +02:00
nframes_t sample_rate ( void ) const { return engine->sample_rate(); }
2008-04-27 17:45:49 +02:00
int ts_to_x( nframes_t ts ) const { return ts >> _fpp; }
nframes_t x_to_ts ( int x ) const { return x << _fpp; }
2008-02-28 19:34:10 +01:00
float beats_per_minute ( nframes_t when ) const;
int beats_per_bar ( nframes_t when ) const;
2008-02-28 19:34:10 +01:00
void beats_per_minute ( nframes_t when, float bpm );
2008-02-28 21:36:46 +01:00
int nearest_line ( int ix );
void draw_measure_lines ( int X, int Y, int W, int H, Fl_Color color );
void draw_measure_BBT ( int X, int Y, int W, int H, Fl_Color color );
void draw_measure ( int X, int Y, int W, int H, Fl_Color color, bool BBT );
2008-03-07 00:29:28 +01:00
void xposition ( int X );
void yposition ( int Y );
2008-04-24 04:23:29 +02:00
void draw_cursor ( nframes_t frame, Fl_Color color );
2008-04-12 21:50:36 +02:00
void draw_playhead ( void );
void redraw_playhead ( void );
2008-04-23 04:22:46 +02:00
void resize ( int X, int Y, int W, int H );
2008-02-28 19:34:10 +01:00
void draw ( void );
2008-03-01 05:57:53 +01:00
void draw_overlay ( void );
2008-02-28 19:34:10 +01:00
int handle ( int m );
2008-04-12 21:50:36 +02:00
static void update_cb ( void *arg );
2008-02-20 13:45:02 +01:00
2008-03-05 20:06:41 +01:00
void select( const Rectangle &r );
2008-04-19 06:16:21 +02:00
void add_track ( Track *track );
void remove_track ( Track *track );
2008-04-19 04:26:27 +02:00
int total_input_buffer_percent ( void );
int total_output_buffer_percent ( void );
2008-04-25 08:34:08 +02:00
bool record ( void );
void stop ( void );
void zoom ( float secs );
void zoom_in ( void );
void zoom_out ( void );
private:
friend class Engine; // FIXME: only Engine::process() needs to be friended.x
Track * track_by_name ( const char *name );
2008-04-19 07:09:42 +02:00
char * get_unique_track_name ( const char *name );
/* Engine */
nframes_t process ( nframes_t nframes );
void seek ( nframes_t frame );
int seek_pending ( void );
};