2008-04-12 21:50:36 +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. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
2008-05-22 17:32:26 +02:00
|
|
|
|
2008-04-12 21:50:36 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <jack/transport.h>
|
|
|
|
#include "types.h"
|
|
|
|
|
2008-04-23 00:38:59 +02:00
|
|
|
#include "Timeline.H"
|
|
|
|
|
2008-04-22 04:47:29 +02:00
|
|
|
#include <FL/Fl_Pack.H>
|
|
|
|
#include <FL/Fl_Button.H>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
struct Transport : public jack_position_t, public Fl_Pack
|
2008-04-12 21:50:36 +02:00
|
|
|
{
|
2008-04-22 04:47:29 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2008-06-10 04:14:43 +02:00
|
|
|
static void cb_button ( Fl_Widget *w, void *arg );
|
|
|
|
void cb_button ( Fl_Widget *w );
|
|
|
|
|
2008-05-08 03:05:49 +02:00
|
|
|
/* not permitted */
|
|
|
|
Transport ( const Transport &rhs );
|
|
|
|
Transport & operator = ( const Transport &rhs );
|
|
|
|
|
2008-04-22 04:47:29 +02:00
|
|
|
Fl_Button *_home_button;
|
2008-04-23 00:38:59 +02:00
|
|
|
Fl_Button *_end_button;
|
2008-04-22 04:47:29 +02:00
|
|
|
Fl_Button *_play_button;
|
|
|
|
Fl_Button *_record_button;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2008-06-10 04:14:43 +02:00
|
|
|
Transport ( int X, int Y, int W, int H, const char *L=0 );
|
|
|
|
|
2008-07-26 08:49:18 +02:00
|
|
|
bool rec_enabled ( void ) const;
|
2008-06-10 04:14:43 +02:00
|
|
|
|
|
|
|
void toggle_record ( void );
|
|
|
|
int handle ( int m );
|
2008-04-27 05:50:58 +02:00
|
|
|
|
2008-04-12 21:50:36 +02:00
|
|
|
bool rolling;
|
2008-05-01 08:47:49 +02:00
|
|
|
bool recording;
|
2008-04-12 21:50:36 +02:00
|
|
|
|
|
|
|
void poll ( void );
|
2008-04-22 02:52:59 +02:00
|
|
|
void locate ( nframes_t frame );
|
2008-04-22 04:15:32 +02:00
|
|
|
void start ( void );
|
|
|
|
void stop ( void );
|
|
|
|
void toggle ( void );
|
2008-04-12 21:50:36 +02:00
|
|
|
};
|
|
|
|
|
2008-04-22 04:47:29 +02:00
|
|
|
extern Transport* transport;
|