summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation/NoteInserter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/notation/NoteInserter.cpp')
-rw-r--r--src/gui/editors/notation/NoteInserter.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/gui/editors/notation/NoteInserter.cpp b/src/gui/editors/notation/NoteInserter.cpp
index 66adafe..c2533e5 100644
--- a/src/gui/editors/notation/NoteInserter.cpp
+++ b/src/gui/editors/notation/NoteInserter.cpp
@@ -52,9 +52,9 @@
#include <kaction.h>
#include <kcommand.h>
#include <kconfig.h>
-#include <qiconset.h>
-#include <qregexp.h>
-#include <qstring.h>
+#include <tqiconset.h>
+#include <tqregexp.h>
+#include <tqstring.h>
namespace Rosegarden
@@ -69,7 +69,7 @@ NoteInserter::NoteInserter(NotationView* view)
m_lastAccidental(Accidentals::NoAccidental),
m_followAccidental(false)
{
- QIconSet icon;
+ TQIconSet icon;
KConfig *config = kapp->config();
config->setGroup(NotationViewConfigGroup);
@@ -80,7 +80,7 @@ NoteInserter::NoteInserter(NotationView* view)
KToggleAction *autoBeamAction =
new KToggleAction(i18n("Auto-Beam when appropriate"), 0, this,
- SLOT(slotToggleAutoBeam()), actionCollection(),
+ TQT_SLOT(slotToggleAutoBeam()), actionCollection(),
"toggle_auto_beam");
autoBeamAction->setChecked(m_autoBeam);
@@ -101,33 +101,33 @@ NoteInserter::NoteInserter(NotationView* view)
(NotePixmapFactory::toQPixmap(NotePixmapFactory::
makeToolbarPixmap("dotted-crotchet")));
new KToggleAction(i18n("Dotted note"), icon, 0, this,
- SLOT(slotToggleDot()), actionCollection(),
+ TQT_SLOT(slotToggleDot()), actionCollection(),
"toggle_dot");
- icon = QIconSet(NotePixmapFactory::toQPixmap(NotePixmapFactory::
+ icon = TQIconSet(NotePixmapFactory::toQPixmap(NotePixmapFactory::
makeToolbarPixmap("select")));
new KAction(i18n("Switch to Select Tool"), icon, 0, this,
- SLOT(slotSelectSelected()), actionCollection(),
+ TQT_SLOT(slotSelectSelected()), actionCollection(),
"select");
new KAction(i18n("Switch to Erase Tool"), "eraser", 0, this,
- SLOT(slotEraseSelected()), actionCollection(),
+ TQT_SLOT(slotEraseSelected()), actionCollection(),
"erase");
icon = QIconSet
(NotePixmapFactory::toQPixmap(NotePixmapFactory::
makeToolbarPixmap("rest-crotchet")));
new KAction(i18n("Switch to Inserting Rests"), icon, 0, this,
- SLOT(slotRestsSelected()), actionCollection(),
+ TQT_SLOT(slotRestsSelected()), actionCollection(),
"rests");
createMenu("noteinserter.rc");
- connect(m_parentView, SIGNAL(changeAccidental(Accidental, bool)),
- this, SLOT(slotSetAccidental(Accidental, bool)));
+ connect(m_parentView, TQT_SIGNAL(changeAccidental(Accidental, bool)),
+ this, TQT_SLOT(slotSetAccidental(Accidental, bool)));
}
-NoteInserter::NoteInserter(const QString& menuName, NotationView* view)
+NoteInserter::NoteInserter(const TQString& menuName, NotationView* view)
: NotationTool(menuName, view),
m_noteType(Note::Quaver),
m_noteDots(0),
@@ -137,8 +137,8 @@ NoteInserter::NoteInserter(const QString& menuName, NotationView* view)
m_lastAccidental(Accidentals::NoAccidental),
m_followAccidental(false)
{
- connect(m_parentView, SIGNAL(changeAccidental(Accidental, bool)),
- this, SLOT(slotSetAccidental(Accidental, bool)));
+ connect(m_parentView, TQT_SIGNAL(changeAccidental(Accidental, bool)),
+ this, TQT_SLOT(slotSetAccidental(Accidental, bool)));
}
NoteInserter::~NoteInserter()
@@ -155,7 +155,7 @@ void
NoteInserter::handleLeftButtonPress(timeT,
int,
int staffNo,
- QMouseEvent* e,
+ TQMouseEvent* e,
ViewElement*)
{
if (staffNo < 0)
@@ -166,7 +166,7 @@ NoteInserter::handleLeftButtonPress(timeT,
int
NoteInserter::handleMouseMove(timeT,
int,
- QMouseEvent *e)
+ TQMouseEvent *e)
{
if (m_clickHappened) {
computeLocationAndPreview(e);
@@ -178,7 +178,7 @@ NoteInserter::handleMouseMove(timeT,
void
NoteInserter::handleMouseRelease(timeT,
int,
- QMouseEvent *e)
+ TQMouseEvent *e)
{
if (!m_clickHappened)
return ;
@@ -262,7 +262,7 @@ NoteInserter::insertNote(Segment &segment, timeT insertionTime,
}
bool
-NoteInserter::computeLocationAndPreview(QMouseEvent *e)
+NoteInserter::computeLocationAndPreview(TQMouseEvent *e)
{
double x = e->x();
int y = (int)e->y();
@@ -660,8 +660,8 @@ void NoteInserter::slotToggleDot()
{
m_noteDots = (m_noteDots) ? 0 : 1;
Note note(m_noteType, m_noteDots);
- QString actionName(NotationStrings::getReferenceName(note));
- actionName.replace(QRegExp("-"), "_");
+ TQString actionName(NotationStrings::getReferenceName(note));
+ actionName.replace(TQRegExp("-"), "_");
KAction *action = m_parentView->actionCollection()->action(actionName);
if (!action) {
std::cerr << "WARNING: No such action as " << actionName << std::endl;
@@ -688,8 +688,8 @@ void NoteInserter::slotSelectSelected()
void NoteInserter::slotRestsSelected()
{
Note note(m_noteType, m_noteDots);
- QString actionName(NotationStrings::getReferenceName(note, true));
- actionName.replace(QRegExp("-"), "_");
+ TQString actionName(NotationStrings::getReferenceName(note, true));
+ actionName.replace(TQRegExp("-"), "_");
KAction *action = m_parentView->actionCollection()->action(actionName);
if (!action) {
std::cerr << "WARNING: No such action as " << actionName << std::endl;
@@ -716,7 +716,7 @@ const char* NoteInserter::m_actionsAccidental[][4] =
"accidental-doubleflat" }
};
-const QString NoteInserter::ToolName = "noteinserter";
+const TQString NoteInserter::ToolName = "noteinserter";
}
#include "NoteInserter.moc"