You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/arts/builder/execdlg.cpp

202 lines
4.9 KiB

/*
Copyright (C) 1998 Stefan Westerfeld
stefan@space.twc.de
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; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <tqfile.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqbuttongroup.h>
#include <tqradiobutton.h>
#include <tqlineedit.h>
#include <kbuttonbox.h>
#include <tdefiledialog.h>
#include <kseparator.h>
#include <tdelocale.h>
#include <tdeapplication.h>
#include <kstdguiitem.h>
#include <unistd.h>
#include "execdlg.h"
#include "dirmanager.h"
#include <arts/debug.h>
#include <tqpushbutton.h>
#ifndef KDE_USE_FINAL
static void min_size(TQWidget *w) {
w->setMinimumSize(w->sizeHint());
}
#endif
ExecDlg::ExecDlg(TQWidget *parent, ExecutableStructure *structure)
:TQDialog(parent,"X")
/*, TRUE)*/
{
this->structure = structure;
setCaption(i18n("aRts Module Execution"));
mainlayout = new TQVBoxLayout(this);
// caption label: "Synthesis running..."
mainlayout->addSpacing(5);
TQLabel *captionlabel = new TQLabel(this);
TQFont labelfont(captionlabel->font());
labelfont.setPointSize(labelfont.pointSize()*3/2);
captionlabel->setFont(labelfont);
captionlabel->setText(TQString(" ")+i18n("Synthesis running...")+TQString(" "));
captionlabel->setAlignment(AlignCenter);
min_size(captionlabel);
mainlayout->addWidget(captionlabel);
cpuusagelabel = new TQLabel(this);
cpuusagelabel->setText(i18n("CPU usage: unknown"));
cpuusagetimer = new TQTimer( this );
connect( cpuusagetimer, TQT_SIGNAL(timeout()),
this, TQT_SLOT(updateCpuUsage()) );
connect( cpuusagetimer, TQT_SIGNAL(timeout()),
this, TQT_SLOT(guiServerTick()) );
cpuusagetimer->start( 2000, false );
min_size(cpuusagelabel);
mainlayout->addWidget(cpuusagelabel);
// ruler above the sliderlayout
mainlayout->addSpacing(5);
KSeparator* sep = new KSeparator( KSeparator::HLine, this);
mainlayout->addWidget(sep);
mainlayout->addSpacing(5);
// sliders, controlpanels
sliderlayout = new TQVBoxLayout;
mainlayout->addLayout(sliderlayout);
#if 0 /* PORT */
this->GUIServer = GUIServer;
GUIServer->setGlobalParent(this);
GUIServer->setGlobalLayout(sliderlayout);
#endif
// hruler below the sliderlayout
mainlayout->addSpacing(5);
sep = new KSeparator( KSeparator::HLine, this);
mainlayout->addWidget(sep);
mainlayout->addSpacing(5);
// buttons
TQHBoxLayout *buttonlayout = new TQHBoxLayout;
mainlayout->addSpacing(5);
mainlayout->addLayout(buttonlayout);
mainlayout->addSpacing(5);
buttonlayout->addSpacing(5);
KButtonBox *bbox = new KButtonBox(this);
bbox->addButton(KStdGuiItem::help(), this, TQT_SLOT( help() ));
bbox->addStretch(1);
TQButton *savebutton = bbox->addButton(KStdGuiItem::saveAs());
connect( savebutton, TQT_SIGNAL( clicked() ), TQT_SLOT(saveSession() ) );
TQButton *okbutton = bbox->addButton(KStdGuiItem::ok());
connect( okbutton, TQT_SIGNAL( clicked() ), TQT_SLOT(accept() ) );
bbox->layout();
//min_size(bbox);
buttonlayout->addWidget(bbox);
buttonlayout->addSpacing(5);
// mainlayout->freeze();
}
void ExecDlg::start()
{
mainlayout->freeze();
}
void ExecDlg::guiServerTick()
{
#if 0 /* TODO:PORT */
GUIServer->tick();
#endif
}
void ExecDlg::updateCpuUsage()
{
#if 0 /* TODO:PORT */
char cpuusage[100];
ArtsCorba::Status s = Synthesizer->getStatus();
if(s.halted)
{
cpuusagetimer->stop();
accept();
PortableKDE::KMsgSorry(this,i18n("Your synthesis has been interrupted due to excessive CPU load."));
/*
KMsgBox::message(this,i18n("Error"),
i18n("Your synthesis has been interrupted due to excessive CPU load."),
KMsgBox::STOP);
*/
// warning: this is invalid after accept();
return;
}
sprintf(cpuusage,"%s%3.2f%%",
(const char *)i18n("CPU usage: "),s.cpu_usage*100);
cpuusagelabel->setText(cpuusage);
if(!structure->isExecuting()) accept();
// warning: this is invalid after accept();
#endif
}
void ExecDlg::done( int r )
{
structure->stopExecute();
TQDialog::done(r);
emit ready();
}
void ExecDlg::saveSession()
{
chdir(DirManager::sessionDir());
TQString filename = KFileDialog::getSaveFileName(0,"*.arts-session",this);
if(!filename.isEmpty())
{
arts_debug("save... %s",filename.local8Bit().data());
structure->saveSession(TQFile::encodeName(filename));
}
}
void ExecDlg::help()
{
TDEApplication::kApplication()->invokeHelp("", "karts");
}
#include "execdlg.moc"