diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:35 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:35 -0600 |
commit | 6ca08e7a881c0c97f338e0085f75af04ec08ad04 (patch) | |
tree | 5462bef0f060df1c19e3fcb98250e5cfa24edc11 /src/gui/widgets/QuantizeParameters.cpp | |
parent | 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a (diff) | |
download | rosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.tar.gz rosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.
Diffstat (limited to 'src/gui/widgets/QuantizeParameters.cpp')
-rw-r--r-- | src/gui/widgets/QuantizeParameters.cpp | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/src/gui/widgets/QuantizeParameters.cpp b/src/gui/widgets/QuantizeParameters.cpp index 84591cb..a85e3b6 100644 --- a/src/gui/widgets/QuantizeParameters.cpp +++ b/src/gui/widgets/QuantizeParameters.cpp @@ -24,7 +24,7 @@ #include "QuantizeParameters.h" -#include <layout.h> +#include <tqlayout.h> #include <kapplication.h> #include <klocale.h> @@ -71,7 +71,7 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, int zero = 0; if (!preamble.isNull()) { TQLabel *label = new TQLabel(preamble, this); - label->setAlignment(TQt::WordBreak); + label->tqsetAlignment(TQt::WordBreak); m_mainLayout->addMultiCellWidget(label, 0, 0, 0, 1); zero = 1; } @@ -82,18 +82,18 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, m_mainLayout->addWidget(quantizerBox, zero, 0); TQFrame *typeFrame = new TQFrame(quantizerBox); - TQGridLayout *layout = new TQGridLayout(typeFrame, 2, 2, 5, 3); - layout->addWidget(new TQLabel(i18n("Quantizer type:"), typeFrame), 0, 0); + TQGridLayout *tqlayout = new TQGridLayout(typeFrame, 2, 2, 5, 3); + tqlayout->addWidget(new TQLabel(i18n("Quantizer type:"), typeFrame), 0, 0); m_typeCombo = new KComboBox(typeFrame); m_typeCombo->insertItem(i18n("Grid quantizer")); m_typeCombo->insertItem(i18n("Legato quantizer")); m_typeCombo->insertItem(i18n("Heuristic notation quantizer")); - layout->addWidget(m_typeCombo, 0, 1); + tqlayout->addWidget(m_typeCombo, 0, 1); m_notationTarget = new TQCheckBox (i18n("Quantize for notation only (leave performance unchanged)"), typeFrame); - layout->addMultiCellWidget(m_notationTarget, 1, 1, 0, 1); + tqlayout->addMultiCellWidget(m_notationTarget, 1, 1, 0, 1); if (!showNotationOption) m_notationTarget->hide(); @@ -104,14 +104,14 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, (1, Qt::Horizontal, i18n("Notation parameters"), parameterBox); TQFrame *notationFrame = new TQFrame(m_notationBox); - layout = new TQGridLayout(notationFrame, 4, 2, 5, 3); + tqlayout = new TQGridLayout(notationFrame, 4, 2, 5, 3); - layout->addWidget(new TQLabel(i18n("Base grid unit:"), notationFrame), + tqlayout->addWidget(new TQLabel(i18n("Base grid unit:"), notationFrame), 1, 0); m_notationUnitCombo = new KComboBox(notationFrame); - layout->addWidget(m_notationUnitCombo, 1, 1); + tqlayout->addWidget(m_notationUnitCombo, 1, 1); - layout->addWidget(new TQLabel(i18n("Complexity:"), + tqlayout->addWidget(new TQLabel(i18n("Complexity:"), notationFrame), 0, 0); m_simplicityCombo = new KComboBox(notationFrame); @@ -120,9 +120,9 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, m_simplicityCombo->insertItem(i18n("Normal")); m_simplicityCombo->insertItem(i18n("Low")); m_simplicityCombo->insertItem(i18n("Very low")); - layout->addWidget(m_simplicityCombo, 0, 1); + tqlayout->addWidget(m_simplicityCombo, 0, 1); - layout->addWidget(new TQLabel(i18n("Tuplet level:"), + tqlayout->addWidget(new TQLabel(i18n("Tuplet level:"), notationFrame), 2, 0); m_maxTuplet = new KComboBox(notationFrame); m_maxTuplet->insertItem(i18n("None")); @@ -136,34 +136,34 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, m_maxTuplet->insertItem(i18n("8-Tuplet")); */ m_maxTuplet->insertItem(i18n("Any")); - layout->addWidget(m_maxTuplet, 2, 1); + tqlayout->addWidget(m_maxTuplet, 2, 1); m_counterpoint = new TQCheckBox(i18n("Permit counterpoint"), notationFrame); - layout->addMultiCellWidget(m_counterpoint, 3, 3, 0, 1); + tqlayout->addMultiCellWidget(m_counterpoint, 3, 3, 0, 1); m_gridBox = new TQGroupBox (1, Qt::Horizontal, i18n("Grid parameters"), parameterBox); TQFrame *gridFrame = new TQFrame(m_gridBox); - layout = new TQGridLayout(gridFrame, 4, 2, 5, 3); + tqlayout = new TQGridLayout(gridFrame, 4, 2, 5, 3); - layout->addWidget(new TQLabel(i18n("Base grid unit:"), gridFrame), 0, 0); + tqlayout->addWidget(new TQLabel(i18n("Base grid unit:"), gridFrame), 0, 0); m_gridUnitCombo = new KComboBox(gridFrame); - layout->addWidget(m_gridUnitCombo, 0, 1); + tqlayout->addWidget(m_gridUnitCombo, 0, 1); m_swingLabel = new TQLabel(i18n("Swing:"), gridFrame); - layout->addWidget(m_swingLabel, 1, 0); + tqlayout->addWidget(m_swingLabel, 1, 0); m_swingCombo = new KComboBox(gridFrame); - layout->addWidget(m_swingCombo, 1, 1); + tqlayout->addWidget(m_swingCombo, 1, 1); m_iterativeLabel = new TQLabel(i18n("Iterative amount:"), gridFrame); - layout->addWidget(m_iterativeLabel, 2, 0); + tqlayout->addWidget(m_iterativeLabel, 2, 0); m_iterativeCombo = new KComboBox(gridFrame); - layout->addWidget(m_iterativeCombo, 2, 1); + tqlayout->addWidget(m_iterativeCombo, 2, 1); m_durationCheckBox = new TQCheckBox (i18n("Quantize durations as well as start times"), gridFrame); - layout->addMultiCellWidget(m_durationCheckBox, 3, 3, 0, 1); + tqlayout->addMultiCellWidget(m_durationCheckBox, 3, 3, 0, 1); m_postProcessingBox = new TQGroupBox (1, Qt::Horizontal, i18n("After quantization"), this); @@ -188,17 +188,17 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, TQFrame *postFrame = new TQFrame(m_postProcessingBox); - layout = new TQGridLayout(postFrame, 4, 1, 5, 3); + tqlayout = new TQGridLayout(postFrame, 4, 1, 5, 3); m_rebeam = new TQCheckBox(i18n("Re-beam"), postFrame); m_articulate = new TQCheckBox (i18n("Add articulations (staccato, tenuto, slurs)"), postFrame); m_makeViable = new TQCheckBox(i18n("Tie notes at barlines etc"), postFrame); m_deCounterpoint = new TQCheckBox(i18n("Split-and-tie overlapping chords"), postFrame); - layout->addWidget(m_rebeam, 0, 0); - layout->addWidget(m_articulate, 1, 0); - layout->addWidget(m_makeViable, 2, 0); - layout->addWidget(m_deCounterpoint, 3, 0); + tqlayout->addWidget(m_rebeam, 0, 0); + tqlayout->addWidget(m_articulate, 1, 0); + tqlayout->addWidget(m_makeViable, 2, 0); + tqlayout->addWidget(m_deCounterpoint, 3, 0); TQPixmap noMap = NotePixmapFactory::toTQPixmap (NotePixmapFactory::makeToolbarPixmap("menu-no-note")); @@ -286,8 +286,8 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, m_gridUnitCombo->insertItem(pmap, label); m_notationUnitCombo->insertItem(pmap, label); } else { - m_gridUnitCombo->insertItem(noMap, TQString("%1").arg(time)); - m_notationUnitCombo->insertItem(noMap, TQString("%1").arg(time)); + m_gridUnitCombo->insertItem(noMap, TQString("%1").tqarg(time)); + m_notationUnitCombo->insertItem(noMap, TQString("%1").tqarg(time)); } if (m_standardQuantizations[i] == defaultUnit) { @@ -298,14 +298,14 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent, } for (int i = -100; i <= 200; i += 10) { - m_swingCombo->insertItem(i == 0 ? i18n("None") : TQString("%1%").arg(i)); + m_swingCombo->insertItem(i == 0 ? i18n("None") : TQString("%1%").tqarg(i)); if (i == defaultSwing) m_swingCombo->setCurrentItem(m_swingCombo->count() - 1); } for (int i = 10; i <= 100; i += 10) { m_iterativeCombo->insertItem(i == 100 ? i18n("Full quantize") : - TQString("%1%").arg(i)); + TQString("%1%").tqarg(i)); if (i == defaultIterate) m_iterativeCombo->setCurrentItem(m_iterativeCombo->count() - 1); } |