2008-02-16 08:21:15 +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. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <FL/Fl_Scroll.H>
|
2008-02-17 10:00:38 +01:00
|
|
|
#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>
|
2008-03-01 05:57:53 +01:00
|
|
|
#include <Fl/Fl_Overlay_Window.H>
|
2008-02-16 08:21:15 +01:00
|
|
|
|
2008-02-23 06:11:37 +01:00
|
|
|
#include "Scalebar.H"
|
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
#include "Audio_File.H" // just for nframes_t
|
2008-02-19 07:22:42 +01:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
2008-02-17 00:28:48 +01:00
|
|
|
|
2008-02-20 13:45:02 +01:00
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
|
2008-02-21 11:01:25 +01:00
|
|
|
class Timeline;
|
2008-02-21 17:20:36 +01:00
|
|
|
extern Timeline *timeline;
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
#include "Track.H"
|
2008-02-21 11:39:13 +01:00
|
|
|
// #include "Tempo_Track.H"
|
|
|
|
|
|
|
|
class Tempo_Track;
|
2008-02-21 13:57:33 +01:00
|
|
|
class Time_Track;
|
2008-02-21 11:39:13 +01:00
|
|
|
|
2008-02-21 11:01:25 +01:00
|
|
|
// #include "Tempo_Point.H"
|
|
|
|
// #include "Region.H"
|
|
|
|
|
2008-02-20 16:43:14 +01:00
|
|
|
#include <list>
|
|
|
|
using std::list;
|
|
|
|
|
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-03-06 23:45:23 +01:00
|
|
|
class Timeline : public Fl_Overlay_Window
|
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;
|
|
|
|
|
2008-03-01 06:42:03 +01:00
|
|
|
bool _enable_measure_lines;
|
|
|
|
|
2008-02-20 16:43:14 +01:00
|
|
|
enum snap_flags_e {
|
|
|
|
SNAP_TO_REGION,
|
|
|
|
SNAP_TO_BAR,
|
|
|
|
SNAP_TO_BEAT
|
|
|
|
} snap_to;
|
|
|
|
|
2008-02-16 08:21:15 +01:00
|
|
|
Fl_Scroll *scroll;
|
2008-02-17 10:00:38 +01:00
|
|
|
Fl_Pack *tracks;
|
2008-02-21 13:57:33 +01:00
|
|
|
Fl_Pack *rulers;
|
2008-02-26 05:58:15 +01:00
|
|
|
Scalebar *hscroll;
|
|
|
|
Fl_Scrollbar *vscroll;
|
2008-02-16 11:30:56 +01:00
|
|
|
|
2008-02-21 11:39:13 +01:00
|
|
|
Tempo_Track *tempo_track;
|
2008-02-21 13:57:33 +01:00
|
|
|
Time_Track *time_track;
|
2008-02-21 11:01:25 +01:00
|
|
|
|
2008-03-06 23:45:23 +01:00
|
|
|
|
|
|
|
static void cb_scroll ( Fl_Widget *w, void *v );
|
|
|
|
void cb_scroll ( Fl_Widget *w );
|
|
|
|
|
2008-03-07 00:21:57 +01:00
|
|
|
float _fpp; /* frames per pixel */
|
|
|
|
nframes_t _sample_rate;
|
|
|
|
nframes_t _length;
|
|
|
|
|
2008-03-06 23:45:23 +01:00
|
|
|
|
2008-03-07 00:21:57 +01:00
|
|
|
public:
|
2008-02-17 00:28:48 +01:00
|
|
|
|
|
|
|
|
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-03-07 00:21:57 +01:00
|
|
|
float fpp ( void ) const { return _fpp; }
|
|
|
|
nframes_t length ( void ) const { return _length; }
|
|
|
|
nframes_t sample_rate ( void ) const { return _sample_rate; }
|
|
|
|
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
|
|
|
|
2008-02-21 11:39:13 +01:00
|
|
|
float beats_per_minute ( nframes_t when ) const;
|
2008-02-28 17:37:02 +01:00
|
|
|
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 );
|
|
|
|
|
2008-02-21 11:39:13 +01:00
|
|
|
void draw_measure_lines ( int X, int Y, int W, int H, Fl_Color color );
|
2008-03-07 00:29:28 +01:00
|
|
|
void xposition ( int X );
|
|
|
|
void yposition ( int Y );
|
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-02-20 13:45:02 +01:00
|
|
|
|
2008-03-05 20:06:41 +01:00
|
|
|
void select( const Rectangle &r );
|
|
|
|
|
2008-02-16 08:21:15 +01:00
|
|
|
};
|