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>
|
2012-11-14 10:54:03 +01:00
|
|
|
|
#include <New_Project_Dialog.H>
|
2009-12-25 01:59:39 +01:00
|
|
|
|
#include "Engine/Engine.H"
|
2012-11-14 10:54:03 +01:00
|
|
|
|
#include <Fl_Flowpack.H>
|
2009-12-28 06:25:28 +01:00
|
|
|
|
#include "Project.H"
|
2012-11-14 10:54:03 +01:00
|
|
|
|
#include <Fl_Menu_Settings.H>
|
|
|
|
|
#include <About_Dialog.H>
|
2010-01-21 01:33:02 +01:00
|
|
|
|
#include <FL/Fl_File_Chooser.H>
|
2012-11-14 10:54:03 +01:00
|
|
|
|
#include <FL/Fl_Theme_Chooser.H>
|
|
|
|
|
#include <Fl_Value_SliderX.H>
|
2010-01-24 22:54:32 +01:00
|
|
|
|
|
2010-02-01 07:25:16 +01:00
|
|
|
|
#include "file.h"
|
2010-01-24 22:54:32 +01:00
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "debug.h"
|
2010-01-21 01:33:02 +01:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/types.h>
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
#include "OSC/Endpoint.H"
|
|
|
|
|
#include <lo/lo.h>
|
2010-01-31 07:47:08 +01:00
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
|
const double STATUS_UPDATE_FREQ = 0.2f;
|
|
|
|
|
|
2010-01-24 03:45:53 +01:00
|
|
|
|
extern char *user_config_dir;
|
2010-01-21 01:33:02 +01:00
|
|
|
|
extern char *instance_name;
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
2010-02-01 07:25:16 +01:00
|
|
|
|
#include "debug.h"
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
#include "NSM.H"
|
|
|
|
|
|
|
|
|
|
extern NSM_Client *nsm;
|
|
|
|
|
|
2010-02-24 16:00:14 +01:00
|
|
|
|
/* static void update_cb( void *v ) { */
|
|
|
|
|
/* Fl::repeat_timeout( STATUS_UPDATE_FREQ, update_cb, v ); */
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
2010-02-24 16:00:14 +01:00
|
|
|
|
/* ((Mixer*)v)->update(); */
|
|
|
|
|
/* } */
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/************************/
|
|
|
|
|
/* OSC Message Handlers */
|
|
|
|
|
/************************/
|
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
#undef OSC_REPLY_OK
|
|
|
|
|
#undef OSC_REPLY_ERR
|
|
|
|
|
#undef OSC_REPLY
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
#define OSC_REPLY_OK() ((OSC::Endpoint*)user_data)->send( lo_message_get_source( msg ), path, 0, "OK" )
|
|
|
|
|
#define OSC_REPLY( value ) ((OSC::Endpoint*)user_data)->send( lo_message_get_source( msg ), path, value )
|
|
|
|
|
#define OSC_REPLY_ERR(errcode, value) ((OSC::Endpoint*)user_data)->send( lo_message_get_source( msg ), path,errcode, value )
|
2012-02-27 04:35:31 +01:00
|
|
|
|
#define OSC_ENDPOINT() ((OSC::Endpoint*)user_data)
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2012-02-27 04:35:31 +01:00
|
|
|
|
static int osc_add_strip ( const char *path, const char *, lo_arg **, int , lo_message msg, void *user_data )
|
2010-01-21 01:33:02 +01:00
|
|
|
|
{
|
|
|
|
|
OSC_DMSG();
|
|
|
|
|
|
2012-03-14 06:41:54 +01:00
|
|
|
|
Fl::lock();
|
2010-01-21 01:33:02 +01:00
|
|
|
|
((Mixer*)(OSC_ENDPOINT())->owner)->command_add_strip();
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2012-03-14 06:41:54 +01:00
|
|
|
|
Fl::unlock();
|
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
OSC_REPLY_OK();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-20 10:58:46 +01:00
|
|
|
|
void
|
|
|
|
|
Mixer::reply_to_finger ( lo_message msg )
|
|
|
|
|
{
|
|
|
|
|
int argc = lo_message_get_argc( msg );
|
|
|
|
|
lo_arg **argv = lo_message_get_argv( msg );
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2012-06-19 06:25:41 +02:00
|
|
|
|
if ( argc >= 4 )
|
|
|
|
|
{
|
|
|
|
|
const char *url = &argv[0]->s;
|
|
|
|
|
const char *name = &argv[1]->s;
|
|
|
|
|
const char *version = &argv[2]->s;
|
|
|
|
|
const char *id = &argv[3]->s;
|
|
|
|
|
|
|
|
|
|
MESSAGE( "Discovered NON peer %s (%s) @ %s with ID \"%s\"", name, version, url, id );
|
|
|
|
|
MESSAGE( "Registering Signals" );
|
|
|
|
|
|
|
|
|
|
lo_address to = lo_address_new_from_url( &argv[0]->s );
|
|
|
|
|
|
|
|
|
|
osc_endpoint->send( to,
|
|
|
|
|
"/non/hello",
|
|
|
|
|
osc_endpoint->url(),
|
|
|
|
|
APP_NAME,
|
|
|
|
|
VERSION,
|
|
|
|
|
instance_name );
|
|
|
|
|
|
|
|
|
|
mixer->osc_endpoint->hello( url );
|
|
|
|
|
|
|
|
|
|
lo_address_free( to );
|
|
|
|
|
}
|
2012-02-20 10:58:46 +01:00
|
|
|
|
}
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2012-02-21 09:48:13 +01:00
|
|
|
|
void
|
|
|
|
|
Mixer::say_hello ( void )
|
|
|
|
|
{
|
|
|
|
|
lo_message m = lo_message_new();
|
|
|
|
|
|
|
|
|
|
lo_message_add( m, "sssss",
|
|
|
|
|
"/non/hello",
|
|
|
|
|
osc_endpoint->url(),
|
|
|
|
|
APP_NAME,
|
|
|
|
|
VERSION,
|
|
|
|
|
instance_name );
|
|
|
|
|
|
|
|
|
|
nsm->broadcast( m );
|
|
|
|
|
|
|
|
|
|
lo_message_free( m );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
static
|
|
|
|
|
Fl_Menu_Item *
|
|
|
|
|
find_item( Fl_Menu_ *menu, const char *path )
|
|
|
|
|
{
|
|
|
|
|
return const_cast<Fl_Menu_Item*>(menu->find_item( path ));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Mixer::sm_active ( bool b )
|
|
|
|
|
{
|
|
|
|
|
sm_blinker->value( b );
|
|
|
|
|
sm_blinker->tooltip( nsm->session_manager_name() );
|
|
|
|
|
|
|
|
|
|
if ( b )
|
|
|
|
|
{
|
|
|
|
|
find_item( menubar, "&Project/&Open" )->deactivate();
|
|
|
|
|
find_item( menubar, "&Project/&New" )->deactivate();
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
|
|
2012-03-03 03:02:23 +01:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Mixer::redraw_windows ( void )
|
|
|
|
|
{
|
|
|
|
|
window()->redraw();
|
|
|
|
|
|
|
|
|
|
if ( Fl::first_window() )
|
|
|
|
|
for ( Fl_Window *w = Fl::first_window(); ( w = Fl::next_window( w ) ); )
|
|
|
|
|
w->redraw();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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-31 22:02:26 +01:00
|
|
|
|
update_menu();
|
|
|
|
|
|
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 );
|
|
|
|
|
|
2012-02-27 04:35:31 +01:00
|
|
|
|
const char *name = fl_dir_chooser( "Open Project", path );
|
2010-01-23 19:22:33 +01:00
|
|
|
|
|
|
|
|
|
free( path );
|
|
|
|
|
|
|
|
|
|
mixer->hide();
|
|
|
|
|
|
|
|
|
|
if ( int err = Project::open( name ) )
|
|
|
|
|
{
|
|
|
|
|
fl_alert( "Error opening project: %s", Project::errstr( err ) );
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-31 22:02:26 +01:00
|
|
|
|
update_menu();
|
|
|
|
|
|
2010-01-23 19:22:33 +01:00
|
|
|
|
mixer->show();
|
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
|
else if (! strcmp( picked, "&Project/&Save" ) )
|
|
|
|
|
{
|
2010-01-31 21:42:14 +01:00
|
|
|
|
command_save();
|
2010-01-12 03:31:15 +01:00
|
|
|
|
}
|
2010-01-20 07:54:35 +01:00
|
|
|
|
else if (! strcmp( picked, "&Project/&Quit") )
|
2010-01-12 06:31:02 +01:00
|
|
|
|
{
|
2010-01-31 21:42:14 +01:00
|
|
|
|
command_quit();
|
2010-01-12 06:31:02 +01:00
|
|
|
|
}
|
2010-01-12 03:31:15 +01:00
|
|
|
|
else if ( !strcmp( picked, "&Mixer/&Add Strip" ) )
|
|
|
|
|
{
|
2010-01-31 21:42:14 +01:00
|
|
|
|
command_add_strip();
|
2010-01-12 03:31:15 +01:00
|
|
|
|
}
|
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-- )
|
2010-01-31 21:42:14 +01:00
|
|
|
|
command_add_strip();
|
2010-01-23 06:11:00 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-01-31 19:51:55 +01:00
|
|
|
|
else if ( !strcmp( picked, "&Mixer/&Import Strip" ) )
|
|
|
|
|
{
|
|
|
|
|
const char *s = fl_file_chooser( "Export strip to filename:", "*.strip", NULL, 0 );
|
|
|
|
|
|
|
|
|
|
if ( s )
|
|
|
|
|
{
|
|
|
|
|
if (! Mixer_Strip::import_strip( s ) )
|
|
|
|
|
fl_alert( "%s", "Failed to import 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 );
|
|
|
|
|
}
|
2012-04-11 08:59:12 +02:00
|
|
|
|
else if (! strcmp( picked, "&View/&Theme") )
|
2010-01-24 03:45:53 +01:00
|
|
|
|
{
|
2012-04-11 08:59:12 +02:00
|
|
|
|
fl_theme_chooser();
|
2012-03-02 05:23:23 +01:00
|
|
|
|
}
|
2012-03-02 06:02:06 +01:00
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Knobs/&Burnished") )
|
|
|
|
|
{
|
2012-04-27 19:14:53 +02:00
|
|
|
|
Fl_Dial::default_style( Fl_Dial::BURNISHED_DIAL );
|
2012-03-03 03:02:23 +01:00
|
|
|
|
redraw_windows();
|
2012-03-02 06:02:06 +01:00
|
|
|
|
}
|
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Knobs/&Arc") )
|
|
|
|
|
{
|
2012-04-27 19:14:53 +02:00
|
|
|
|
Fl_Dial::default_style( Fl_Dial::ARC_DIAL );
|
2012-03-03 03:02:23 +01:00
|
|
|
|
redraw_windows();
|
2012-03-02 06:02:06 +01:00
|
|
|
|
}
|
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Knobs/&Plastic") )
|
|
|
|
|
{
|
2012-04-27 19:14:53 +02:00
|
|
|
|
Fl_Dial::default_style( Fl_Dial::PLASTIC_DIAL );
|
2012-03-03 03:02:23 +01:00
|
|
|
|
redraw_windows();
|
|
|
|
|
}
|
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Sliders/&Nice") )
|
|
|
|
|
{
|
|
|
|
|
Fl_Value_SliderX::default_style( Fl_Value_SliderX::NICE_SLIDER );
|
|
|
|
|
redraw_windows();
|
|
|
|
|
}
|
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Sliders/&Fill") )
|
|
|
|
|
{
|
|
|
|
|
Fl_Value_SliderX::default_style( Fl_Value_SliderX::FILL_SLIDER );
|
|
|
|
|
redraw_windows();
|
|
|
|
|
}
|
|
|
|
|
else if (! strcmp( picked, "&Options/&Display/&Sliders/&Simple") )
|
|
|
|
|
{
|
|
|
|
|
Fl_Value_SliderX::default_style( Fl_Value_SliderX::SIMPLE_SLIDER );
|
|
|
|
|
redraw_windows();
|
2012-03-02 06:02:06 +01:00
|
|
|
|
}
|
2010-01-24 22:54:32 +01:00
|
|
|
|
else if ( ! strcmp( picked, "&Help/&About" ) )
|
|
|
|
|
{
|
2012-02-29 06:24:51 +01:00
|
|
|
|
About_Dialog ab( PIXMAP_PATH "/non-mixer/icon-256x256.png" );
|
2010-01-20 07:54:35 +01:00
|
|
|
|
|
2010-02-02 04:54:09 +01:00
|
|
|
|
ab.logo_box->label( VERSION );
|
|
|
|
|
|
|
|
|
|
ab.title->label( "The Non Mixer" );
|
|
|
|
|
|
|
|
|
|
ab.copyright->label( "Copyright (C) 2008-2010 Jonathan Moore Liles" );
|
|
|
|
|
ab.credits->label(
|
|
|
|
|
"Non-Mixer was written from scratch by\n"
|
|
|
|
|
"Jonathan Moore Liles for his own use\n"
|
|
|
|
|
"(see the manual).\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"Nobody planned. Nobody helped.\n"
|
|
|
|
|
"You can help now by donating time, money,\n"
|
|
|
|
|
"and/or replacing the rest of Linux Audio\n"
|
|
|
|
|
"with fast, light, reliable alternatives.\n" );
|
|
|
|
|
|
|
|
|
|
ab.website_url->label( "http://non-mixer.tuxfamily.org" );
|
|
|
|
|
|
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;
|
|
|
|
|
|
2010-02-01 04:26:12 +01:00
|
|
|
|
asprintf( &pat, "file://%s.html", DOCUMENT_PATH "/non-mixer/MANUAL" );
|
2010-01-24 23:35:36 +01:00
|
|
|
|
|
|
|
|
|
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 )
|
|
|
|
|
{
|
2012-03-05 03:02:01 +01:00
|
|
|
|
Loggable::dirty_callback( &Mixer::handle_dirty, this );
|
|
|
|
|
|
2010-01-20 07:54:35 +01:00
|
|
|
|
_rows = 1;
|
2012-06-20 09:55:58 +02:00
|
|
|
|
box( FL_FLAT_BOX );
|
2009-12-26 01:21:40 +01:00
|
|
|
|
labelsize( 96 );
|
2012-04-14 23:11:58 +02:00
|
|
|
|
{ Fl_Group *o = new Fl_Group( X, Y, W, 24 );
|
|
|
|
|
|
|
|
|
|
{ Fl_Menu_Bar *o = menubar = new Fl_Menu_Bar( X, Y, W, 24 );
|
|
|
|
|
o->add( "&Project/&New" );
|
|
|
|
|
o->add( "&Project/&Open" );
|
|
|
|
|
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 );
|
|
|
|
|
o->add( "&Mixer/Add &N Strips" );
|
|
|
|
|
o->add( "&Mixer/&Import Strip" );
|
|
|
|
|
o->add( "&Mixer/&Rows/One", '1', 0, 0 );
|
|
|
|
|
o->add( "&Mixer/&Rows/Two", '2', 0, 0 );
|
|
|
|
|
o->add( "&Mixer/&Rows/Three", '3', 0, 0 );
|
|
|
|
|
o->add( "&View/&Theme", 0, 0, 0 );
|
|
|
|
|
o->add( "_&Options/&Display/&Knobs/&Arc", 0, 0, 0, FL_MENU_RADIO );
|
|
|
|
|
o->add( "_&Options/&Display/&Knobs/&Burnished", 0, 0, 0, FL_MENU_RADIO );
|
|
|
|
|
o->add( "_&Options/&Display/&Knobs/&Plastic", 0, 0, 0, FL_MENU_RADIO | FL_MENU_VALUE );
|
|
|
|
|
o->add( "_&Options/&Display/&Sliders/&Nice", 0, 0, 0, FL_MENU_RADIO | FL_MENU_VALUE );
|
|
|
|
|
o->add( "_&Options/&Display/&Sliders/&Fill", 0, 0, 0, FL_MENU_RADIO );
|
|
|
|
|
o->add( "_&Options/&Display/&Sliders/&Simple", 0, 0, 0, FL_MENU_RADIO );
|
|
|
|
|
o->add( "_&Options/&Display/&Colors/&System", 0, 0, 0, FL_MENU_RADIO );
|
|
|
|
|
o->add( "&Help/&Manual" );
|
|
|
|
|
o->add( "&Help/&About" );
|
|
|
|
|
o->callback( cb_menu, this );
|
|
|
|
|
}
|
|
|
|
|
{ Fl_Box *o = project_name = new Fl_Box( X + 150, Y, W, 24 );
|
|
|
|
|
o->labelfont( FL_HELVETICA_ITALIC );
|
|
|
|
|
o->label( 0 );
|
|
|
|
|
o->align( FL_ALIGN_INSIDE | FL_ALIGN_CENTER );
|
|
|
|
|
o->labeltype( FL_SHADOW_LABEL );
|
|
|
|
|
Fl_Group::current()->resizable( o );
|
|
|
|
|
}
|
|
|
|
|
{ sm_blinker = new Fl_Button( ( X + W) - 37, Y + 4, 35, 15, "SM");
|
|
|
|
|
sm_blinker->box(FL_ROUNDED_BOX);
|
|
|
|
|
sm_blinker->down_box(FL_ROUNDED_BOX);
|
|
|
|
|
sm_blinker->color(FL_DARK2);
|
|
|
|
|
sm_blinker->selection_color((Fl_Color)93);
|
|
|
|
|
sm_blinker->labeltype(FL_NORMAL_LABEL);
|
|
|
|
|
sm_blinker->labelfont(3);
|
|
|
|
|
sm_blinker->labelsize(14);
|
|
|
|
|
sm_blinker->labelcolor(FL_DARK3);
|
|
|
|
|
sm_blinker->align(Fl_Align(FL_ALIGN_CENTER));
|
|
|
|
|
sm_blinker->when(FL_WHEN_RELEASE);
|
|
|
|
|
sm_blinker->deactivate();
|
|
|
|
|
|
|
|
|
|
} // Fl_Blink_Button* sm_blinker
|
|
|
|
|
o->end();
|
2010-02-01 03:54:15 +01:00
|
|
|
|
}
|
2009-12-28 06:25:28 +01:00
|
|
|
|
{ Fl_Scroll *o = scroll = new Fl_Scroll( X, Y + 24, W, H - 24 );
|
2012-06-20 09:55:58 +02:00
|
|
|
|
o->box( FL_FLAT_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 );
|
2012-06-20 09:55:58 +02:00
|
|
|
|
// label( "Non-Mixer" );
|
2009-12-26 01:21:40 +01:00
|
|
|
|
align( (Fl_Align)(FL_ALIGN_CENTER | FL_ALIGN_INSIDE) );
|
2012-06-20 09:55:58 +02:00
|
|
|
|
o->box( FL_FLAT_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-31 22:02:26 +01:00
|
|
|
|
update_menu();
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
2010-01-24 03:45:53 +01:00
|
|
|
|
load_options();
|
2012-02-08 19:39:03 +01:00
|
|
|
|
}
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
int
|
2012-02-08 19:39:03 +01:00
|
|
|
|
Mixer::init_osc ( const char *osc_port )
|
|
|
|
|
{
|
2010-01-21 01:33:02 +01:00
|
|
|
|
osc_endpoint = new OSC::Endpoint();
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2012-02-24 05:34:07 +01:00
|
|
|
|
if ( int r = osc_endpoint->init( LO_UDP, osc_port ) )
|
2010-01-21 01:33:02 +01:00
|
|
|
|
return r;
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
osc_endpoint->owner = this;
|
|
|
|
|
|
|
|
|
|
printf( "OSC=%s\n", osc_endpoint->url() );
|
2010-01-21 01:33:02 +01:00
|
|
|
|
|
2012-02-27 04:35:31 +01:00
|
|
|
|
osc_endpoint->add_method( "/non/mixer/add_strip", "", osc_add_strip, osc_endpoint, "" );
|
2012-02-09 00:39:03 +01:00
|
|
|
|
|
2012-03-14 06:41:54 +01:00
|
|
|
|
osc_endpoint->start();
|
2012-02-20 10:58:46 +01:00
|
|
|
|
|
|
|
|
|
return 0;
|
2010-01-21 01:33:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
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-28 02:58:01 +01:00
|
|
|
|
ms->take_focus();
|
|
|
|
|
|
2010-01-20 07:54:35 +01:00
|
|
|
|
rows( _rows );
|
|
|
|
|
|
2010-02-24 16:00:14 +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 );
|
|
|
|
|
|
2012-02-09 00:36:25 +01:00
|
|
|
|
if ( parent() )
|
|
|
|
|
parent()->redraw();
|
2009-12-25 01:59:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
Mixer::contains ( Mixer_Strip *ms )
|
|
|
|
|
{
|
|
|
|
|
return ms->parent() == mixer_strips;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-04 14:45:56 +01:00
|
|
|
|
/* set the ideal number of rows... All may not actually fit. */
|
2010-01-20 07:54:35 +01:00
|
|
|
|
void
|
2010-02-04 14:45:56 +01:00
|
|
|
|
Mixer::rows ( int ideal_rows )
|
2010-01-20 07:54:35 +01:00
|
|
|
|
{
|
|
|
|
|
int sh;
|
|
|
|
|
|
2010-02-04 14:45:56 +01:00
|
|
|
|
int actual_rows = 1;
|
|
|
|
|
|
|
|
|
|
if ( ideal_rows > 1 )
|
2010-01-27 05:28:39 +01:00
|
|
|
|
{
|
2010-02-04 14:45:56 +01:00
|
|
|
|
sh = (scroll->h() / ideal_rows ) - (mixer_strips->vspacing() * (ideal_rows - 1));
|
2010-01-27 05:28:39 +01:00
|
|
|
|
mixer_strips->flow( true );
|
2010-02-04 14:45:56 +01:00
|
|
|
|
|
|
|
|
|
if ( sh < Mixer_Strip::min_h() )
|
|
|
|
|
{
|
|
|
|
|
int can_fit = ( scroll->h() - 18 ) / Mixer_Strip::min_h();
|
|
|
|
|
|
|
|
|
|
actual_rows = can_fit > 0 ? can_fit : 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
actual_rows = ideal_rows;
|
2010-01-27 05:28:39 +01:00
|
|
|
|
}
|
2010-01-20 07:54:35 +01:00
|
|
|
|
else
|
2010-02-04 14:45:56 +01:00
|
|
|
|
actual_rows = 1;
|
2010-01-20 07:54:35 +01:00
|
|
|
|
|
2010-02-04 14:45:56 +01:00
|
|
|
|
if ( 1 == actual_rows )
|
2010-01-25 03:12:10 +01:00
|
|
|
|
{
|
2010-02-04 14:45:56 +01:00
|
|
|
|
sh = (scroll->h() - 18);
|
|
|
|
|
mixer_strips->flow( false );
|
|
|
|
|
|
|
|
|
|
actual_rows = 1;
|
2010-01-25 03:12:10 +01:00
|
|
|
|
}
|
2010-01-23 05:29:12 +01:00
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-04 14:45:56 +01:00
|
|
|
|
if ( actual_rows > 1 )
|
2010-01-20 07:54:35 +01:00
|
|
|
|
mixer_strips->size( scroll->w() - 18, mixer_strips->h() );
|
|
|
|
|
else
|
|
|
|
|
mixer_strips->size( tw, mixer_strips->h() );
|
|
|
|
|
|
2010-02-04 14:45:56 +01:00
|
|
|
|
_rows = ideal_rows;
|
2010-01-20 07:54:35 +01:00
|
|
|
|
|
|
|
|
|
scroll->redraw();
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
|
/** 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 );
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-05 03:02:01 +01:00
|
|
|
|
void
|
|
|
|
|
Mixer::handle_dirty ( int d, void *v )
|
|
|
|
|
{
|
|
|
|
|
//Mixer *m = (Mixer*)v;
|
|
|
|
|
if ( !nsm )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if ( d == 1 )
|
|
|
|
|
nsm->is_dirty();
|
|
|
|
|
else if ( d == 0 )
|
|
|
|
|
nsm->is_clean();
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
|
|
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 )
|
|
|
|
|
{
|
2010-01-25 03:12:10 +01:00
|
|
|
|
add( new Mixer_Strip( get_unique_track_name( "Unnamed" ) ) );
|
2009-12-25 01:59:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
2010-01-31 22:02:26 +01:00
|
|
|
|
void
|
|
|
|
|
Mixer::update_menu ( void )
|
|
|
|
|
{
|
|
|
|
|
bool b = Project::open();
|
|
|
|
|
|
|
|
|
|
if ( b )
|
|
|
|
|
{
|
|
|
|
|
((Fl_Menu_Item*)menubar->find_item( "&Mixer" ))->flags &= ~FL_MENU_INACTIVE;
|
|
|
|
|
((Fl_Menu_Item*)menubar->find_item( "&Project/&Save" ))->flags &= ~FL_MENU_INACTIVE;
|
|
|
|
|
mixer_strips->activate();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
((Fl_Menu_Item*)menubar->find_item( "&Mixer" ))->flags |= FL_MENU_INACTIVE;
|
|
|
|
|
((Fl_Menu_Item*)menubar->find_item( "&Project/&Save" ))->flags |= FL_MENU_INACTIVE;
|
|
|
|
|
mixer_strips->deactivate();
|
|
|
|
|
}
|
2010-02-01 03:54:15 +01:00
|
|
|
|
|
|
|
|
|
project_name->label( Project::name() );
|
2010-01-31 22:02:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
|
int
|
|
|
|
|
Mixer::handle ( int m )
|
|
|
|
|
{
|
2010-01-30 09:38:15 +01:00
|
|
|
|
if ( Fl_Group::handle( m ) )
|
|
|
|
|
return 1;
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
|
|
switch ( m )
|
|
|
|
|
{
|
|
|
|
|
case FL_ENTER:
|
|
|
|
|
case FL_LEAVE:
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-30 09:38:15 +01:00
|
|
|
|
return 0;
|
2009-12-25 01:59:39 +01:00
|
|
|
|
}
|
2010-01-31 21:42:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-26 03:01:46 +01:00
|
|
|
|
void
|
|
|
|
|
Mixer::discover_peers ( void )
|
|
|
|
|
{
|
|
|
|
|
if ( nsm->is_active() )
|
|
|
|
|
{
|
|
|
|
|
lo_message m = lo_message_new();
|
|
|
|
|
|
|
|
|
|
lo_message_add_string( m, "/non/finger" );
|
|
|
|
|
lo_message_add_string( m, osc_endpoint->url() );
|
|
|
|
|
|
|
|
|
|
nsm->broadcast( m );
|
|
|
|
|
|
|
|
|
|
lo_message_free( m );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-31 21:42:14 +01:00
|
|
|
|
/************/
|
|
|
|
|
/* Commands */
|
|
|
|
|
/************/
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
Mixer::command_save ( void )
|
|
|
|
|
{
|
|
|
|
|
return Project::save();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
Mixer::command_load ( const char *path, const char *display_name )
|
|
|
|
|
{
|
2010-01-21 01:33:02 +01:00
|
|
|
|
mixer->hide();
|
|
|
|
|
|
2012-02-27 04:35:31 +01:00
|
|
|
|
if ( Project::open( path ) )
|
2010-01-31 21:42:14 +01:00
|
|
|
|
{
|
|
|
|
|
// fl_alert( "Error opening project specified on commandline: %s", Project::errstr( err ) );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( display_name )
|
|
|
|
|
Project::name( display_name );
|
|
|
|
|
|
2010-01-31 22:02:26 +01:00
|
|
|
|
update_menu();
|
|
|
|
|
|
2010-01-21 01:33:02 +01:00
|
|
|
|
mixer->show();
|
|
|
|
|
|
2010-01-31 21:42:14 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
Mixer::command_new ( const char *path, const char *display_name )
|
|
|
|
|
{
|
|
|
|
|
if ( ! Project::create( path, "" ) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if ( display_name )
|
|
|
|
|
Project::name( display_name );
|
|
|
|
|
|
2010-01-31 22:02:26 +01:00
|
|
|
|
update_menu();
|
|
|
|
|
|
2010-01-31 21:42:14 +01:00
|
|
|
|
return true;
|
|
|
|
|
// fl_alert( "Error creating project!" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Mixer::command_quit ( void )
|
|
|
|
|
{
|
2010-02-01 04:14:56 +01:00
|
|
|
|
if ( Loggable::dirty() )
|
|
|
|
|
{
|
|
|
|
|
int i = fl_choice( "There have been changes since the last save. Quitting now will discard them", "Discard", "Cancel", NULL );
|
|
|
|
|
|
|
|
|
|
if ( i != 0 )
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-31 21:42:14 +01:00
|
|
|
|
quit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Mixer::command_add_strip ( void )
|
|
|
|
|
{
|
|
|
|
|
new_strip();
|
|
|
|
|
}
|