2008-03-01 01:06:05 +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. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef Track_Header_H
|
|
|
|
#define Track_Header_H
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include "Track.H"
|
|
|
|
#include <FL/Fl_Group.H>
|
|
|
|
#include <FL/Fl_Input.H>
|
|
|
|
#include <FL/Fl_Button.H>
|
|
|
|
#include <FL/Fl_Menu_Button.H>
|
|
|
|
#include <FL/Fl_Pack.H>
|
2008-03-01 15:23:59 +01:00
|
|
|
#include <FL/Fl_Box.H>
|
2008-03-01 01:06:05 +01:00
|
|
|
|
|
|
|
#include "Loggable.H"
|
|
|
|
|
|
|
|
class Track_Header : public Fl_Group, public Loggable
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2008-03-01 02:30:20 +01:00
|
|
|
Track_Header ( int X, int Y, int W, int H, const char *L = 0 );
|
|
|
|
~Track_Header ( );
|
2008-03-01 01:06:05 +01:00
|
|
|
|
|
|
|
private:
|
2008-03-01 02:30:20 +01:00
|
|
|
|
2008-03-01 01:06:05 +01:00
|
|
|
Track * _track;
|
|
|
|
|
2008-03-01 02:30:20 +01:00
|
|
|
char *_name;
|
|
|
|
|
|
|
|
bool _selected;
|
|
|
|
|
2008-03-01 15:23:59 +01:00
|
|
|
int _size;
|
|
|
|
|
2008-03-03 19:59:05 +01:00
|
|
|
enum { AUDIO } _type;
|
|
|
|
|
2008-03-01 01:06:05 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
Fl_Input * name_field;
|
|
|
|
Fl_Button *record_button;
|
|
|
|
Fl_Button *mute_button;
|
|
|
|
Fl_Button *solo_button;
|
|
|
|
Fl_Menu_Button *take_menu;
|
2008-03-01 15:23:59 +01:00
|
|
|
Fl_Group *controls;
|
2008-03-01 01:06:05 +01:00
|
|
|
Fl_Pack *takes;
|
|
|
|
|
|
|
|
const char *class_name ( void ) { return "Track_Header"; }
|
|
|
|
|
|
|
|
void set ( char **sa )
|
|
|
|
{
|
2008-03-01 02:30:20 +01:00
|
|
|
for ( int i = 0; sa[i]; ++i )
|
|
|
|
{
|
|
|
|
char *s = sa[i];
|
|
|
|
|
|
|
|
strtok( s, " " );
|
|
|
|
|
|
|
|
char *v = s + strlen( s ) + 1;
|
|
|
|
|
|
|
|
if ( *v == '"' )
|
|
|
|
{
|
|
|
|
v++;
|
|
|
|
v[ strlen( v ) - 2 ] = '\0';
|
|
|
|
}
|
|
|
|
|
2008-03-01 15:23:59 +01:00
|
|
|
if ( ! strcmp( s, ":h" ) )
|
|
|
|
{
|
|
|
|
size( atoi( v ) );
|
|
|
|
|
|
|
|
Fl_Widget::size( w(), height() );
|
|
|
|
}
|
2008-03-01 02:30:20 +01:00
|
|
|
else
|
2008-03-01 15:23:59 +01:00
|
|
|
if ( ! strcmp( s, ":selected" ) )
|
|
|
|
_selected = atoi( v );
|
2008-03-01 02:30:20 +01:00
|
|
|
else
|
2008-03-01 15:23:59 +01:00
|
|
|
if ( ! strcmp( s, ":name" ) )
|
2008-03-01 02:30:20 +01:00
|
|
|
{
|
2008-03-01 15:23:59 +01:00
|
|
|
_name = strdup( v );
|
|
|
|
name_field->value( _name );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( ! strcmp( s, ":track" ) )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
sscanf( v, "%X", &i );
|
|
|
|
Track *t = (Track*)Loggable::find( i );
|
2008-03-01 02:30:20 +01:00
|
|
|
|
2008-03-01 15:23:59 +01:00
|
|
|
assert( t );
|
2008-03-01 02:30:20 +01:00
|
|
|
|
2008-03-01 15:23:59 +01:00
|
|
|
_track = t;
|
|
|
|
}
|
2008-03-01 02:30:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
free( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
free( sa );
|
|
|
|
|
2008-03-01 01:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
char ** get ( void )
|
|
|
|
{
|
2008-03-01 15:23:59 +01:00
|
|
|
char **sa = (char**)malloc( sizeof( char* ) * (1 + 4) );
|
2008-03-01 02:30:20 +01:00
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
asprintf( &sa[ i++ ], ":name \"%s\"", _name ? _name : "" );
|
|
|
|
asprintf( &sa[ i++ ], ":track 0x%X", _track ? _track->id() : 0 );
|
|
|
|
asprintf( &sa[ i++ ], ":selected %d", _selected );
|
2008-03-01 15:23:59 +01:00
|
|
|
asprintf( &sa[ i++ ], ":h %d", size() );
|
2008-03-01 02:30:20 +01:00
|
|
|
// asprintf( &sa[ i++ ], ":gain %f", _scale );
|
|
|
|
|
|
|
|
sa[ i ] = NULL;
|
|
|
|
|
|
|
|
return sa;
|
2008-03-01 01:06:05 +01:00
|
|
|
}
|
|
|
|
|
2008-03-01 15:23:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* for loggable */
|
|
|
|
static Loggable *
|
|
|
|
create ( char **sa )
|
|
|
|
{
|
|
|
|
Track_Header *r = new Track_Header( 0, 0, 1, 1 );
|
|
|
|
|
|
|
|
r->set( sa );
|
|
|
|
|
|
|
|
return (Loggable *)r;
|
|
|
|
}
|
|
|
|
|
2008-03-01 05:38:24 +01:00
|
|
|
void
|
|
|
|
draw ( void )
|
|
|
|
{
|
|
|
|
if ( _selected )
|
|
|
|
{
|
|
|
|
Fl_Color c = color();
|
|
|
|
|
|
|
|
color( FL_RED );
|
|
|
|
|
|
|
|
Fl_Group::draw();
|
|
|
|
|
|
|
|
color( c );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Fl_Group::draw();
|
|
|
|
}
|
|
|
|
|
2008-03-01 15:23:59 +01:00
|
|
|
int size ( void ) const { return _size; }
|
|
|
|
|
|
|
|
void size ( int v )
|
|
|
|
{
|
|
|
|
if ( v < 0 || v > 3 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
_size = v;
|
|
|
|
Fl_Group::size( w(), height() );
|
|
|
|
if ( _track )
|
|
|
|
_track->size( _track->w(), height() );
|
|
|
|
|
|
|
|
if ( _size == 0 )
|
|
|
|
controls->hide();
|
|
|
|
else
|
|
|
|
controls->show();
|
|
|
|
|
|
|
|
parent()->redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
int height ( void ) const
|
|
|
|
{
|
|
|
|
static int table[] = { 30, 80, 150, 300 };
|
|
|
|
|
|
|
|
return table[ _size ];
|
|
|
|
}
|
|
|
|
|
2008-03-01 05:38:24 +01:00
|
|
|
const char * name ( void ) const { return _name; }
|
|
|
|
bool mute ( void ) const { return mute_button->value(); }
|
|
|
|
bool solo ( void ) const { return solo_button->value(); }
|
|
|
|
bool arm ( void ) const { return record_button->value(); }
|
|
|
|
bool selected ( void ) const { return _selected; }
|
|
|
|
|
2008-03-01 02:30:20 +01:00
|
|
|
static void cb_input_field ( Fl_Widget *w, void *v );
|
|
|
|
void cb_input_field ( void );
|
|
|
|
|
2008-03-01 01:06:05 +01:00
|
|
|
static int width();
|
|
|
|
|
|
|
|
void track( Track * t );
|
2008-03-03 19:59:05 +01:00
|
|
|
Track * track ( void ) { return _track; }
|
2008-03-01 01:06:05 +01:00
|
|
|
|
2008-03-01 15:23:59 +01:00
|
|
|
int handle ( int m )
|
|
|
|
{
|
|
|
|
switch ( m )
|
|
|
|
{
|
|
|
|
case FL_MOUSEWHEEL:
|
|
|
|
{
|
|
|
|
|
|
|
|
if ( ! Fl::event_shift() )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
int d = Fl::event_dy();
|
|
|
|
|
|
|
|
printf( "%d\n", d );
|
|
|
|
|
|
|
|
if ( d < 0 )
|
|
|
|
size( size() - 1 );
|
|
|
|
else
|
|
|
|
size( size() + 1 );
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return Fl_Group::handle( m );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-01 01:06:05 +01:00
|
|
|
};
|
|
|
|
#endif
|