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/dialogs/TupletDialog.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/dialogs/TupletDialog.h')
-rw-r--r-- | src/gui/dialogs/TupletDialog.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/src/gui/dialogs/TupletDialog.h b/src/gui/dialogs/TupletDialog.h index bc7252b..ae57ca9 100644 --- a/src/gui/dialogs/TupletDialog.h +++ b/src/gui/dialogs/TupletDialog.h @@ -31,11 +31,11 @@ #include "base/Event.h" -class QWidget; -class QString; -class QLabel; -class QGroupBox; -class QCheckBox; +class TQWidget; +class TQString; +class TQLabel; +class TQGroupBox; +class TQCheckBox; class KComboBox; @@ -49,7 +49,7 @@ class TupletDialog : public KDialogBase Q_OBJECT public: - TupletDialog(QWidget *parent, + TupletDialog(TQWidget *parent, Note::Type defaultUnitType, timeT maxDuration = 0); @@ -59,9 +59,9 @@ public: bool hasTimingAlready() const; public slots: - void slotUnitChanged(const QString &); - void slotUntupledChanged(const QString &); - void slotTupledChanged(const QString &); + void slotUnitChanged(const TQString &); + void slotUntupledChanged(const TQString &); + void slotTupledChanged(const TQString &); void slotHasTimingChanged(); protected: @@ -76,18 +76,18 @@ protected: KComboBox *m_untupledCombo; KComboBox *m_tupledCombo; - QCheckBox *m_hasTimingAlready; - - QGroupBox *m_timingDisplayBox; - QLabel *m_selectionDurationDisplay; - QLabel *m_untupledDurationCalculationDisplay; - QLabel *m_untupledDurationDisplay; - QLabel *m_tupledDurationCalculationDisplay; - QLabel *m_tupledDurationDisplay; - QLabel *m_newGapDurationCalculationDisplay; - QLabel *m_newGapDurationDisplay; - QLabel *m_unchangedDurationCalculationDisplay; - QLabel *m_unchangedDurationDisplay; + TQCheckBox *m_hasTimingAlready; + + TQGroupBox *m_timingDisplayBox; + TQLabel *m_selectionDurationDisplay; + TQLabel *m_untupledDurationCalculationDisplay; + TQLabel *m_untupledDurationDisplay; + TQLabel *m_tupledDurationCalculationDisplay; + TQLabel *m_tupledDurationDisplay; + TQLabel *m_newGapDurationCalculationDisplay; + TQLabel *m_newGapDurationDisplay; + TQLabel *m_unchangedDurationCalculationDisplay; + TQLabel *m_unchangedDurationDisplay; timeT m_maxDuration; }; |