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/SimpleEventEditDialog.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/SimpleEventEditDialog.h')
-rw-r--r-- | src/gui/dialogs/SimpleEventEditDialog.h | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/src/gui/dialogs/SimpleEventEditDialog.h b/src/gui/dialogs/SimpleEventEditDialog.h index 60b8441..dcb1c60 100644 --- a/src/gui/dialogs/SimpleEventEditDialog.h +++ b/src/gui/dialogs/SimpleEventEditDialog.h @@ -31,14 +31,14 @@ #include <kdialogbase.h> -class QWidget; -class QString; -class QSpinBox; -class QPushButton; -class QLineEdit; -class QLabel; -class QGroupBox; -class QCheckBox; +class TQWidget; +class TQString; +class TQSpinBox; +class TQPushButton; +class TQLineEdit; +class TQLabel; +class TQGroupBox; +class TQCheckBox; class KComboBox; @@ -52,7 +52,7 @@ class SimpleEventEditDialog : public KDialogBase { Q_OBJECT public: - SimpleEventEditDialog(QWidget *parent, + SimpleEventEditDialog(TQWidget *parent, RosegardenGUIDoc *doc, const Event &event, bool inserting = false); // inserting or editing @@ -71,7 +71,7 @@ public slots: void slotNotationDurationChanged(int value); void slotPitchChanged(int value); void slotVelocityChanged(int value); - void slotMetaChanged(const QString &); + void slotMetaChanged(const TQString &); void slotEditAbsoluteTime(); void slotEditNotationAbsoluteTime(); void slotEditDuration(); @@ -92,37 +92,37 @@ protected: timeT m_notationDuration; KComboBox *m_typeCombo; - QLabel *m_typeLabel; - - QLabel *m_timeLabel; - QLabel *m_durationLabel; - QLabel *m_pitchLabel; - QLabel *m_velocityLabel; - QLabel *m_metaLabel; - QLabel *m_controllerLabel; - QLabel *m_controllerLabelValue; - - QSpinBox *m_timeSpinBox; - QSpinBox *m_durationSpinBox; - QSpinBox *m_pitchSpinBox; - QSpinBox *m_velocitySpinBox; - - QPushButton *m_timeEditButton; - QPushButton *m_durationEditButton; - QPushButton *m_pitchEditButton; - QPushButton *m_sysexLoadButton; - QPushButton *m_sysexSaveButton; - - QGroupBox *m_notationGroupBox; - QLabel *m_notationTimeLabel; - QLabel *m_notationDurationLabel; - QSpinBox *m_notationTimeSpinBox; - QSpinBox *m_notationDurationSpinBox; - QPushButton *m_notationTimeEditButton; - QPushButton *m_notationDurationEditButton; - QCheckBox *m_lockNotationValues; - - QLineEdit *m_metaEdit; + TQLabel *m_typeLabel; + + TQLabel *m_timeLabel; + TQLabel *m_durationLabel; + TQLabel *m_pitchLabel; + TQLabel *m_velocityLabel; + TQLabel *m_metaLabel; + TQLabel *m_controllerLabel; + TQLabel *m_controllerLabelValue; + + TQSpinBox *m_timeSpinBox; + TQSpinBox *m_durationSpinBox; + TQSpinBox *m_pitchSpinBox; + TQSpinBox *m_velocitySpinBox; + + TQPushButton *m_timeEditButton; + TQPushButton *m_durationEditButton; + TQPushButton *m_pitchEditButton; + TQPushButton *m_sysexLoadButton; + TQPushButton *m_sysexSaveButton; + + TQGroupBox *m_notationGroupBox; + TQLabel *m_notationTimeLabel; + TQLabel *m_notationDurationLabel; + TQSpinBox *m_notationTimeSpinBox; + TQSpinBox *m_notationDurationSpinBox; + TQPushButton *m_notationTimeEditButton; + TQPushButton *m_notationDurationEditButton; + TQCheckBox *m_lockNotationValues; + + TQLineEdit *m_metaEdit; bool m_modified; }; |