diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
commit | 11f31c37e5fa4889d9989f10272f44845449cb7b (patch) | |
tree | 4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/editors/parameters/InstrumentParameterBox.h | |
parent | 832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff) | |
download | rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/editors/parameters/InstrumentParameterBox.h')
-rw-r--r-- | src/gui/editors/parameters/InstrumentParameterBox.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/editors/parameters/InstrumentParameterBox.h b/src/gui/editors/parameters/InstrumentParameterBox.h index f406567..cc36351 100644 --- a/src/gui/editors/parameters/InstrumentParameterBox.h +++ b/src/gui/editors/parameters/InstrumentParameterBox.h @@ -29,13 +29,13 @@ #include "base/MidiProgram.h" #include "RosegardenParameterArea.h" #include "RosegardenParameterBox.h" -#include <qstring.h> +#include <tqstring.h> #include <vector> -class QWidgetStack; -class QWidget; -class QFrame; +class TQWidgetStack; +class TQWidget; +class TQFrame; namespace Rosegarden @@ -56,7 +56,7 @@ Q_OBJECT public: InstrumentParameterBox(RosegardenGUIDoc *doc, - QWidget *parent = 0); + TQWidget *parent = 0); ~InstrumentParameterBox(); void useInstrument(Instrument *instrument); @@ -70,7 +70,7 @@ public: virtual void showAdditionalControls(bool showThem); - virtual QString getPreviousBox(RosegardenParameterArea::Arrangement) const; + virtual TQString getPreviousBox(RosegardenParameterArea::Arrangement) const; public slots: @@ -91,9 +91,9 @@ public slots: signals: - void changeInstrumentLabel(InstrumentId id, QString label); + void changeInstrumentLabel(InstrumentId id, TQString label); - void selectPlugin(QWidget*, InstrumentId id, int index); + void selectPlugin(TQWidget*, InstrumentId id, int index); void showPluginGUI(InstrumentId id, int index); void instrumentParametersChanged(InstrumentId); @@ -102,8 +102,8 @@ signals: protected: //--------------- Data members --------------------------------- - QWidgetStack *m_widgetStack; - QFrame *m_noInstrumentParameters; + TQWidgetStack *m_widgetStack; + TQFrame *m_noInstrumentParameters; MIDIInstrumentParameterPanel *m_midiInstrumentParameters; AudioInstrumentParameterPanel *m_audioInstrumentParameters; |