diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:54:26 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-16 23:37:57 +0900 |
commit | ef06f14f2475bd08d3ea2ceec54a7b2238f3554e (patch) | |
tree | 03df826633e4ba084d133ca977c4fc37c74f21ac /chalk/ui/kis_view.cpp | |
parent | 895081803a715ee89f4a90cfbf63d558ef2b2ebc (diff) | |
download | koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.tar.gz koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'chalk/ui/kis_view.cpp')
-rw-r--r-- | chalk/ui/kis_view.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/chalk/ui/kis_view.cpp b/chalk/ui/kis_view.cpp index 439423c7..2e123f5d 100644 --- a/chalk/ui/kis_view.cpp +++ b/chalk/ui/kis_view.cpp @@ -458,10 +458,10 @@ void KisView::setupScrollBars() { m_scrollX = 0; m_scrollY = 0; - m_vScroll = new TQScrollBar(Qt::Vertical, this); + m_vScroll = new TQScrollBar(TQt::Vertical, this); TQ_CHECK_PTR(m_vScroll); - m_hScroll = new TQScrollBar(Qt::Horizontal, this); + m_hScroll = new TQScrollBar(TQt::Horizontal, this); TQ_CHECK_PTR(m_hScroll); m_vScroll->setGeometry(width() - 16, 20, 16, height() - 36); @@ -474,10 +474,10 @@ void KisView::setupScrollBars() void KisView::setupRulers() { - m_hRuler = new KisRuler(Qt::Horizontal, this); + m_hRuler = new KisRuler(TQt::Horizontal, this); TQ_CHECK_PTR(m_hRuler); - m_vRuler = new KisRuler(Qt::Vertical, this); + m_vRuler = new KisRuler(TQt::Vertical, this); TQ_CHECK_PTR(m_vRuler); m_hRuler->setGeometry(20, 0, width() - 20, 20); @@ -2280,13 +2280,13 @@ void KisView::canvasGotButtonPressEvent(KisButtonPressEvent *e) // m_lastGuidePoint = mapToScreen(e->pos().floorTQPoint()); // m_currentGuide = 0; // -// if ((e->state() & ~TQt::ShiftButton) == Qt::NoButton) { +// if ((e->state() & ~TQt::ShiftButton) == TQt::NoButton) { // KisGuideSP gd = mgr->find(static_cast<TQ_INT32>(pt.x() / zoom()), static_cast<TQ_INT32>(pt.y() / zoom()), TQMAX(2.0, 2.0 / zoom())); // // if (gd) { // m_currentGuide = gd; // -// if ((e->button() == Qt::RightButton) || ((e->button() & TQt::ShiftButton) == TQt::ShiftButton)) { +// if ((e->button() == TQt::RightButton) || ((e->button() & TQt::ShiftButton) == TQt::ShiftButton)) { // if (gd->isSelected()) // mgr->unselect(gd); // else @@ -2303,7 +2303,7 @@ void KisView::canvasGotButtonPressEvent(KisButtonPressEvent *e) // } // } // } - if (e->button() == Qt::RightButton) { + if (e->button() == TQt::RightButton) { TQPopupMenu * m_popup = 0; if (factory()) { Q_ASSERT(factory()); @@ -2360,7 +2360,7 @@ void KisView::canvasGotMoveEvent(KisMoveEvent *e) TQPoint p = mapToScreen(e->pos().floorTQPoint()); KisGuideMgr *mgr = img->guides(); - if (((e->state() & Qt::LeftButton) == Qt::LeftButton) && mgr->hasSelected()) { + if (((e->state() & TQt::LeftButton) == TQt::LeftButton) && mgr->hasSelected()) { eraseGuides(); p -= m_lastGuidePoint; @@ -3543,7 +3543,7 @@ bool KisView::eventFilter(TQObject *o, TQEvent *e) mgr = img->guides(); - if (e->type() == TQEvent::MouseMove && (me->state() & Qt::LeftButton)) { + if (e->type() == TQEvent::MouseMove && (me->state() & TQt::LeftButton)) { bool flag = geometry().contains(pt); KisGuideSP gd; @@ -3555,9 +3555,9 @@ bool KisView::eventFilter(TQObject *o, TQEvent *e) mgr->unselectAll(); if (o == m_vRuler) - gd = mgr->add((pt.x() - m_vRuler->width() + horzValue()) / zoom(), Qt::Vertical); + gd = mgr->add((pt.x() - m_vRuler->width() + horzValue()) / zoom(), TQt::Vertical); else - gd = mgr->add((pt.y() - m_hRuler->height() + vertValue()) / zoom(), Qt::Horizontal); + gd = mgr->add((pt.y() - m_hRuler->height() + vertValue()) / zoom(), TQt::Horizontal); m_currentGuide = gd; mgr->select(gd); @@ -3582,7 +3582,7 @@ bool KisView::eventFilter(TQObject *o, TQEvent *e) paintGuides(); m_currentGuide = 0; enterEvent(0); - KisMoveEvent kme(currentInputDevice(), pt, me->globalPos(), PRESSURE_DEFAULT, 0, 0, Qt::NoButton); + KisMoveEvent kme(currentInputDevice(), pt, me->globalPos(), PRESSURE_DEFAULT, 0, 0, TQt::NoButton); canvasGotMoveEvent(&kme); } } |