1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/***************************************************************************
AmplifyFreeDialog.cpp - dialog for the "amplifyfree" plugin
-------------------
begin : Sun Sep 02 2001
copyright : (C) 2001 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.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. *
* *
***************************************************************************/
#include "config.h"
#include <QPushButton>
#include <KHelpClient>
#include <KLocalizedString>
#include "libkwave/Parser.h"
#include "libkwave/String.h"
#include "libgui/CurveWidget.h"
#include "libgui/ScaleWidget.h"
#include "AmplifyFreeDialog.h"
//***************************************************************************
Kwave::AmplifyFreeDialog::AmplifyFreeDialog(QWidget *parent)
:QDialog(parent), Ui::AmplifyFreeDlg()
{
setupUi(this);
curveWidget->setMinimumSize(150, 100);
xScale->setMinimumSize(250, 30);
xScale->setMinMax(0, 100);
xScale->setLogMode(false);
xScale->setUnit(i18n("ms"));
yScale->setMinimumSize( 30, 150);
yScale->setMinMax(0, 100);
yScale->setLogMode(false);
yScale->setUnit(i18n("%"));
connect(buttonBox_Help->button(QDialogButtonBox::Help), SIGNAL(clicked()),
this, SLOT(invokeHelp()));
// set the focus onto the "OK" button
buttonBox->button(QDialogButtonBox::Ok)->setFocus();
}
//***************************************************************************
Kwave::AmplifyFreeDialog::~AmplifyFreeDialog()
{
}
//***************************************************************************
QString Kwave::AmplifyFreeDialog::getCommand()
{
QString cmd;
Q_ASSERT(curveWidget);
Kwave::Parser p(curveWidget->getCommand());
cmd = _("amplifyfree(");
if (p.hasParams()) cmd += p.nextParam();
while (!p.isDone()) {
cmd += _(",") + p.nextParam();
}
cmd += _(")");
return cmd;
}
//***************************************************************************
void Kwave::AmplifyFreeDialog::setParams(QStringList ¶ms)
{
QStringList::Iterator it;
QString cmd = _("curve(");
it = params.begin();
if (it != params.end()) cmd += *(it++);
for (; it != params.end(); ++it)
cmd += _(",") + *it;
cmd += _(")");
if (curveWidget) curveWidget->setCurve(cmd);
}
//***************************************************************************
void Kwave::AmplifyFreeDialog::invokeHelp()
{
KHelpClient::invokeHelp(_("plugin_sect_amplifyfree"));
}
//***************************************************************************
//***************************************************************************
#include "moc_AmplifyFreeDialog.cpp"
|