diff options
Diffstat (limited to 'src/gui/editors/parameters/InstrumentParameterBox.cpp')
-rw-r--r-- | src/gui/editors/parameters/InstrumentParameterBox.cpp | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/src/gui/editors/parameters/InstrumentParameterBox.cpp b/src/gui/editors/parameters/InstrumentParameterBox.cpp index 8114e0d..1d5b99d 100644 --- a/src/gui/editors/parameters/InstrumentParameterBox.cpp +++ b/src/gui/editors/parameters/InstrumentParameterBox.cpp @@ -24,7 +24,7 @@ #include "InstrumentParameterBox.h" -#include <qlayout.h> +#include <tqlayout.h> #include <klocale.h> #include "misc/Debug.h" @@ -36,25 +36,25 @@ #include "RosegardenParameterArea.h" #include "RosegardenParameterBox.h" #include <ktabwidget.h> -#include <qfont.h> -#include <qframe.h> -#include <qscrollview.h> -#include <qstring.h> -#include <qvbox.h> -#include <qwidget.h> -#include <qwidgetstack.h> +#include <tqfont.h> +#include <tqframe.h> +#include <tqscrollview.h> +#include <tqstring.h> +#include <tqvbox.h> +#include <tqwidget.h> +#include <tqwidgetstack.h> namespace Rosegarden { InstrumentParameterBox::InstrumentParameterBox(RosegardenGUIDoc *doc, - QWidget *parent) + TQWidget *parent) : RosegardenParameterBox(i18n("Instrument"), i18n("Instrument Parameters"), parent), - m_widgetStack(new QWidgetStack(this)), - m_noInstrumentParameters(new QVBox(this)), + m_widgetStack(new TQWidgetStack(this)), + m_noInstrumentParameters(new TQVBox(this)), m_midiInstrumentParameters(new MIDIInstrumentParameterPanel(doc, this)), m_audioInstrumentParameters(new AudioInstrumentParameterPanel(doc, this)), m_selectedInstrument(-1), @@ -86,43 +86,43 @@ InstrumentParameterBox::InstrumentParameterBox(RosegardenGUIDoc *doc, m_audioInstrumentParameters->adjustSize(); m_noInstrumentParameters->adjustSize(); - connect(m_audioInstrumentParameters, SIGNAL(updateAllBoxes()), - this, SLOT(slotUpdateAllBoxes())); + connect(m_audioInstrumentParameters, TQT_SIGNAL(updateAllBoxes()), + this, TQT_SLOT(slotUpdateAllBoxes())); connect(m_audioInstrumentParameters, - SIGNAL(instrumentParametersChanged(InstrumentId)), + TQT_SIGNAL(instrumentParametersChanged(InstrumentId)), this, - SIGNAL(instrumentParametersChanged(InstrumentId))); + TQT_SIGNAL(instrumentParametersChanged(InstrumentId))); connect(m_audioInstrumentParameters, - SIGNAL(selectPlugin(QWidget *, InstrumentId, int)), + TQT_SIGNAL(selectPlugin(TQWidget *, InstrumentId, int)), this, - SIGNAL(selectPlugin(QWidget *, InstrumentId, int))); + TQT_SIGNAL(selectPlugin(TQWidget *, InstrumentId, int))); connect(m_audioInstrumentParameters, - SIGNAL(showPluginGUI(InstrumentId, int)), + TQT_SIGNAL(showPluginGUI(InstrumentId, int)), this, - SIGNAL(showPluginGUI(InstrumentId, int))); + TQT_SIGNAL(showPluginGUI(InstrumentId, int))); - connect(m_midiInstrumentParameters, SIGNAL(updateAllBoxes()), - this, SLOT(slotUpdateAllBoxes())); + connect(m_midiInstrumentParameters, TQT_SIGNAL(updateAllBoxes()), + this, TQT_SLOT(slotUpdateAllBoxes())); connect(m_midiInstrumentParameters, - SIGNAL(changeInstrumentLabel(InstrumentId, QString)), - this, SIGNAL(changeInstrumentLabel(InstrumentId, QString))); + TQT_SIGNAL(changeInstrumentLabel(InstrumentId, TQString)), + this, TQT_SIGNAL(changeInstrumentLabel(InstrumentId, TQString))); connect(m_audioInstrumentParameters, - SIGNAL(changeInstrumentLabel(InstrumentId, QString)), - this, SIGNAL(changeInstrumentLabel(InstrumentId, QString))); + TQT_SIGNAL(changeInstrumentLabel(InstrumentId, TQString)), + this, TQT_SIGNAL(changeInstrumentLabel(InstrumentId, TQString))); connect(m_midiInstrumentParameters, - SIGNAL(instrumentParametersChanged(InstrumentId)), + TQT_SIGNAL(instrumentParametersChanged(InstrumentId)), this, - SIGNAL(instrumentParametersChanged(InstrumentId))); + TQT_SIGNAL(instrumentParametersChanged(InstrumentId))); // Layout the groups left to right. - QBoxLayout* layout = new QVBoxLayout(this); + TQBoxLayout* layout = new TQVBoxLayout(this); layout->addWidget(m_widgetStack); } |