summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation/NotationStrings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/notation/NotationStrings.cpp')
-rw-r--r--src/gui/editors/notation/NotationStrings.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/gui/editors/notation/NotationStrings.cpp b/src/gui/editors/notation/NotationStrings.cpp
index 6f8defd..6065323 100644
--- a/src/gui/editors/notation/NotationStrings.cpp
+++ b/src/gui/editors/notation/NotationStrings.cpp
@@ -33,14 +33,14 @@
#include "base/NotationTypes.h"
#include "gui/configuration/GeneralConfigurationPage.h"
#include <kconfig.h>
-#include <qstring.h>
+#include <tqstring.h>
namespace Rosegarden
{
QString
-NotationStrings::addDots(QString s, int dots,
+NotationStrings::addDots(TQString s, int dots,
bool hyphenate, bool internationalize)
{
if (!dots)
@@ -61,14 +61,14 @@ NotationStrings::addDots(QString s, int dots,
} else {
if (dots > 1) {
if (hyphenate)
- return QString("%1-dotted-%2").arg(dots).arg(s);
+ return TQString("%1-dotted-%2").arg(dots).arg(s);
else
- return QString("%1-dotted %2").arg(dots).arg(s);
+ return TQString("%1-dotted %2").arg(dots).arg(s);
} else {
if (hyphenate)
- return QString("dotted-%1").arg(s);
+ return TQString("dotted-%1").arg(s);
else
- return QString("dotted %1").arg(s);
+ return TQString("dotted %1").arg(s);
}
}
}
@@ -79,13 +79,13 @@ NotationStrings::getNoteName(Note note, bool plural, bool triplet)
Note::Type type = note.getNoteType();
int dots = note.getDots();
- static const QString names[] = {
+ static const TQString names[] = {
i18n("sixty-fourth note"), i18n("thirty-second note"),
i18n("sixteenth note"), i18n("eighth note"),
i18n("quarter note"), i18n("half note"),
i18n("whole note"), i18n("double whole note")
};
- static const QString pluralnames[] = {
+ static const TQString pluralnames[] = {
i18n("sixty-fourth notes"), i18n("thirty-second notes"),
i18n("sixteenth notes"), i18n("eighth notes"),
i18n("quarter notes"), i18n("half notes"),
@@ -109,13 +109,13 @@ NotationStrings::getAmericanName(Note note, bool plural, bool triplet)
Note::Type type = note.getNoteType();
int dots = note.getDots();
- static const QString names[] = {
+ static const TQString names[] = {
"sixty-fourth note", "thirty-second note",
"sixteenth note", "eighth note",
"quarter note", "half note",
"whole note", "double whole note"
};
- static const QString pluralnames[] = {
+ static const TQString pluralnames[] = {
"sixty-fourth notes", "thirty-second notes",
"sixteenth notes", "eighth notes",
"quarter notes", "half notes",
@@ -123,11 +123,11 @@ NotationStrings::getAmericanName(Note note, bool plural, bool triplet)
};
if (plural && triplet) {
- return addDots(QString("%1 triplets").arg(names[type]), dots, false, false);
+ return addDots(TQString("%1 triplets").arg(names[type]), dots, false, false);
} else if (plural) {
return addDots(pluralnames[type], dots, false, false);
} else if (triplet) {
- return addDots(QString("%1 triplet").arg(names[type]), dots, false, false);
+ return addDots(TQString("%1 triplet").arg(names[type]), dots, false, false);
} else {
return addDots(names[type], dots, false, false);
}
@@ -139,12 +139,12 @@ NotationStrings::getShortNoteName(Note note, bool plural, bool triplet)
Note::Type type = note.getNoteType();
int dots = note.getDots();
- static const QString names[] = {
+ static const TQString names[] = {
i18n("64th"), i18n("32nd"), i18n("16th"), i18n("8th"),
i18n("quarter"), i18n("half"), i18n("whole"),
i18n("double whole")
};
- static const QString pluralnames[] = {
+ static const TQString pluralnames[] = {
i18n("64ths"), i18n("32nds"), i18n("16ths"), i18n("8ths"),
i18n("quarters"), i18n("halves"), i18n("wholes"),
i18n("double wholes")
@@ -167,19 +167,19 @@ NotationStrings::getReferenceName(Note note, bool isRest)
Note::Type type = note.getNoteType();
int dots = note.getDots();
- static const QString names[] = {
+ static const TQString names[] = {
"hemidemisemi", "demisemi", "semiquaver",
"quaver", "crotchet", "minim", "semibreve", "breve"
};
- QString name(names[type]);
+ TQString name(names[type]);
if (isRest)
name = "rest-" + name;
return addDots(name, dots, true, false);
}
Note
-NotationStrings::getNoteForName(QString name)
+NotationStrings::getNoteForName(TQString name)
{
std::string origName(qstrtostr(name));
int pos = name.find('-');
@@ -271,16 +271,16 @@ NotationStrings::makeNoteMenuLabel(timeT duration,
timeT wholeNote = Note(Note::Semibreve).getDuration();
if ((wholeNote / duration) * duration == wholeNote) {
- return QString("1/%1").arg(wholeNote / duration);
+ return TQString("1/%1").arg(wholeNote / duration);
} else if ((duration / wholeNote) * wholeNote == duration) {
- return QString("%1/1").arg(duration / wholeNote);
+ return TQString("%1/1").arg(duration / wholeNote);
} else {
return i18n("%1 ticks").arg(duration);
plural = false;
}
} else {
- QString noteName;
+ TQString noteName;
switch (noteNameStyle) {