summaryrefslogtreecommitdiffstats
path: root/src/gui/configuration/AudioConfigurationPage.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
commit11f31c37e5fa4889d9989f10272f44845449cb7b (patch)
tree4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/configuration/AudioConfigurationPage.h
parent832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff)
downloadrosegarden-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/configuration/AudioConfigurationPage.h')
-rw-r--r--src/gui/configuration/AudioConfigurationPage.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/gui/configuration/AudioConfigurationPage.h b/src/gui/configuration/AudioConfigurationPage.h
index bd71df6..2b678aa 100644
--- a/src/gui/configuration/AudioConfigurationPage.h
+++ b/src/gui/configuration/AudioConfigurationPage.h
@@ -26,17 +26,17 @@
#define _RG_AUDIOCONFIGURATIONPAGE_H_
#include "TabbedConfigurationPage.h"
-#include <qstring.h>
+#include <tqstring.h>
#include <klocale.h>
-#include <qlineedit.h>
-
-class QWidget;
-class QSpinBox;
-class QSlider;
-class QPushButton;
-class QLabel;
-class QComboBox;
-class QCheckBox;
+#include <tqlineedit.h>
+
+class TQWidget;
+class TQSpinBox;
+class TQSlider;
+class TQPushButton;
+class TQLabel;
+class TQComboBox;
+class TQCheckBox;
class KConfig;
class KComboBox;
@@ -53,33 +53,33 @@ class AudioConfigurationPage : public TabbedConfigurationPage
public:
AudioConfigurationPage(RosegardenGUIDoc *doc,
KConfig *cfg,
- QWidget *parent=0,
+ TQWidget *parent=0,
const char *name=0);
virtual void apply();
- static QString iconLabel() { return i18n("Audio"); }
- static QString title() { return i18n("Audio Settings"); }
- static QString iconName() { return "configure-audio"; }
+ static TQString iconLabel() { return i18n("Audio"); }
+ static TQString title() { return i18n("Audio Settings"); }
+ static TQString iconName() { return "configure-audio"; }
#ifdef HAVE_LIBJACK
- QString getJackPath() { return m_jackPath->text(); }
+ TQString getJackPath() { return m_jackPath->text(); }
#endif // HAVE_LIBJACK
- static QString getBestAvailableAudioEditor();
+ static TQString getBestAvailableAudioEditor();
protected slots:
void slotFileDialog();
protected:
- QString getExternalAudioEditor() { return m_externalAudioEditorPath->text(); }
+ TQString getExternalAudioEditor() { return m_externalAudioEditorPath->text(); }
//--------------- Data members ---------------------------------
#ifdef HAVE_LIBJACK
- QCheckBox *m_startJack;
- QLineEdit *m_jackPath;
+ TQCheckBox *m_startJack;
+ TQLineEdit *m_jackPath;
#endif // HAVE_LIBJACK
@@ -88,15 +88,15 @@ protected:
// this decides how many audio input destinations
// we have.
//
- QCheckBox *m_createFaderOuts;
- QCheckBox *m_createSubmasterOuts;
+ TQCheckBox *m_createFaderOuts;
+ TQCheckBox *m_createSubmasterOuts;
- QComboBox *m_audioRecFormat;
+ TQComboBox *m_audioRecFormat;
#endif // HAVE_LIBJACK
- QLineEdit* m_externalAudioEditorPath;
- QComboBox* m_previewStyle;
+ TQLineEdit* m_externalAudioEditorPath;
+ TQComboBox* m_previewStyle;
};