diff options
Diffstat (limited to 'src/gui/widgets/QuantizeParameters.h')
-rw-r--r-- | src/gui/widgets/QuantizeParameters.h | 56 |
1 files changed, 28 insertions, 28 deletions
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 <qframe.h> -#include <qstring.h> +#include <tqframe.h> +#include <tqstring.h> #include <vector> #include "base/Event.h" -#include <qgroupbox.h> +#include <tqgroupbox.h> -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<timeT> 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; }; |