diff options
Diffstat (limited to 'src/gui/dialogs/TempoDialog.h')
-rw-r--r-- | src/gui/dialogs/TempoDialog.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/src/gui/dialogs/TempoDialog.h b/src/gui/dialogs/TempoDialog.h index dd3edf1..db26ce7 100644 --- a/src/gui/dialogs/TempoDialog.h +++ b/src/gui/dialogs/TempoDialog.h @@ -29,15 +29,15 @@ #include <kdialogbase.h> #include "base/Event.h" #include "base/Composition.h" -#include <qpushbutton.h> -#include <qdatetime.h> +#include <tqpushbutton.h> +#include <tqdatetime.h> -class QWidget; -class QString; -class QRadioButton; -class QLabel; -class QCheckBox; +class TQWidget; +class TQString; +class TQRadioButton; +class TQLabel; +class TQCheckBox; namespace Rosegarden @@ -60,7 +60,7 @@ public: GlobalTempoWithDefault }; - TempoDialog(QWidget *parent, RosegardenGUIDoc *doc, + TempoDialog(TQWidget *parent, RosegardenGUIDoc *doc, bool timeEditable = false); ~TempoDialog(); @@ -71,11 +71,11 @@ public: public slots: virtual void slotOk(); void slotActionChanged(); - void slotTempoChanged(const QString &); + void slotTempoChanged(const TQString &); void slotTempoConstantClicked(); void slotTempoRampToNextClicked(); void slotTempoRampToTargetClicked(); - void slotTargetChanged(const QString &); + void slotTargetChanged(const TQString &); void slotTapClicked(); signals: @@ -95,31 +95,31 @@ protected: RosegardenGUIDoc *m_doc; timeT m_tempoTime; HSpinBox *m_tempoValueSpinBox; - QPushButton *m_tempoTap; - QTime m_tapMinusTwo; - QTime m_tapMinusOne; + TQPushButton *m_tempoTap; + TQTime m_tapMinusTwo; + TQTime m_tapMinusOne; - QRadioButton *m_tempoConstant; - QRadioButton *m_tempoRampToNext; - QRadioButton *m_tempoRampToTarget; + TQRadioButton *m_tempoConstant; + TQRadioButton *m_tempoRampToNext; + TQRadioButton *m_tempoRampToTarget; HSpinBox *m_tempoTargetSpinBox; - QLabel *m_tempoBeatLabel; - QLabel *m_tempoBeat; - QLabel *m_tempoBeatsPerMinute; + TQLabel *m_tempoBeatLabel; + TQLabel *m_tempoBeat; + TQLabel *m_tempoBeatsPerMinute; TimeWidget *m_timeEditor; - QLabel *m_tempoTimeLabel; - QLabel *m_tempoBarLabel; - QLabel *m_tempoStatusLabel; + TQLabel *m_tempoTimeLabel; + TQLabel *m_tempoBarLabel; + TQLabel *m_tempoStatusLabel; - QRadioButton *m_tempoChangeHere; - QRadioButton *m_tempoChangeBefore; - QLabel *m_tempoChangeBeforeAt; - QRadioButton *m_tempoChangeStartOfBar; - QRadioButton *m_tempoChangeGlobal; - QCheckBox *m_defaultBox; + TQRadioButton *m_tempoChangeHere; + TQRadioButton *m_tempoChangeBefore; + TQLabel *m_tempoChangeBeforeAt; + TQRadioButton *m_tempoChangeStartOfBar; + TQRadioButton *m_tempoChangeGlobal; + TQCheckBox *m_defaultBox; }; |