summaryrefslogtreecommitdiffstats
path: root/src/gui/configuration/AudioConfigurationPage.h
diff options
context:
space:
mode:
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;
};