summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/QuantizeParameters.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
commit11f31c37e5fa4889d9989f10272f44845449cb7b (patch)
tree4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/widgets/QuantizeParameters.h
parent832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff)
downloadrosegarden-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/widgets/QuantizeParameters.h')
-rw-r--r--src/gui/widgets/QuantizeParameters.h56
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;
};