mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-16 05:02:13 -04:00
1317 lines
34 KiB
C++
1317 lines
34 KiB
C++
/*
|
|
* setup_dialog.cpp - dialog for setting up LMMS
|
|
*
|
|
* Copyright (c) 2005-2013 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
|
|
*
|
|
* 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 COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#include <QtGui/QComboBox>
|
|
#include <QtGui/QFileDialog>
|
|
#include <QtGui/QImageReader>
|
|
#include <QtGui/QLabel>
|
|
#include <QtGui/QLayout>
|
|
#include <QtGui/QLineEdit>
|
|
#include <QtGui/QMessageBox>
|
|
#include <QtGui/QSlider>
|
|
#include <QtGui/QWhatsThis>
|
|
|
|
#include "setup_dialog.h"
|
|
#include "tab_bar.h"
|
|
#include "tab_button.h"
|
|
#include "tab_widget.h"
|
|
#include "gui_templates.h"
|
|
#include "mixer.h"
|
|
#include "ProjectJournal.h"
|
|
#include "config_mgr.h"
|
|
#include "embed.h"
|
|
#include "engine.h"
|
|
#include "debug.h"
|
|
#include "tooltip.h"
|
|
#include "led_checkbox.h"
|
|
#include "lcd_spinbox.h"
|
|
|
|
|
|
// platform-specific audio-interface-classes
|
|
#include "AudioAlsa.h"
|
|
#include "AudioJack.h"
|
|
#include "AudioOss.h"
|
|
#include "AudioPortAudio.h"
|
|
#include "AudioPulseAudio.h"
|
|
#include "AudioSdl.h"
|
|
#include "AudioDummy.h"
|
|
|
|
// platform-specific midi-interface-classes
|
|
#include "MidiAlsaRaw.h"
|
|
#include "MidiAlsaSeq.h"
|
|
#include "MidiOss.h"
|
|
#include "MidiWinMM.h"
|
|
#include "MidiDummy.h"
|
|
|
|
|
|
|
|
inline void labelWidget( QWidget * _w, const QString & _txt )
|
|
{
|
|
QLabel * title = new QLabel( _txt, _w );
|
|
QFont f = title->font();
|
|
f.setBold( true );
|
|
title->setFont( pointSize<12>( f ) );
|
|
|
|
#ifdef LMMS_DEBUG
|
|
assert( dynamic_cast<QBoxLayout *>( _w->layout() ) != NULL );
|
|
#endif
|
|
dynamic_cast<QBoxLayout *>( _w->layout() )->addSpacing( 5 );
|
|
dynamic_cast<QBoxLayout *>( _w->layout() )->addWidget( title );
|
|
dynamic_cast<QBoxLayout *>( _w->layout() )->addSpacing( 10 );
|
|
}
|
|
|
|
|
|
|
|
|
|
setupDialog::setupDialog( ConfigTabs _tab_to_open ) :
|
|
m_bufferSize( configManager::inst()->value( "mixer",
|
|
"framesperaudiobuffer" ).toInt() ),
|
|
m_toolTips( !configManager::inst()->value( "tooltips",
|
|
"disabled" ).toInt() ),
|
|
m_warnAfterSetup( !configManager::inst()->value( "app",
|
|
"nomsgaftersetup" ).toInt() ),
|
|
m_displaydBV( configManager::inst()->value( "app",
|
|
"displaydbv" ).toInt() ),
|
|
m_MMPZ( !configManager::inst()->value( "app", "nommpz" ).toInt() ),
|
|
m_hqAudioDev( configManager::inst()->value( "mixer",
|
|
"hqaudio" ).toInt() ),
|
|
m_workingDir( configManager::inst()->workingDir() ),
|
|
m_vstDir( configManager::inst()->vstDir() ),
|
|
m_artworkDir( configManager::inst()->artworkDir() ),
|
|
m_flDir( configManager::inst()->flDir() ),
|
|
m_ladDir( configManager::inst()->ladspaDir() ),
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
m_defaultSoundfont( configManager::inst()->defaultSoundfont() ),
|
|
#endif
|
|
#ifdef LMMS_HAVE_STK
|
|
m_stkDir( configManager::inst()->stkDir() ),
|
|
#endif
|
|
m_backgroundArtwork( configManager::inst()->backgroundArtwork() ),
|
|
m_disableChActInd( configManager::inst()->value( "ui",
|
|
"disablechannelactivityindicators" ).toInt() ),
|
|
m_manualChPiano( configManager::inst()->value( "ui",
|
|
"manualchannelpiano" ).toInt() ),
|
|
m_smoothScroll( configManager::inst()->value( "ui", "smoothscroll" ).toInt() ),
|
|
m_enableAutoSave( configManager::inst()->value( "ui", "enableautosave" ).toInt() ),
|
|
m_oneInstrumentTrackWindow( configManager::inst()->value( "ui",
|
|
"oneinstrumenttrackwindow" ).toInt() ),
|
|
m_compactTrackButtons( configManager::inst()->value( "ui",
|
|
"compacttrackbuttons" ).toInt() ),
|
|
m_syncVSTPlugins( configManager::inst()->value( "ui",
|
|
"syncvstplugins" ).toInt() ),
|
|
m_animateAFP(configManager::inst()->value( "ui",
|
|
"animateafp").toInt() ),
|
|
m_printNoteLabels(configManager::inst()->value( "ui",
|
|
"printnotelabels").toInt() )
|
|
{
|
|
setWindowIcon( embed::getIconPixmap( "setup_general" ) );
|
|
setWindowTitle( tr( "Setup LMMS" ) );
|
|
setModal( true );
|
|
|
|
engine::projectJournal()->setJournalling( false );
|
|
|
|
QVBoxLayout * vlayout = new QVBoxLayout( this );
|
|
vlayout->setSpacing( 0 );
|
|
vlayout->setMargin( 0 );
|
|
QWidget * settings = new QWidget( this );
|
|
QHBoxLayout * hlayout = new QHBoxLayout( settings );
|
|
hlayout->setSpacing( 0 );
|
|
hlayout->setMargin( 0 );
|
|
|
|
m_tabBar = new tabBar( settings, QBoxLayout::TopToBottom );
|
|
m_tabBar->setExclusive( true );
|
|
m_tabBar->setFixedWidth( 72 );
|
|
|
|
QWidget * ws = new QWidget( settings );
|
|
int wsHeight = 336;
|
|
#ifdef LMMS_HAVE_STK
|
|
wsHeight += 50;
|
|
#endif
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
wsHeight += 50;
|
|
#endif
|
|
ws->setFixedSize( 360, wsHeight );
|
|
QWidget * general = new QWidget( ws );
|
|
general->setFixedSize( 360, 240 );
|
|
QVBoxLayout * gen_layout = new QVBoxLayout( general );
|
|
gen_layout->setSpacing( 0 );
|
|
gen_layout->setMargin( 0 );
|
|
labelWidget( general, tr( "General settings" ) );
|
|
|
|
tabWidget * bufsize_tw = new tabWidget( tr( "BUFFER SIZE" ), general );
|
|
bufsize_tw->setFixedHeight( 80 );
|
|
|
|
m_bufSizeSlider = new QSlider( Qt::Horizontal, bufsize_tw );
|
|
m_bufSizeSlider->setRange( 1, 256 );
|
|
m_bufSizeSlider->setTickPosition( QSlider::TicksBelow );
|
|
m_bufSizeSlider->setPageStep( 8 );
|
|
m_bufSizeSlider->setTickInterval( 8 );
|
|
m_bufSizeSlider->setGeometry( 10, 16, 340, 18 );
|
|
m_bufSizeSlider->setValue( m_bufferSize / 64 );
|
|
|
|
connect( m_bufSizeSlider, SIGNAL( valueChanged( int ) ), this,
|
|
SLOT( setBufferSize( int ) ) );
|
|
|
|
m_bufSizeLbl = new QLabel( bufsize_tw );
|
|
m_bufSizeLbl->setGeometry( 10, 40, 200, 24 );
|
|
setBufferSize( m_bufSizeSlider->value() );
|
|
|
|
QPushButton * bufsize_reset_btn = new QPushButton(
|
|
embed::getIconPixmap( "reload" ), "", bufsize_tw );
|
|
bufsize_reset_btn->setGeometry( 290, 40, 28, 28 );
|
|
connect( bufsize_reset_btn, SIGNAL( clicked() ), this,
|
|
SLOT( resetBufSize() ) );
|
|
toolTip::add( bufsize_reset_btn, tr( "Reset to default-value" ) );
|
|
|
|
QPushButton * bufsize_help_btn = new QPushButton(
|
|
embed::getIconPixmap( "help" ), "", bufsize_tw );
|
|
bufsize_help_btn->setGeometry( 320, 40, 28, 28 );
|
|
connect( bufsize_help_btn, SIGNAL( clicked() ), this,
|
|
SLOT( displayBufSizeHelp() ) );
|
|
|
|
|
|
tabWidget * misc_tw = new tabWidget( tr( "MISC" ), general );
|
|
const int XDelta = 10;
|
|
const int YDelta = 18;
|
|
const int HeaderSize = 30;
|
|
int labelNumber = 0;
|
|
|
|
|
|
ledCheckBox * enable_tooltips = new ledCheckBox(
|
|
tr( "Enable tooltips" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
enable_tooltips->move( XDelta, YDelta*labelNumber );
|
|
enable_tooltips->setChecked( m_toolTips );
|
|
connect( enable_tooltips, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleToolTips( bool ) ) );
|
|
|
|
|
|
ledCheckBox * restart_msg = new ledCheckBox(
|
|
tr( "Show restart warning after changing settings" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
restart_msg->move( XDelta, YDelta*labelNumber );
|
|
restart_msg->setChecked( m_warnAfterSetup );
|
|
connect( restart_msg, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleWarnAfterSetup( bool ) ) );
|
|
|
|
|
|
ledCheckBox * dbv = new ledCheckBox( tr( "Display volume as dBV " ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
dbv->move( XDelta, YDelta*labelNumber );
|
|
dbv->setChecked( m_displaydBV );
|
|
connect( dbv, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleDisplaydBV( bool ) ) );
|
|
|
|
|
|
ledCheckBox * mmpz = new ledCheckBox(
|
|
tr( "Compress project files per default" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
mmpz->move( XDelta, YDelta*labelNumber );
|
|
mmpz->setChecked( m_MMPZ );
|
|
connect( mmpz, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleMMPZ( bool ) ) );
|
|
|
|
ledCheckBox * oneitw = new ledCheckBox(
|
|
tr( "One instrument track window mode" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
oneitw->move( XDelta, YDelta*labelNumber );
|
|
oneitw->setChecked( m_oneInstrumentTrackWindow );
|
|
connect( oneitw, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleOneInstrumentTrackWindow( bool ) ) );
|
|
|
|
ledCheckBox * hqaudio = new ledCheckBox(
|
|
tr( "HQ-mode for output audio-device" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
hqaudio->move( XDelta, YDelta*labelNumber );
|
|
hqaudio->setChecked( m_hqAudioDev );
|
|
connect( hqaudio, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleHQAudioDev( bool ) ) );
|
|
|
|
ledCheckBox * compacttracks = new ledCheckBox(
|
|
tr( "Compact track buttons" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
compacttracks->move( XDelta, YDelta*labelNumber );
|
|
compacttracks->setChecked( m_compactTrackButtons );
|
|
connect( compacttracks, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleCompactTrackButtons( bool ) ) );
|
|
|
|
|
|
ledCheckBox * syncVST = new ledCheckBox(
|
|
tr( "Sync VST plugins to host playback" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
syncVST->move( XDelta, YDelta*labelNumber );
|
|
syncVST->setChecked( m_syncVSTPlugins );
|
|
connect( syncVST, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleSyncVSTPlugins( bool ) ) );
|
|
|
|
ledCheckBox * noteLabels = new ledCheckBox(
|
|
tr( "Enable note labels in piano roll" ),
|
|
misc_tw );
|
|
labelNumber++;
|
|
noteLabels->move( XDelta, YDelta*labelNumber );
|
|
noteLabels->setChecked( m_printNoteLabels );
|
|
connect( noteLabels, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleNoteLabels( bool ) ) );
|
|
|
|
misc_tw->setFixedHeight( YDelta*labelNumber + HeaderSize );
|
|
|
|
|
|
gen_layout->addWidget( bufsize_tw );
|
|
gen_layout->addSpacing( 10 );
|
|
gen_layout->addWidget( misc_tw );
|
|
gen_layout->addStretch();
|
|
|
|
|
|
|
|
QWidget * paths = new QWidget( ws );
|
|
int pathsHeight = 356;
|
|
#ifdef LMMS_HAVE_STK
|
|
pathsHeight += 55;
|
|
#endif
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
pathsHeight += 55;
|
|
#endif
|
|
paths->setFixedSize( 360, pathsHeight );
|
|
QVBoxLayout * dir_layout = new QVBoxLayout( paths );
|
|
dir_layout->setSpacing( 0 );
|
|
dir_layout->setMargin( 0 );
|
|
labelWidget( paths, tr( "Paths" ) );
|
|
|
|
// working-dir
|
|
tabWidget * lmms_wd_tw = new tabWidget( tr(
|
|
"LMMS working directory" ).toUpper(),
|
|
paths );
|
|
lmms_wd_tw->setFixedHeight( 48 );
|
|
|
|
m_wdLineEdit = new QLineEdit( m_workingDir, lmms_wd_tw );
|
|
m_wdLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_wdLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setWorkingDir( const QString & ) ) );
|
|
|
|
QPushButton * workingdir_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", lmms_wd_tw );
|
|
workingdir_select_btn->setFixedSize( 24, 24 );
|
|
workingdir_select_btn->move( 320, 16 );
|
|
connect( workingdir_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openWorkingDir() ) );
|
|
|
|
// vst-dir
|
|
tabWidget * vst_tw = new tabWidget( tr(
|
|
"VST-plugin directory" ).toUpper(),
|
|
paths );
|
|
vst_tw->setFixedHeight( 48 );
|
|
|
|
m_vdLineEdit = new QLineEdit( m_vstDir, vst_tw );
|
|
m_vdLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_vdLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setVSTDir( const QString & ) ) );
|
|
|
|
QPushButton * vstdir_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", vst_tw );
|
|
vstdir_select_btn->setFixedSize( 24, 24 );
|
|
vstdir_select_btn->move( 320, 16 );
|
|
connect( vstdir_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openVSTDir() ) );
|
|
|
|
// artwork-dir
|
|
tabWidget * artwork_tw = new tabWidget( tr(
|
|
"Artwork directory" ).toUpper(),
|
|
paths );
|
|
artwork_tw->setFixedHeight( 48 );
|
|
|
|
m_adLineEdit = new QLineEdit( m_artworkDir, artwork_tw );
|
|
m_adLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_adLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setArtworkDir( const QString & ) ) );
|
|
|
|
QPushButton * artworkdir_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", artwork_tw );
|
|
artworkdir_select_btn->setFixedSize( 24, 24 );
|
|
artworkdir_select_btn->move( 320, 16 );
|
|
connect( artworkdir_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openArtworkDir() ) );
|
|
|
|
|
|
|
|
// background artwork file
|
|
tabWidget * backgroundArtwork_tw = new tabWidget( tr(
|
|
"Background artwork" ).toUpper(), paths );
|
|
backgroundArtwork_tw->setFixedHeight( 48 );
|
|
|
|
m_baLineEdit = new QLineEdit( m_backgroundArtwork,
|
|
backgroundArtwork_tw );
|
|
m_baLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_baLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setBackgroundArtwork( const QString & ) ) );
|
|
|
|
QPushButton * backgroundartworkdir_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", backgroundArtwork_tw );
|
|
backgroundartworkdir_select_btn->setFixedSize( 24, 24 );
|
|
backgroundartworkdir_select_btn->move( 320, 16 );
|
|
connect( backgroundartworkdir_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openBackgroundArtwork() ) );
|
|
|
|
|
|
|
|
|
|
|
|
// FL Studio-dir
|
|
tabWidget * fl_tw = new tabWidget( tr(
|
|
"FL Studio installation directory" ).toUpper(),
|
|
paths );
|
|
fl_tw->setFixedHeight( 48 );
|
|
|
|
m_fdLineEdit = new QLineEdit( m_flDir, fl_tw );
|
|
m_fdLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_fdLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setFLDir( const QString & ) ) );
|
|
|
|
QPushButton * fldir_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", fl_tw );
|
|
fldir_select_btn->setFixedSize( 24, 24 );
|
|
fldir_select_btn->move( 320, 16 );
|
|
connect( fldir_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openFLDir() ) );
|
|
// LADSPA-dir
|
|
tabWidget * lad_tw = new tabWidget( tr(
|
|
"LADSPA plugin paths" ).toUpper(),
|
|
paths );
|
|
lad_tw->setFixedHeight( 48 );
|
|
|
|
m_ladLineEdit = new QLineEdit( m_ladDir, lad_tw );
|
|
m_ladLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_ladLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setLADSPADir( const QString & ) ) );
|
|
|
|
QPushButton * laddir_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", lad_tw );
|
|
laddir_select_btn->setFixedSize( 24, 24 );
|
|
laddir_select_btn->move( 320, 16 );
|
|
connect( laddir_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openLADSPADir() ) );
|
|
|
|
#ifdef LMMS_HAVE_STK
|
|
// STK-dir
|
|
tabWidget * stk_tw = new tabWidget( tr(
|
|
"STK rawwave directory" ).toUpper(),
|
|
paths );
|
|
stk_tw->setFixedHeight( 48 );
|
|
|
|
m_stkLineEdit = new QLineEdit( m_stkDir, stk_tw );
|
|
m_stkLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_stkLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setSTKDir( const QString & ) ) );
|
|
|
|
QPushButton * stkdir_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", stk_tw );
|
|
stkdir_select_btn->setFixedSize( 24, 24 );
|
|
stkdir_select_btn->move( 320, 16 );
|
|
connect( stkdir_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openSTKDir() ) );
|
|
#endif
|
|
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
// Soundfont
|
|
tabWidget * sf_tw = new tabWidget( tr(
|
|
"Default Soundfont File" ).toUpper(), paths );
|
|
sf_tw->setFixedHeight( 48 );
|
|
|
|
m_sfLineEdit = new QLineEdit( m_defaultSoundfont, sf_tw );
|
|
m_sfLineEdit->setGeometry( 10, 20, 300, 16 );
|
|
connect( m_sfLineEdit, SIGNAL( textChanged( const QString & ) ), this,
|
|
SLOT( setDefaultSoundfont( const QString & ) ) );
|
|
|
|
QPushButton * sf_select_btn = new QPushButton(
|
|
embed::getIconPixmap( "project_open", 16, 16 ),
|
|
"", sf_tw );
|
|
sf_select_btn->setFixedSize( 24, 24 );
|
|
sf_select_btn->move( 320, 16 );
|
|
connect( sf_select_btn, SIGNAL( clicked() ), this,
|
|
SLOT( openDefaultSoundfont() ) );
|
|
#endif
|
|
|
|
|
|
dir_layout->addWidget( lmms_wd_tw );
|
|
dir_layout->addSpacing( 10 );
|
|
dir_layout->addWidget( vst_tw );
|
|
dir_layout->addSpacing( 10 );
|
|
dir_layout->addWidget( artwork_tw );
|
|
dir_layout->addSpacing( 10 );
|
|
dir_layout->addWidget( backgroundArtwork_tw );
|
|
dir_layout->addSpacing( 10 );
|
|
dir_layout->addWidget( fl_tw );
|
|
dir_layout->addSpacing( 10 );
|
|
dir_layout->addWidget( lad_tw );
|
|
#ifdef LMMS_HAVE_STK
|
|
dir_layout->addSpacing( 10 );
|
|
dir_layout->addWidget( stk_tw );
|
|
#endif
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
dir_layout->addSpacing( 10 );
|
|
dir_layout->addWidget( sf_tw );
|
|
#endif
|
|
dir_layout->addStretch();
|
|
|
|
|
|
|
|
|
|
|
|
QWidget * performance = new QWidget( ws );
|
|
performance->setFixedSize( 360, 240 );
|
|
QVBoxLayout * perf_layout = new QVBoxLayout( performance );
|
|
perf_layout->setSpacing( 0 );
|
|
perf_layout->setMargin( 0 );
|
|
labelWidget( performance, tr( "Performance settings" ) );
|
|
|
|
tabWidget * ui_fx_tw = new tabWidget( tr( "UI effects vs. "
|
|
"performance" ).toUpper(),
|
|
performance );
|
|
ui_fx_tw->setFixedHeight( 120 );
|
|
|
|
ledCheckBox * disable_ch_act_ind = new ledCheckBox(
|
|
tr( "Disable channel activity indicators" ),
|
|
ui_fx_tw );
|
|
disable_ch_act_ind->move( 10, 20 );
|
|
disable_ch_act_ind->setChecked( m_disableChActInd );
|
|
connect( disable_ch_act_ind, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleDisableChActInd( bool ) ) );
|
|
|
|
|
|
ledCheckBox * manual_ch_piano = new ledCheckBox(
|
|
tr( "Only press keys on channel-piano manually" ),
|
|
ui_fx_tw );
|
|
manual_ch_piano->move( 10, 40 );
|
|
manual_ch_piano->setChecked( m_manualChPiano );
|
|
connect( manual_ch_piano, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleManualChPiano( bool ) ) );
|
|
|
|
ledCheckBox * smoothScroll = new ledCheckBox(
|
|
tr( "Smooth scroll in Song Editor" ), ui_fx_tw );
|
|
smoothScroll->move( 10, 60 );
|
|
smoothScroll->setChecked( m_smoothScroll );
|
|
connect( smoothScroll, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleSmoothScroll( bool ) ) );
|
|
|
|
|
|
ledCheckBox * autoSave = new ledCheckBox(
|
|
tr( "Enable auto save feature" ), ui_fx_tw );
|
|
autoSave->move( 10, 80 );
|
|
autoSave->setChecked( m_enableAutoSave );
|
|
connect( autoSave, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleAutoSave( bool ) ) );
|
|
|
|
|
|
ledCheckBox * animAFP = new ledCheckBox(
|
|
tr( "Show playback cursor in AudioFileProcessor" ),
|
|
ui_fx_tw );
|
|
animAFP->move( 10, 100 );
|
|
animAFP->setChecked( m_animateAFP );
|
|
connect( animAFP, SIGNAL( toggled( bool ) ),
|
|
this, SLOT( toggleAnimateAFP( bool ) ) );
|
|
|
|
|
|
|
|
perf_layout->addWidget( ui_fx_tw );
|
|
perf_layout->addStretch();
|
|
|
|
|
|
|
|
QWidget * audio = new QWidget( ws );
|
|
audio->setFixedSize( 360, 200 );
|
|
QVBoxLayout * audio_layout = new QVBoxLayout( audio );
|
|
audio_layout->setSpacing( 0 );
|
|
audio_layout->setMargin( 0 );
|
|
labelWidget( audio, tr( "Audio settings" ) );
|
|
|
|
tabWidget * audioiface_tw = new tabWidget( tr( "AUDIO INTERFACE" ),
|
|
audio );
|
|
audioiface_tw->setFixedHeight( 60 );
|
|
|
|
m_audioInterfaces = new QComboBox( audioiface_tw );
|
|
m_audioInterfaces->setGeometry( 10, 20, 240, 22 );
|
|
|
|
|
|
QPushButton * audio_help_btn = new QPushButton(
|
|
embed::getIconPixmap( "help" ), "", audioiface_tw );
|
|
audio_help_btn->setGeometry( 320, 20, 28, 28 );
|
|
connect( audio_help_btn, SIGNAL( clicked() ), this,
|
|
SLOT( displayAudioHelp() ) );
|
|
|
|
|
|
// create ifaces-settings-widget
|
|
QWidget * asw = new QWidget( audio );
|
|
asw->setFixedHeight( 60 );
|
|
|
|
QHBoxLayout * asw_layout = new QHBoxLayout( asw );
|
|
asw_layout->setSpacing( 0 );
|
|
asw_layout->setMargin( 0 );
|
|
//asw_layout->setAutoAdd( true );
|
|
|
|
#ifdef LMMS_HAVE_JACK
|
|
m_audioIfaceSetupWidgets[AudioJack::name()] =
|
|
new AudioJack::setupWidget( asw );
|
|
#endif
|
|
|
|
#ifdef LMMS_HAVE_ALSA
|
|
m_audioIfaceSetupWidgets[AudioAlsa::name()] =
|
|
new AudioAlsa::setupWidget( asw );
|
|
#endif
|
|
|
|
#ifdef LMMS_HAVE_PULSEAUDIO
|
|
m_audioIfaceSetupWidgets[AudioPulseAudio::name()] =
|
|
new AudioPulseAudio::setupWidget( asw );
|
|
#endif
|
|
|
|
#ifdef LMMS_HAVE_PORTAUDIO
|
|
m_audioIfaceSetupWidgets[AudioPortAudio::name()] =
|
|
new AudioPortAudio::setupWidget( asw );
|
|
#endif
|
|
|
|
#ifdef LMMS_HAVE_SDL
|
|
m_audioIfaceSetupWidgets[AudioSdl::name()] =
|
|
new AudioSdl::setupWidget( asw );
|
|
#endif
|
|
|
|
#ifdef LMMS_HAVE_OSS
|
|
m_audioIfaceSetupWidgets[AudioOss::name()] =
|
|
new AudioOss::setupWidget( asw );
|
|
#endif
|
|
m_audioIfaceSetupWidgets[AudioDummy::name()] =
|
|
new AudioDummy::setupWidget( asw );
|
|
|
|
|
|
for( AswMap::iterator it = m_audioIfaceSetupWidgets.begin();
|
|
it != m_audioIfaceSetupWidgets.end(); ++it )
|
|
{
|
|
m_audioIfaceNames[tr( it.key().toAscii())] = it.key();
|
|
}
|
|
for( trMap::iterator it = m_audioIfaceNames.begin();
|
|
it != m_audioIfaceNames.end(); ++it )
|
|
{
|
|
QWidget * audioWidget = m_audioIfaceSetupWidgets[it.value()];
|
|
audioWidget->hide();
|
|
asw_layout->addWidget( audioWidget );
|
|
m_audioInterfaces->addItem( it.key() );
|
|
}
|
|
m_audioInterfaces->setCurrentIndex( m_audioInterfaces->findText(
|
|
tr( engine::getMixer()->audioDevName().toAscii() ) ) );
|
|
m_audioIfaceSetupWidgets[engine::getMixer()->audioDevName()]->show();
|
|
|
|
connect( m_audioInterfaces, SIGNAL( activated( const QString & ) ),
|
|
this, SLOT( audioInterfaceChanged( const QString & ) ) );
|
|
|
|
|
|
audio_layout->addWidget( audioiface_tw );
|
|
audio_layout->addSpacing( 20 );
|
|
audio_layout->addWidget( asw );
|
|
audio_layout->addStretch();
|
|
|
|
|
|
|
|
|
|
QWidget * midi = new QWidget( ws );
|
|
QVBoxLayout * midi_layout = new QVBoxLayout( midi );
|
|
midi_layout->setSpacing( 0 );
|
|
midi_layout->setMargin( 0 );
|
|
labelWidget( midi, tr( "MIDI settings" ) );
|
|
|
|
tabWidget * midiiface_tw = new tabWidget( tr( "MIDI INTERFACE" ),
|
|
midi );
|
|
midiiface_tw->setFixedHeight( 60 );
|
|
|
|
m_midiInterfaces = new QComboBox( midiiface_tw );
|
|
m_midiInterfaces->setGeometry( 10, 20, 240, 22 );
|
|
|
|
|
|
QPushButton * midi_help_btn = new QPushButton(
|
|
embed::getIconPixmap( "help" ), "", midiiface_tw );
|
|
midi_help_btn->setGeometry( 320, 20, 28, 28 );
|
|
connect( midi_help_btn, SIGNAL( clicked() ), this,
|
|
SLOT( displayMIDIHelp() ) );
|
|
|
|
|
|
// create ifaces-settings-widget
|
|
QWidget * msw = new QWidget( midi );
|
|
msw->setFixedHeight( 60 );
|
|
|
|
QHBoxLayout * msw_layout = new QHBoxLayout( msw );
|
|
msw_layout->setSpacing( 0 );
|
|
msw_layout->setMargin( 0 );
|
|
//msw_layout->setAutoAdd( true );
|
|
|
|
#ifdef LMMS_HAVE_ALSA
|
|
m_midiIfaceSetupWidgets[MidiAlsaSeq::name()] =
|
|
new MidiAlsaSeq::setupWidget( msw );
|
|
m_midiIfaceSetupWidgets[MidiAlsaRaw::name()] =
|
|
new MidiAlsaRaw::setupWidget( msw );
|
|
#endif
|
|
|
|
#ifdef LMMS_HAVE_OSS
|
|
m_midiIfaceSetupWidgets[MidiOss::name()] =
|
|
new MidiOss::setupWidget( msw );
|
|
#endif
|
|
|
|
#ifdef LMMS_BUILD_WIN32
|
|
m_midiIfaceSetupWidgets[MidiWinMM::name()] =
|
|
new MidiWinMM::setupWidget( msw );
|
|
#endif
|
|
|
|
m_midiIfaceSetupWidgets[MidiDummy::name()] =
|
|
new MidiDummy::setupWidget( msw );
|
|
|
|
|
|
for( MswMap::iterator it = m_midiIfaceSetupWidgets.begin();
|
|
it != m_midiIfaceSetupWidgets.end(); ++it )
|
|
{
|
|
m_midiIfaceNames[tr( it.key().toAscii())] = it.key();
|
|
}
|
|
for( trMap::iterator it = m_midiIfaceNames.begin();
|
|
it != m_midiIfaceNames.end(); ++it )
|
|
{
|
|
QWidget * midiWidget = m_midiIfaceSetupWidgets[it.value()];
|
|
midiWidget->hide();
|
|
msw_layout->addWidget( midiWidget );
|
|
m_midiInterfaces->addItem( it.key() );
|
|
}
|
|
|
|
m_midiInterfaces->setCurrentIndex( m_midiInterfaces->findText(
|
|
tr( engine::getMixer()->midiClientName().toAscii() ) ) );
|
|
m_midiIfaceSetupWidgets[engine::getMixer()->midiClientName()]->show();
|
|
|
|
connect( m_midiInterfaces, SIGNAL( activated( const QString & ) ),
|
|
this, SLOT( midiInterfaceChanged( const QString & ) ) );
|
|
|
|
|
|
midi_layout->addWidget( midiiface_tw );
|
|
midi_layout->addSpacing( 20 );
|
|
midi_layout->addWidget( msw );
|
|
midi_layout->addStretch();
|
|
|
|
|
|
m_tabBar->addTab( general, tr( "General settings" ), 0, false, true
|
|
)->setIcon( embed::getIconPixmap( "setup_general" ) );
|
|
m_tabBar->addTab( paths, tr( "Paths" ), 1, false, true
|
|
)->setIcon( embed::getIconPixmap(
|
|
"setup_directories" ) );
|
|
m_tabBar->addTab( performance, tr( "Performance settings" ), 2, false,
|
|
true )->setIcon( embed::getIconPixmap(
|
|
"setup_performance" ) );
|
|
m_tabBar->addTab( audio, tr( "Audio settings" ), 3, false, true
|
|
)->setIcon( embed::getIconPixmap( "setup_audio" ) );
|
|
m_tabBar->addTab( midi, tr( "MIDI settings" ), 4, true, true
|
|
)->setIcon( embed::getIconPixmap( "setup_midi" ) );
|
|
|
|
|
|
m_tabBar->setActiveTab( _tab_to_open );
|
|
|
|
hlayout->addWidget( m_tabBar );
|
|
hlayout->addSpacing( 10 );
|
|
hlayout->addWidget( ws );
|
|
hlayout->addSpacing( 10 );
|
|
hlayout->addStretch();
|
|
|
|
QWidget * buttons = new QWidget( this );
|
|
QHBoxLayout * btn_layout = new QHBoxLayout( buttons );
|
|
btn_layout->setSpacing( 0 );
|
|
btn_layout->setMargin( 0 );
|
|
QPushButton * ok_btn = new QPushButton( embed::getIconPixmap( "apply" ),
|
|
tr( "OK" ), buttons );
|
|
connect( ok_btn, SIGNAL( clicked() ), this, SLOT( accept() ) );
|
|
|
|
QPushButton * cancel_btn = new QPushButton( embed::getIconPixmap(
|
|
"cancel" ),
|
|
tr( "Cancel" ),
|
|
buttons );
|
|
connect( cancel_btn, SIGNAL( clicked() ), this, SLOT( reject() ) );
|
|
|
|
btn_layout->addStretch();
|
|
btn_layout->addSpacing( 10 );
|
|
btn_layout->addWidget( ok_btn );
|
|
btn_layout->addSpacing( 10 );
|
|
btn_layout->addWidget( cancel_btn );
|
|
btn_layout->addSpacing( 10 );
|
|
|
|
vlayout->addWidget( settings );
|
|
vlayout->addSpacing( 10 );
|
|
vlayout->addWidget( buttons );
|
|
vlayout->addSpacing( 10 );
|
|
vlayout->addStretch();
|
|
|
|
show();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setupDialog::~setupDialog()
|
|
{
|
|
engine::projectJournal()->setJournalling( true );
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::accept()
|
|
{
|
|
configManager::inst()->setValue( "mixer", "framesperaudiobuffer",
|
|
QString::number( m_bufferSize ) );
|
|
configManager::inst()->setValue( "mixer", "audiodev",
|
|
m_audioIfaceNames[m_audioInterfaces->currentText()] );
|
|
configManager::inst()->setValue( "mixer", "mididev",
|
|
m_midiIfaceNames[m_midiInterfaces->currentText()] );
|
|
configManager::inst()->setValue( "tooltips", "disabled",
|
|
QString::number( !m_toolTips ) );
|
|
configManager::inst()->setValue( "app", "nomsgaftersetup",
|
|
QString::number( !m_warnAfterSetup ) );
|
|
configManager::inst()->setValue( "app", "displaydbv",
|
|
QString::number( m_displaydBV ) );
|
|
configManager::inst()->setValue( "app", "nommpz",
|
|
QString::number( !m_MMPZ ) );
|
|
configManager::inst()->setValue( "mixer", "hqaudio",
|
|
QString::number( m_hqAudioDev ) );
|
|
configManager::inst()->setValue( "ui",
|
|
"disablechannelactivityindicators",
|
|
QString::number( m_disableChActInd ) );
|
|
configManager::inst()->setValue( "ui", "manualchannelpiano",
|
|
QString::number( m_manualChPiano ) );
|
|
configManager::inst()->setValue( "ui", "smoothscroll",
|
|
QString::number( m_smoothScroll ) );
|
|
configManager::inst()->setValue( "ui", "enableautosave",
|
|
QString::number( m_enableAutoSave ) );
|
|
configManager::inst()->setValue( "ui", "oneinstrumenttrackwindow",
|
|
QString::number( m_oneInstrumentTrackWindow ) );
|
|
configManager::inst()->setValue( "ui", "compacttrackbuttons",
|
|
QString::number( m_compactTrackButtons ) );
|
|
configManager::inst()->setValue( "ui", "syncvstplugins",
|
|
QString::number( m_syncVSTPlugins ) );
|
|
configManager::inst()->setValue( "ui", "animateafp",
|
|
QString::number( m_animateAFP ) );
|
|
configManager::inst()->setValue( "ui", "printnotelabels",
|
|
QString::number( m_printNoteLabels ) );
|
|
|
|
|
|
configManager::inst()->setWorkingDir( m_workingDir );
|
|
configManager::inst()->setVSTDir( m_vstDir );
|
|
configManager::inst()->setArtworkDir( m_artworkDir );
|
|
configManager::inst()->setFLDir( m_flDir );
|
|
configManager::inst()->setLADSPADir( m_ladDir );
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
configManager::inst()->setDefaultSoundfont( m_defaultSoundfont );
|
|
#endif
|
|
#ifdef LMMS_HAVE_STK
|
|
configManager::inst()->setSTKDir( m_stkDir );
|
|
#endif
|
|
configManager::inst()->setBackgroundArtwork( m_backgroundArtwork );
|
|
|
|
// tell all audio-settings-widget to save their settings
|
|
for( AswMap::iterator it = m_audioIfaceSetupWidgets.begin();
|
|
it != m_audioIfaceSetupWidgets.end(); ++it )
|
|
{
|
|
it.value()->saveSettings();
|
|
}
|
|
// tell all MIDI-settings-widget to save their settings
|
|
for( MswMap::iterator it = m_midiIfaceSetupWidgets.begin();
|
|
it != m_midiIfaceSetupWidgets.end(); ++it )
|
|
{
|
|
it.value()->saveSettings();
|
|
}
|
|
|
|
configManager::inst()->saveConfigFile();
|
|
|
|
QDialog::accept();
|
|
if( m_warnAfterSetup )
|
|
{
|
|
QMessageBox::information( NULL, tr( "Restart LMMS" ),
|
|
tr( "Please note that most changes "
|
|
"won't take effect until "
|
|
"you restart LMMS!" ),
|
|
QMessageBox::Ok );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setBufferSize( int _value )
|
|
{
|
|
const int step = DEFAULT_BUFFER_SIZE / 64;
|
|
if( _value > step && _value % step )
|
|
{
|
|
int mod_value = _value % step;
|
|
if( mod_value < step / 2 )
|
|
{
|
|
m_bufSizeSlider->setValue( _value - mod_value );
|
|
}
|
|
else
|
|
{
|
|
m_bufSizeSlider->setValue( _value + step - mod_value );
|
|
}
|
|
return;
|
|
}
|
|
|
|
if( m_bufSizeSlider->value() != _value )
|
|
{
|
|
m_bufSizeSlider->setValue( _value );
|
|
}
|
|
|
|
m_bufferSize = _value * 64;
|
|
m_bufSizeLbl->setText( tr( "Frames: %1\nLatency: %2 ms" ).arg(
|
|
m_bufferSize ).arg(
|
|
1000.0f * m_bufferSize /
|
|
engine::getMixer()->processingSampleRate(),
|
|
0, 'f', 1 ) );
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::resetBufSize()
|
|
{
|
|
setBufferSize( DEFAULT_BUFFER_SIZE / 64 );
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::displayBufSizeHelp()
|
|
{
|
|
QWhatsThis::showText( QCursor::pos(),
|
|
tr( "Here you can setup the internal buffer-size "
|
|
"used by LMMS. Smaller values result "
|
|
"in a lower latency but also may cause "
|
|
"unusable sound or bad performance, "
|
|
"especially on older computers or "
|
|
"systems with a non-realtime "
|
|
"kernel." ) );
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleToolTips( bool _enabled )
|
|
{
|
|
m_toolTips = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleWarnAfterSetup( bool _enabled )
|
|
{
|
|
m_warnAfterSetup = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleDisplaydBV( bool _enabled )
|
|
{
|
|
m_displaydBV = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleMMPZ( bool _enabled )
|
|
{
|
|
m_MMPZ = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleHQAudioDev( bool _enabled )
|
|
{
|
|
m_hqAudioDev = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleDisableChActInd( bool _disabled )
|
|
{
|
|
m_disableChActInd = _disabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleManualChPiano( bool _enabled )
|
|
{
|
|
m_manualChPiano = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleSmoothScroll( bool _enabled )
|
|
{
|
|
m_smoothScroll = _enabled;
|
|
}
|
|
|
|
|
|
|
|
void setupDialog::toggleAutoSave( bool _enabled )
|
|
{
|
|
m_enableAutoSave = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleCompactTrackButtons( bool _enabled )
|
|
{
|
|
m_compactTrackButtons = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void setupDialog::toggleSyncVSTPlugins( bool _enabled )
|
|
{
|
|
m_syncVSTPlugins = _enabled;
|
|
}
|
|
|
|
void setupDialog::toggleAnimateAFP( bool _enabled )
|
|
{
|
|
m_animateAFP = _enabled;
|
|
}
|
|
|
|
|
|
void setupDialog::toggleNoteLabels( bool en )
|
|
{
|
|
m_printNoteLabels = en;
|
|
}
|
|
|
|
|
|
void setupDialog::toggleOneInstrumentTrackWindow( bool _enabled )
|
|
{
|
|
m_oneInstrumentTrackWindow = _enabled;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void setupDialog::openWorkingDir()
|
|
{
|
|
QString new_dir = QFileDialog::getExistingDirectory( this,
|
|
tr( "Choose LMMS working directory" ),
|
|
m_workingDir
|
|
#if QT_VERSION >= 0x040806
|
|
, QFileDialog::DontUseCustomDirectoryIcons
|
|
#endif
|
|
);
|
|
if( new_dir != QString::null )
|
|
{
|
|
m_wdLineEdit->setText( new_dir );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setWorkingDir( const QString & _wd )
|
|
{
|
|
m_workingDir = _wd;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::openVSTDir()
|
|
{
|
|
QString new_dir = QFileDialog::getExistingDirectory( this,
|
|
tr( "Choose your VST-plugin directory" ),
|
|
m_vstDir );
|
|
if( new_dir != QString::null )
|
|
{
|
|
m_vdLineEdit->setText( new_dir );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setVSTDir( const QString & _vd )
|
|
{
|
|
m_vstDir = _vd;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::openArtworkDir()
|
|
{
|
|
QString new_dir = QFileDialog::getExistingDirectory( this,
|
|
tr( "Choose artwork-theme directory" ),
|
|
m_artworkDir );
|
|
if( new_dir != QString::null )
|
|
{
|
|
m_adLineEdit->setText( new_dir );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setArtworkDir( const QString & _ad )
|
|
{
|
|
m_artworkDir = _ad;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::openFLDir()
|
|
{
|
|
QString new_dir = QFileDialog::getExistingDirectory( this,
|
|
tr( "Choose FL Studio installation directory" ),
|
|
m_flDir );
|
|
if( new_dir != QString::null )
|
|
{
|
|
m_fdLineEdit->setText( new_dir );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::openLADSPADir()
|
|
{
|
|
QString new_dir = QFileDialog::getExistingDirectory( this,
|
|
tr( "Choose LADSPA plugin directory" ),
|
|
m_ladDir );
|
|
if( new_dir != QString::null )
|
|
{
|
|
if( m_ladLineEdit->text() == "" )
|
|
{
|
|
m_ladLineEdit->setText( new_dir );
|
|
}
|
|
else
|
|
{
|
|
m_ladLineEdit->setText( m_ladLineEdit->text() + "," +
|
|
new_dir );
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::openSTKDir()
|
|
{
|
|
#ifdef LMMS_HAVE_STK
|
|
QString new_dir = QFileDialog::getExistingDirectory( this,
|
|
tr( "Choose STK rawwave directory" ),
|
|
m_stkDir );
|
|
if( new_dir != QString::null )
|
|
{
|
|
m_stkLineEdit->setText( new_dir );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::openDefaultSoundfont()
|
|
{
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
QString new_file = QFileDialog::getOpenFileName( this,
|
|
tr( "Choose default SoundFont" ), m_defaultSoundfont,
|
|
"SoundFont2 Files (*.sf2)" );
|
|
|
|
if( new_file != QString::null )
|
|
{
|
|
m_sfLineEdit->setText( new_file );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::openBackgroundArtwork()
|
|
{
|
|
QList<QByteArray> fileTypesList = QImageReader::supportedImageFormats();
|
|
QString fileTypes;
|
|
for( int i = 0; i < fileTypesList.count(); i++ )
|
|
{
|
|
if( fileTypesList[i] != fileTypesList[i].toUpper() )
|
|
{
|
|
if( !fileTypes.isEmpty() )
|
|
{
|
|
fileTypes += " ";
|
|
}
|
|
fileTypes += "*." + QString( fileTypesList[i] );
|
|
}
|
|
}
|
|
|
|
QString dir = ( m_backgroundArtwork.isEmpty() ) ?
|
|
m_artworkDir :
|
|
m_backgroundArtwork;
|
|
QString new_file = QFileDialog::getOpenFileName( this,
|
|
tr( "Choose background artwork" ), dir,
|
|
"Image Files (" + fileTypes + ")" );
|
|
|
|
if( new_file != QString::null )
|
|
{
|
|
m_baLineEdit->setText( new_file );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setFLDir( const QString & _fd )
|
|
{
|
|
m_flDir = _fd;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setLADSPADir( const QString & _fd )
|
|
{
|
|
m_ladDir = _fd;
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setSTKDir( const QString & _fd )
|
|
{
|
|
#ifdef LMMS_HAVE_STK
|
|
m_stkDir = _fd;
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setDefaultSoundfont( const QString & _sf )
|
|
{
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
m_defaultSoundfont = _sf;
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::setBackgroundArtwork( const QString & _ba )
|
|
{
|
|
#ifdef LMMS_HAVE_FLUIDSYNTH
|
|
m_backgroundArtwork = _ba;
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::audioInterfaceChanged( const QString & _iface )
|
|
{
|
|
for( AswMap::iterator it = m_audioIfaceSetupWidgets.begin();
|
|
it != m_audioIfaceSetupWidgets.end(); ++it )
|
|
{
|
|
it.value()->hide();
|
|
}
|
|
|
|
m_audioIfaceSetupWidgets[m_audioIfaceNames[_iface]]->show();
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::displayAudioHelp()
|
|
{
|
|
QWhatsThis::showText( QCursor::pos(),
|
|
tr( "Here you can select your preferred "
|
|
"audio-interface. Depending on the "
|
|
"configuration of your system during "
|
|
"compilation time you can choose "
|
|
"between ALSA, JACK, OSS and more. "
|
|
"Below you see a box which offers "
|
|
"controls to setup the selected "
|
|
"audio-interface." ) );
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::midiInterfaceChanged( const QString & _iface )
|
|
{
|
|
for( MswMap::iterator it = m_midiIfaceSetupWidgets.begin();
|
|
it != m_midiIfaceSetupWidgets.end(); ++it )
|
|
{
|
|
it.value()->hide();
|
|
}
|
|
|
|
m_midiIfaceSetupWidgets[m_midiIfaceNames[_iface]]->show();
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDialog::displayMIDIHelp()
|
|
{
|
|
QWhatsThis::showText( QCursor::pos(),
|
|
tr( "Here you can select your preferred "
|
|
"MIDI-interface. Depending on the "
|
|
"configuration of your system during "
|
|
"compilation time you can choose "
|
|
"between ALSA, OSS and more. "
|
|
"Below you see a box which offers "
|
|
"controls to setup the selected "
|
|
"MIDI-interface." ) );
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "moc_setup_dialog.cxx"
|
|
|