From 11f31c37e5fa4889d9989f10272f44845449cb7b Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 6 Sep 2010 20:59:29 +0000 Subject: Initial TQt conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/gui/widgets/QuantizeParameters.h | 56 ++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) (limited to 'src/gui/widgets/QuantizeParameters.h') diff --git a/src/gui/widgets/QuantizeParameters.h b/src/gui/widgets/QuantizeParameters.h index 8eee7ff..8efd0c5 100644 --- a/src/gui/widgets/QuantizeParameters.h +++ b/src/gui/widgets/QuantizeParameters.h @@ -26,18 +26,18 @@ #ifndef _RG_ROSEGARDENQUANTIZEPARAMETERS_H_ #define _RG_ROSEGARDENQUANTIZEPARAMETERS_H_ -#include -#include +#include +#include #include #include "base/Event.h" -#include +#include -class QWidget; -class QPushButton; -class QLabel; -class QGridLayout; -class QCheckBox; +class TQWidget; +class TQPushButton; +class TQLabel; +class TQGridLayout; +class TQCheckBox; class KComboBox; @@ -53,12 +53,12 @@ class QuantizeParameters : public QFrame public: enum QuantizerType { Grid, Legato, Notation }; - QuantizeParameters(QWidget *parent, + QuantizeParameters(TQWidget *parent, QuantizerType defaultQuantizer, bool showNotationOption, bool showAdvancedButton, - QString configCategory, - QString preamble = 0); + TQString configCategory, + TQString preamble = 0); /** * Returned quantizer object is on heap -- caller must delete. @@ -66,7 +66,7 @@ public: */ Quantizer *getQuantizer() const; - QWidget *getAdvancedWidget() { return m_postProcessingBox; } + TQWidget *getAdvancedWidget() { return m_postProcessingBox; } bool shouldRebeam() const { return m_rebeam; } bool shouldDeCounterpoint() const { return m_deCounterpoint; } @@ -79,35 +79,35 @@ public slots: void slotAdvancedChanged(); protected: - QString m_configCategory; + TQString m_configCategory; std::vector m_standardQuantizations; - QGridLayout *m_mainLayout; + TQGridLayout *m_mainLayout; KComboBox *m_typeCombo; - QGroupBox *m_gridBox; - QCheckBox *m_durationCheckBox; + TQGroupBox *m_gridBox; + TQCheckBox *m_durationCheckBox; KComboBox *m_gridUnitCombo; - QLabel *m_swingLabel; + TQLabel *m_swingLabel; KComboBox *m_swingCombo; - QLabel *m_iterativeLabel; + TQLabel *m_iterativeLabel; KComboBox *m_iterativeCombo; - QGroupBox *m_notationBox; - QCheckBox *m_notationTarget; + TQGroupBox *m_notationBox; + TQCheckBox *m_notationTarget; KComboBox *m_notationUnitCombo; KComboBox *m_simplicityCombo; KComboBox *m_maxTuplet; - QCheckBox *m_counterpoint; - - QPushButton *m_advancedButton; - QGroupBox *m_postProcessingBox; - QCheckBox *m_articulate; - QCheckBox *m_makeViable; - QCheckBox *m_deCounterpoint; - QCheckBox *m_rebeam; + TQCheckBox *m_counterpoint; + + TQPushButton *m_advancedButton; + TQGroupBox *m_postProcessingBox; + TQCheckBox *m_articulate; + TQCheckBox *m_makeViable; + TQCheckBox *m_deCounterpoint; + TQCheckBox *m_rebeam; }; -- cgit v1.2.1