diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 20:48:12 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 20:48:12 +0000 |
commit | e0e4bf64073ac54a136c2b42b5530687b246f24a (patch) | |
tree | 2f68d9a750bb8349928a2020d9640d63040e4af4 /src/resizabledragwidget.cpp | |
parent | f2c25668ebf4de0e17c6558c1d8e3051057b55fd (diff) | |
download | kvkbd-e0e4bf64073ac54a136c2b42b5530687b246f24a.tar.gz kvkbd-e0e4bf64073ac54a136c2b42b5530687b246f24a.zip |
TQt4 port kvkbd
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvkbd@1239029 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/resizabledragwidget.cpp')
-rw-r--r-- | src/resizabledragwidget.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/resizabledragwidget.cpp b/src/resizabledragwidget.cpp index 0a3510b..637dd87 100644 --- a/src/resizabledragwidget.cpp +++ b/src/resizabledragwidget.cpp @@ -18,12 +18,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "resizabledragwidget.h" -#include <qpoint.h> +#include <tqpoint.h> #include "kmessagebox.h" -#include "qpainter.h" +#include "tqpainter.h" -ResizableDragWidget::ResizableDragWidget(QWidget *parent, const char *name, WFlags f) - : DragWidget(parent,name,f) +ResizableDragWidget::ResizableDragWidget(TQWidget *tqparent, const char *name, WFlags f) + : DragWidget(tqparent,name,f) { rsz=false; @@ -34,29 +34,29 @@ ResizableDragWidget::~ResizableDragWidget() { } -void ResizableDragWidget::mousePressEvent(QMouseEvent * e) +void ResizableDragWidget::mousePressEvent(TQMouseEvent * e) { - QPoint pos = e->pos(); + TQPoint pos = e->pos(); if (pos.x()>width()-20 && pos.x()<width() && pos.y()>height()-20 && pos.y()<height() ) { rsz=true; - dragP=QPoint(width()-e->pos().x(),height()-e->pos().y()); + dragP=TQPoint(width()-e->pos().x(),height()-e->pos().y()); } else { DragWidget::mousePressEvent(e); } } -void ResizableDragWidget::mouseMoveEvent(QMouseEvent * e) +void ResizableDragWidget::mouseMoveEvent(TQMouseEvent * e) { if (!rsz){ DragWidget::mouseMoveEvent(e); return; } - QPoint curr(e->globalPos().x(),e->globalPos().y()); - QPoint pos = QWidget::pos(); - //QPoint curr(e->globalPos().x()-dragP.x(),e->globalPos().y()-dragP.y()); + TQPoint curr(e->globalPos().x(),e->globalPos().y()); + TQPoint pos = TQWidget::pos(); + //TQPoint curr(e->globalPos().x()-dragP.x(),e->globalPos().y()-dragP.y()); int nw = curr.x()-pos.x()+dragP.x(); int nh = curr.y()-pos.y()+dragP.y(); @@ -64,7 +64,7 @@ void ResizableDragWidget::mouseMoveEvent(QMouseEvent * e) } -void ResizableDragWidget::mouseReleaseEvent(QMouseEvent * e) +void ResizableDragWidget::mouseReleaseEvent(TQMouseEvent * e) { if (!rsz){ DragWidget::mouseReleaseEvent(e); @@ -74,16 +74,16 @@ void ResizableDragWidget::mouseReleaseEvent(QMouseEvent * e) rsz=false; } -void ResizableDragWidget::paintEvent(QPaintEvent *) +void ResizableDragWidget::paintEvent(TQPaintEvent *) { - QPainter p(this); + TQPainter p(this); for (int a=0;a<20;a+=5){ - p.setPen(QColor(170,0,0)); + p.setPen(TQColor(170,0,0)); p.drawLine(width()-20+a,height()-2,width()-2,height()-20+a); - p.setPen(QColor(200,0,0)); + p.setPen(TQColor(200,0,0)); p.drawLine(width()-19+a,height()-2,width()-2,height()-19+a); } |