2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2009 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. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
/* This is the main mixer group. It contains and manages Mixer_Strips. */
|
2010-01-24 22:54:32 +01:00
|
|
|
#include "const.h"
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
#include "Mixer.H"
|
|
|
|
#include "Mixer_Strip.H"
|
|
|
|
|
|
|
|
#include <FL/Fl_Pack.H>
|
|
|
|
#include <FL/Fl_Scroll.H>
|
2009-12-28 06:25:28 +01:00
|
|
|
#include <FL/Fl_Menu_Bar.H>
|
2010-01-12 03:31:15 +01:00
|
|
|
#include <FL/fl_ask.H>
|
2010-01-24 03:45:53 +01:00
|
|
|
#include <FL/Fl.H>
|
2010-01-23 19:22:33 +01:00
|
|
|
#include <FL/Fl_File_Chooser.H>
|
2010-01-12 03:31:15 +01:00
|
|
|
#include "New_Project_Dialog.H"
|
2009-12-25 01:59:39 +01:00
|
|
|
#include "Engine/Engine.H"
|
2010-01-20 07:54:35 +01:00
|
|
|
#include "FL/Fl_Flowpack.H"
|
2009-12-28 06:25:28 +01:00
|
|
|
#include "Project.H"
|
2010-01-24 03:45:53 +01:00
|
|
|
#include "FL/Fl_Menu_Settings.H"
|
2010-01-24 22:54:32 +01:00
|
|
|
#include "About_Dialog.H"
|
|
|
|
|
|
|
|
#include "util/file.h"
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
const double STATUS_UPDATE_FREQ = 0.2f;
|
|
|
|
|
2010-01-24 03:45:53 +01:00
|
|
|
extern char *user_config_dir;
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
#include "util/debug.h"
|
|
|
|
|
|
|
|
static void update_cb( void *v ) {
|
|
|
|
Fl::repeat_timeout( STATUS_UPDATE_FREQ, update_cb, v );
|
|
|
|
|
|
|
|
((Mixer*)v)->update();
|
|
|
|
}
|
|
|
|
|
2010-01-12 03:31:15 +01:00
|
|
|
|
|
|
|
void Mixer::cb_menu(Fl_Widget* o) {
|
|
|
|
Fl_Menu_Bar *menu = (Fl_Menu_Bar*)o;
|
|
|
|
|
|
|
|
/* const Fl_Menu_Item *mi = &menu->menu()[menu->value()]; */
|
|
|
|
|
|
|
|
char picked[256];
|
|
|
|
// const char *picked = menu->text();
|
|
|
|
|
|
|
|
menu->item_pathname( picked, sizeof( picked ) );
|
|
|
|
|
|
|
|
if (! strcmp( picked, "&Project/&New") )
|
|
|
|
{
|
|
|
|
DMESSAGE( "New project" );
|
|
|
|
const char *templates[] = { "Default", NULL };
|
|
|
|
|
|
|
|
char *default_path;
|
|
|
|
char *selected_template;
|
|
|
|
|
2010-01-24 22:54:53 +01:00
|
|
|
read_line( user_config_dir, "default_path", &default_path );
|
2010-01-12 03:31:15 +01:00
|
|
|
|
|
|
|
char *path = new_project_chooser( templates, &default_path, &selected_template );
|
|
|
|
|
2010-01-24 22:54:53 +01:00
|
|
|
if ( path )
|
|
|
|
{
|
|
|
|
if ( ! Project::create( path, selected_template ) )
|
|
|
|
fl_alert( "Error creating project!" );
|
|
|
|
free( path );
|
|
|
|
free( selected_template );
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
|
2010-01-24 22:54:53 +01:00
|
|
|
if ( default_path )
|
|
|
|
{
|
|
|
|
write_line( user_config_dir, "default_path", default_path );
|
|
|
|
free( default_path );
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
|
|
|
|
}
|
2010-01-23 19:22:33 +01:00
|
|
|
else if (! strcmp( picked, "&Project/&Open" ) )
|
|
|
|
{
|
|
|
|
char *path = NULL;
|
|
|
|
|
|
|
|
// read_line( user_config_dir, "default_path", &path );
|
|
|
|
|
|
|
|
const char *name = fl_dir_chooser( "Open Project", path, NULL );
|
|
|
|
|
|
|
|
free( path );
|
|
|
|
|
|
|
|
mixer->hide();
|
|
|
|
|
|
|
|
if ( int err = Project::open( name ) )
|
|
|
|
{
|
|
|
|
fl_alert( "Error opening project: %s", Project::errstr( err ) );
|
|
|
|
mixer->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
mixer->show();
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
else if (! strcmp( picked, "&Project/&Save" ) )
|
|
|
|
{
|
|
|
|
Project::save();
|
|
|
|
}
|
2010-01-20 07:54:35 +01:00
|
|
|
else if (! strcmp( picked, "&Project/&Quit") )
|
2010-01-12 06:31:02 +01:00
|
|
|
{
|
|
|
|
quit();
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
else if ( !strcmp( picked, "&Mixer/&Add Strip" ) )
|
|
|
|
{
|
|
|
|
new_strip();
|
|
|
|
}
|
2010-01-23 06:11:00 +01:00
|
|
|
else if ( !strcmp( picked, "&Mixer/Add &N Strips" ) )
|
|
|
|
{
|
|
|
|
const char *s = fl_input( "Enter number of strips to add" );
|
|
|
|
|
|
|
|
if ( s )
|
|
|
|
{
|
|
|
|
for ( int i = atoi( s ); i > 0; i-- )
|
|
|
|
new_strip();
|
|
|
|
}
|
|
|
|
}
|
2010-01-20 07:54:35 +01:00
|
|
|
else if (! strcmp( picked, "&Mixer/&Rows/One") )
|
|
|
|
{
|
|
|
|
rows( 1 );
|
|
|
|
}
|
|
|
|
else if (! strcmp( picked, "&Mixer/&Rows/Two") )
|
|
|
|
{
|
|
|
|
rows( 2 );
|
|
|
|
}
|
|
|
|
else if (! strcmp( picked, "&Mixer/&Rows/Three") )
|
|
|
|
{
|
|
|
|
rows( 3 );
|
|
|
|
}
|
2010-01-24 03:45:53 +01:00
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Style/&Default") )
|
|
|
|
{
|
|
|
|
Fl::scheme( "plastic" );
|
|
|
|
}
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Style/&Flat") )
|
|
|
|
{
|
|
|
|
Fl::scheme( "gtk+" );
|
|
|
|
}
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Colors/&System") )
|
|
|
|
{
|
|
|
|
//Fl::get_system_colors();
|
|
|
|
|
|
|
|
unsigned char r, g, b;
|
|
|
|
|
|
|
|
Fl::get_color( system_colors[ 0 ], r, g, b );
|
|
|
|
|
|
|
|
Fl::background( r, g, b );
|
|
|
|
|
|
|
|
Fl::get_color( system_colors[ 1 ], r, g, b );
|
|
|
|
|
|
|
|
Fl::foreground( r, g, b );
|
|
|
|
|
|
|
|
Fl::get_color( system_colors[ 2 ], r, g, b );
|
|
|
|
|
|
|
|
Fl::background2( r, g, b );
|
|
|
|
|
|
|
|
Fl::scheme( Fl::scheme() );
|
|
|
|
}
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Colors/&Dark") )
|
|
|
|
{
|
|
|
|
Fl::background2( 100, 100, 100 );
|
|
|
|
Fl::background( 50, 50, 50 );
|
|
|
|
Fl::foreground( 255, 255, 255 );
|
|
|
|
|
|
|
|
Fl::scheme( Fl::scheme() );
|
|
|
|
}
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Colors/&Light") )
|
|
|
|
{
|
|
|
|
Fl::background2( 192, 192, 192 );
|
|
|
|
Fl::background( 220, 220, 220 );
|
|
|
|
Fl::foreground( 0, 0, 0 );
|
|
|
|
|
|
|
|
Fl::scheme( Fl::scheme() );
|
|
|
|
}
|
2010-01-24 22:54:32 +01:00
|
|
|
else if ( ! strcmp( picked, "&Help/&About" ) )
|
|
|
|
{
|
|
|
|
About_Dialog ab;
|
2010-01-20 07:54:35 +01:00
|
|
|
|
2010-01-24 22:54:32 +01:00
|
|
|
ab.run();
|
|
|
|
}
|
2010-01-24 23:35:36 +01:00
|
|
|
else if ( !strcmp( picked, "&Help/&Manual" ))
|
|
|
|
{
|
|
|
|
char *pat;
|
|
|
|
|
|
|
|
asprintf( &pat, "file://%s%s.html", DOCUMENT_PATH, "MANUAL.html" );
|
|
|
|
|
|
|
|
open_url( pat );
|
|
|
|
|
|
|
|
free( pat );
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Mixer::cb_menu(Fl_Widget* o, void* v) {
|
|
|
|
((Mixer*)(v))->cb_menu(o);
|
|
|
|
}
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
Mixer::Mixer ( int X, int Y, int W, int H, const char *L ) :
|
|
|
|
Fl_Group( X, Y, W, H, L )
|
|
|
|
{
|
2010-01-24 03:45:53 +01:00
|
|
|
|
|
|
|
Fl::get_system_colors();
|
|
|
|
Fl::scheme( "plastic" );
|
|
|
|
|
|
|
|
system_colors[ 0 ] = (Fl_Color)Fl::get_color( FL_BACKGROUND_COLOR );
|
|
|
|
system_colors[ 1 ] = (Fl_Color)Fl::get_color( FL_FOREGROUND_COLOR );
|
|
|
|
system_colors[ 2 ] = (Fl_Color)Fl::get_color( FL_BACKGROUND2_COLOR );
|
|
|
|
|
2010-01-20 07:54:35 +01:00
|
|
|
_rows = 1;
|
2009-12-26 01:21:40 +01:00
|
|
|
box( FL_NO_BOX );
|
|
|
|
labelsize( 96 );
|
2010-01-24 03:45:53 +01:00
|
|
|
{ Fl_Menu_Bar *o = menubar = new Fl_Menu_Bar( X, Y, W, 24 );
|
2009-12-28 06:25:28 +01:00
|
|
|
o->add( "&Project/&New" );
|
|
|
|
o->add( "&Project/&Open" );
|
2010-01-12 03:31:15 +01:00
|
|
|
o->add( "&Project/&Save", FL_CTRL + 's', 0, 0 );
|
|
|
|
o->add( "&Project/&Quit", FL_CTRL + 'q', 0, 0 );
|
|
|
|
o->add( "&Mixer/&Add Strip", 'a', 0, 0 );
|
2010-01-23 06:11:00 +01:00
|
|
|
o->add( "&Mixer/Add &N Strips" );
|
2010-01-20 07:54:35 +01:00
|
|
|
o->add( "&Mixer/&Rows/One", '1', 0, 0 );
|
|
|
|
o->add( "&Mixer/&Rows/Two", '2', 0, 0 );
|
|
|
|
o->add( "&Mixer/&Rows/Three", '3', 0, 0 );
|
2010-01-24 03:45:53 +01:00
|
|
|
o->add( "_&Options/&Display/&Style/&Default", 0, 0, 0, FL_MENU_RADIO | FL_MENU_VALUE );
|
|
|
|
o->add( "_&Options/&Display/&Style/&Flat", 0, 0, 0, FL_MENU_RADIO );
|
|
|
|
o->add( "_&Options/&Display/&Colors/&System", 0, 0, 0, FL_MENU_RADIO | FL_MENU_VALUE );
|
|
|
|
o->add( "_&Options/&Display/&Colors/&Dark", 0, 0, 0, FL_MENU_RADIO );
|
|
|
|
o->add( "_&Options/&Display/&Colors/&Light", 0, 0, 0, FL_MENU_RADIO );
|
2010-01-23 06:11:00 +01:00
|
|
|
o->add( "&Help/&Manual" );
|
|
|
|
o->add( "&Help/&About" );
|
2010-01-12 03:31:15 +01:00
|
|
|
o->callback( cb_menu, this );
|
2009-12-28 06:25:28 +01:00
|
|
|
}
|
|
|
|
{ Fl_Scroll *o = scroll = new Fl_Scroll( X, Y + 24, W, H - 24 );
|
2009-12-26 01:21:40 +01:00
|
|
|
o->box( FL_NO_BOX );
|
2010-01-20 07:54:35 +01:00
|
|
|
// o->type( Fl_Scroll::HORIZONTAL_ALWAYS );
|
|
|
|
// o->box( Fl_Scroll::BOTH );
|
2009-12-25 01:59:39 +01:00
|
|
|
{
|
2010-01-20 07:54:35 +01:00
|
|
|
Fl_Flowpack *o = mixer_strips = new Fl_Flowpack( X, Y + 24, W, H - 18 - 24 );
|
2009-12-26 01:21:40 +01:00
|
|
|
label( "Non-Mixer" );
|
|
|
|
align( (Fl_Align)(FL_ALIGN_CENTER | FL_ALIGN_INSIDE) );
|
|
|
|
o->box( FL_NO_BOX );
|
2009-12-25 01:59:39 +01:00
|
|
|
o->type( Fl_Pack::HORIZONTAL );
|
2010-01-20 07:54:35 +01:00
|
|
|
o->hspacing( 2 );
|
|
|
|
o->vspacing( 2 );
|
2009-12-25 01:59:39 +01:00
|
|
|
o->end();
|
|
|
|
Fl_Group::current()->resizable( o );
|
|
|
|
}
|
|
|
|
o->end();
|
|
|
|
Fl_Group::current()->resizable( o );
|
|
|
|
}
|
|
|
|
|
|
|
|
end();
|
|
|
|
|
|
|
|
// Fl::add_timeout( STATUS_UPDATE_FREQ, update_cb, this );
|
|
|
|
|
|
|
|
|
2010-01-24 03:45:53 +01:00
|
|
|
load_options();
|
2009-12-25 01:59:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Mixer::~Mixer ( )
|
|
|
|
{
|
2010-01-16 09:00:47 +01:00
|
|
|
DMESSAGE( "Destroying mixer" );
|
2010-01-23 19:22:33 +01:00
|
|
|
|
2010-01-24 03:45:53 +01:00
|
|
|
save_options();
|
|
|
|
|
2010-01-23 19:22:33 +01:00
|
|
|
/* FIXME: teardown */
|
|
|
|
mixer_strips->clear();
|
2009-12-25 01:59:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Mixer::resize ( int X, int Y, int W, int H )
|
|
|
|
{
|
2009-12-26 01:21:40 +01:00
|
|
|
Fl_Group::resize( X, Y, W, H );
|
2009-12-25 01:59:39 +01:00
|
|
|
|
2009-12-28 06:25:28 +01:00
|
|
|
mixer_strips->resize( X, Y + 24, W, H - 18 - 24 );
|
2009-12-25 01:59:39 +01:00
|
|
|
|
2009-12-28 06:25:28 +01:00
|
|
|
scroll->resize( X, Y + 24, W, H - 24 );
|
2010-01-20 07:54:35 +01:00
|
|
|
|
|
|
|
rows( _rows );
|
2009-12-25 01:59:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Mixer::add ( Mixer_Strip *ms )
|
|
|
|
{
|
|
|
|
MESSAGE( "Add mixer strip \"%s\"", ms->name() );
|
|
|
|
|
|
|
|
mixer_strips->add( ms );
|
|
|
|
|
2010-01-20 07:54:35 +01:00
|
|
|
rows( _rows );
|
|
|
|
|
2009-12-26 01:21:40 +01:00
|
|
|
scroll->redraw();
|
2009-12-25 01:59:39 +01:00
|
|
|
}
|
|
|
|
|
2010-01-12 06:31:02 +01:00
|
|
|
void
|
|
|
|
Mixer::quit ( void )
|
|
|
|
{
|
|
|
|
/* TODO: save project? */
|
|
|
|
|
|
|
|
while ( Fl::first_window() ) Fl::first_window()->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-12 06:23:40 +01:00
|
|
|
void
|
|
|
|
Mixer::insert ( Mixer_Strip *ms, Mixer_Strip *before )
|
|
|
|
{
|
|
|
|
mixer_strips->remove( ms );
|
|
|
|
mixer_strips->insert( *ms, before );
|
|
|
|
|
|
|
|
scroll->redraw();
|
|
|
|
}
|
|
|
|
void
|
|
|
|
Mixer::insert ( Mixer_Strip *ms, int i )
|
|
|
|
{
|
|
|
|
Mixer_Strip *before = (Mixer_Strip*)mixer_strips->child( i );
|
|
|
|
|
|
|
|
insert( ms, before);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Mixer::move_left ( Mixer_Strip *ms )
|
|
|
|
{
|
|
|
|
int i = mixer_strips->find( ms );
|
|
|
|
|
|
|
|
if ( i > 0 )
|
|
|
|
insert( ms, i - 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Mixer::move_right ( Mixer_Strip *ms )
|
|
|
|
{
|
|
|
|
int i = mixer_strips->find( ms );
|
|
|
|
|
|
|
|
if ( i < mixer_strips->children() - 1 )
|
|
|
|
insert( ms, i + 2 );
|
|
|
|
}
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
void Mixer::remove ( Mixer_Strip *ms )
|
|
|
|
{
|
|
|
|
MESSAGE( "Remove mixer strip \"%s\"", ms->name() );
|
|
|
|
|
|
|
|
mixer_strips->remove( ms );
|
|
|
|
|
|
|
|
parent()->redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Mixer::contains ( Mixer_Strip *ms )
|
|
|
|
{
|
|
|
|
return ms->parent() == mixer_strips;
|
|
|
|
}
|
|
|
|
|
2010-01-20 07:54:35 +01:00
|
|
|
void
|
|
|
|
Mixer::rows ( int n )
|
|
|
|
{
|
|
|
|
int sh;
|
|
|
|
|
|
|
|
if ( n > 1 )
|
|
|
|
sh = (scroll->h() / n) - (mixer_strips->vspacing() * (n - 1));
|
|
|
|
else
|
|
|
|
sh = (scroll->h() - 18) / n;
|
|
|
|
|
2010-01-23 05:29:12 +01:00
|
|
|
if ( sh < Mixer_Strip::min_h() )
|
|
|
|
return;
|
|
|
|
|
2010-01-20 07:54:35 +01:00
|
|
|
int tw = 0;
|
|
|
|
|
|
|
|
for ( int i = 0; i < mixer_strips->children(); ++i )
|
|
|
|
{
|
|
|
|
Mixer_Strip *t = (Mixer_Strip*)mixer_strips->child( i );
|
|
|
|
|
|
|
|
t->size( t->w(), sh );
|
|
|
|
|
|
|
|
tw += t->w() + mixer_strips->hspacing();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( n > 1 )
|
|
|
|
mixer_strips->size( scroll->w() - 18, mixer_strips->h() );
|
|
|
|
else
|
|
|
|
mixer_strips->size( tw, mixer_strips->h() );
|
|
|
|
|
|
|
|
_rows = n;
|
|
|
|
|
|
|
|
scroll->redraw();
|
|
|
|
}
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
void Mixer::update ( void )
|
|
|
|
{
|
|
|
|
THREAD_ASSERT( UI );
|
|
|
|
|
|
|
|
for ( int i = mixer_strips->children(); i--; )
|
|
|
|
{
|
|
|
|
((Mixer_Strip*)mixer_strips->child( i ))->update();
|
|
|
|
}
|
|
|
|
// redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** retrun a pointer to the track named /name/, or NULL if no track is named /name/ */
|
|
|
|
Mixer_Strip *
|
|
|
|
Mixer::track_by_name ( const char *name )
|
|
|
|
{
|
|
|
|
for ( int i = mixer_strips->children(); i-- ; )
|
|
|
|
{
|
|
|
|
Mixer_Strip *t = (Mixer_Strip*)mixer_strips->child( i );
|
|
|
|
|
|
|
|
if ( ! strcmp( name, t->name() ) )
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** return a malloc'd string representing a unique name for a new track */
|
|
|
|
char *
|
|
|
|
Mixer::get_unique_track_name ( const char *name )
|
|
|
|
{
|
|
|
|
char pat[256];
|
|
|
|
|
|
|
|
strcpy( pat, name );
|
|
|
|
|
|
|
|
for ( int i = 1; track_by_name( pat ); ++i )
|
|
|
|
snprintf( pat, sizeof( pat ), "%s.%d", name, i );
|
|
|
|
|
|
|
|
return strdup( pat );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
Mixer::snapshot ( void )
|
|
|
|
{
|
|
|
|
for ( int i = 0; i < mixer_strips->children(); ++i )
|
2009-12-28 06:25:28 +01:00
|
|
|
((Mixer_Strip*)mixer_strips->child( i ))->log_children();
|
2009-12-25 01:59:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
Mixer::new_strip ( void )
|
|
|
|
{
|
|
|
|
add( new Mixer_Strip( get_unique_track_name( "Unnamed" ), 1 ) );
|
|
|
|
}
|
|
|
|
|
2009-12-28 06:25:28 +01:00
|
|
|
bool
|
|
|
|
Mixer::save ( void )
|
|
|
|
{
|
|
|
|
MESSAGE( "Saving state" );
|
|
|
|
Loggable::snapshot_callback( &Mixer::snapshot, this );
|
2010-01-12 03:31:15 +01:00
|
|
|
Loggable::snapshot( "snapshot" );
|
2009-12-28 06:25:28 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-24 03:45:53 +01:00
|
|
|
static const char options_filename[] = "options";
|
|
|
|
|
|
|
|
void
|
|
|
|
Mixer::load_options ( void )
|
|
|
|
{
|
|
|
|
// save options
|
|
|
|
|
|
|
|
char *path;
|
|
|
|
asprintf( &path, "%s/options", user_config_dir );
|
|
|
|
((Fl_Menu_Settings*)menubar)->load( menubar->find_item( "&Options" ), path );
|
|
|
|
free( path );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Mixer::save_options ( void )
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
asprintf( &path, "%s/%s", user_config_dir, options_filename );
|
|
|
|
((Fl_Menu_Settings*)menubar)->dump( menubar->find_item( "&Options" ), path );
|
|
|
|
free( path );
|
|
|
|
}
|
2009-12-28 06:25:28 +01:00
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
int
|
|
|
|
Mixer::handle ( int m )
|
|
|
|
{
|
|
|
|
int r = Fl_Group::handle( m );
|
|
|
|
|
|
|
|
switch ( m )
|
|
|
|
{
|
|
|
|
case FL_ENTER:
|
|
|
|
case FL_LEAVE:
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return r;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return 0;
|
|
|
|
return r;
|
|
|
|
}
|