|
|
|
/***************************************************************************
|
|
|
|
voicesetupdlg.cpp - description
|
|
|
|
-------------------
|
|
|
|
begin : Son Nov 2 2003
|
|
|
|
copyright : (C) 2003 by Robert Vogl
|
|
|
|
email : voglrobe@saphir
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
// #include <iostream>
|
|
|
|
// using namespace std;
|
|
|
|
|
|
|
|
// QT includes
|
|
|
|
#include <tqpixmap.h>
|
|
|
|
#include <tqstringlist.h>
|
|
|
|
#include <tqcombobox.h>
|
|
|
|
#include <tqcolor.h>
|
|
|
|
#include <tqlayout.h>
|
|
|
|
#include <tqwidget.h>
|
|
|
|
|
|
|
|
// KDE includes
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kglobal.h>
|
|
|
|
#include <klocale.h>
|
|
|
|
#include <kiconloader.h>
|
|
|
|
#include <kmessagebox.h>
|
|
|
|
|
|
|
|
// App specific includes
|
|
|
|
#include "voicesetupdlg.h"
|
|
|
|
#include "fxsetupimpl.h"
|
|
|
|
#include "fxpluginhandler.h"
|
|
|
|
#include "kttsdlib.h"
|
|
|
|
|
|
|
|
VoiceSetupDlg::VoiceSetupDlg(TQWidget *parent, const char *name, const TQString &caption,
|
|
|
|
bool modal,
|
|
|
|
KConfig *config,
|
|
|
|
FXPluginHandler *fxpluginhandler,
|
|
|
|
KTTSDLib *ttslib)
|
|
|
|
: KDialogBase(IconList, caption, Ok|Cancel, Ok, parent, name, modal, true),
|
|
|
|
m_config(config),
|
|
|
|
m_fxpluginhandler(fxpluginhandler),
|
|
|
|
m_kttslib(ttslib)
|
|
|
|
{
|
|
|
|
|
|
|
|
setIconListAllVisible(true);
|
|
|
|
connect (this, TQT_SIGNAL(aboutToShowPage(TQWidget*)), this, TQT_SLOT(slotPageChanged(TQWidget*)));
|
|
|
|
|
|
|
|
initVoicePage();
|
|
|
|
initFXPage();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
VoiceSetupDlg::~VoiceSetupDlg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void VoiceSetupDlg::initVoicePage()
|
|
|
|
{
|
|
|
|
TQPixmap icon = KGlobal::iconLoader()->loadIcon("ksayit", KIcon::Toolbar, KIcon::SizeMedium);
|
|
|
|
TQFrame *voicePage = addPage( i18n( "Voice" ), i18n("Voice Settings"), icon );
|
|
|
|
TQVBoxLayout *voiceLayout = new TQVBoxLayout( voicePage, 0, spacingHint() );
|
|
|
|
|
|
|
|
const TQWidget *voiceDialog = m_kttslib->getGUI( voicePage );
|
|
|
|
voiceLayout->addWidget( const_cast<TQWidget*>(voiceDialog) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void VoiceSetupDlg::initFXPage()
|
|
|
|
{
|
|
|
|
TQPixmap icon = KGlobal::iconLoader()->loadIcon("ksysguard", KIcon::Toolbar, KIcon::SizeMedium);
|
|
|
|
m_fxPage = addPage( i18n( "Audio FX" ), i18n("Effect Stack"), icon );
|
|
|
|
TQVBoxLayout *fxLayout = new TQVBoxLayout( m_fxPage, 0, spacingHint() );
|
|
|
|
|
|
|
|
FX_SetupImpl *fxDialog = new FX_SetupImpl(m_fxPage, "fxsetup", m_config, m_fxpluginhandler);
|
|
|
|
fxLayout->addWidget(fxDialog);
|
|
|
|
connect( this, TQT_SIGNAL(signalOKWasClicked()), fxDialog, TQT_SLOT(slotSaveWasClicked()) );
|
|
|
|
connect( this, TQT_SIGNAL(signalRemoveAllFX()), fxDialog, TQT_SLOT(slotRemoveAll()) );
|
|
|
|
connect( this, TQT_SIGNAL(signalReloadFX()), fxDialog, TQT_SLOT(slotReload()) );
|
|
|
|
|
|
|
|
// Disable/enable FX-Setup depending on TTS-libs capability
|
|
|
|
int status = m_kttslib->gettqStatus() & TTS::AUDIOFILE;
|
|
|
|
if ( status ){
|
|
|
|
m_fxPage->setEnabled(true);
|
|
|
|
} else {
|
|
|
|
m_fxPage->setEnabled(false);
|
|
|
|
emit signalRemoveAllFX();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void VoiceSetupDlg::slotPageChanged(TQWidget *page)
|
|
|
|
{
|
|
|
|
kdDebug(100200) << "+++ entering VoiceSetupDlg::slotPageChanged: " << page << endl;
|
|
|
|
|
|
|
|
if ( page != m_fxPage )
|
|
|
|
return;
|
|
|
|
|
|
|
|
int status = m_kttslib->gettqStatus() & TTS::AUDIOFILE;
|
|
|
|
if ( status ){
|
|
|
|
m_fxPage->setEnabled(true);
|
|
|
|
} else {
|
|
|
|
TQString q = i18n("The active TTS system does not make use of aRts effects.");
|
|
|
|
KMessageBox::information( this, q, i18n("Plugin Configuration"), "KSayIt_Audiofile" );
|
|
|
|
m_fxPage->setEnabled(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void VoiceSetupDlg::slotOk()
|
|
|
|
{
|
|
|
|
kdDebug(100200) << "+++ entering VoiceSetupDlg::slotOK()" << endl;
|
|
|
|
|
|
|
|
int status = m_kttslib->gettqStatus();
|
|
|
|
if ( (status & TTS::AUDIOFILE) == 0 ){
|
|
|
|
emit signalRemoveAllFX();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let all objects save their configuration
|
|
|
|
emit signalOKWasClicked();
|
|
|
|
|
|
|
|
// check if configuration was saved O.K.
|
|
|
|
if ( m_kttslib->saveWasClicked() ){
|
|
|
|
kdDebug(100200) << "--- leaving VoiceSetupDlg::slotOk" << endl;
|
|
|
|
TQDialog::accept();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void VoiceSetupDlg::slotCancel()
|
|
|
|
{
|
|
|
|
kdDebug(100200) << "VoiceSetupDlg::slotCancel()" << endl;
|
|
|
|
TQDialog::reject();
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "voicesetupdlg.moc"
|