diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kivio/plugins/kivioconnectortool/tool_connector.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kivio/plugins/kivioconnectortool/tool_connector.h')
-rw-r--r-- | kivio/plugins/kivioconnectortool/tool_connector.h | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/kivio/plugins/kivioconnectortool/tool_connector.h b/kivio/plugins/kivioconnectortool/tool_connector.h index d0bb8b01..7dd1462b 100644 --- a/kivio/plugins/kivioconnectortool/tool_connector.h +++ b/kivio/plugins/kivioconnectortool/tool_connector.h @@ -23,8 +23,8 @@ #include "kivio_mousetool.h" #include <KoPoint.h> -class QMouseEvent; -class QCursor; +class TQMouseEvent; +class TQCursor; namespace Kivio { class MouseToolAction; @@ -38,13 +38,14 @@ class KivioCustomDragData; class ConnectorTool : public Kivio::MouseTool { Q_OBJECT + TQ_OBJECT public: - ConnectorTool( KivioView* parent ); + ConnectorTool( KivioView* tqparent ); ~ConnectorTool(); - virtual bool processEvent(QEvent* e); + virtual bool processEvent(TQEvent* e); - void connector(QRect); + void connector(TQRect); public slots: void setActivated(bool a); @@ -59,15 +60,15 @@ class ConnectorTool : public Kivio::MouseTool void operationDone(); protected: - void mousePress(QMouseEvent *); - void mouseMove(QMouseEvent *); - void mouseRelease(QMouseEvent *); + void mousePress(TQMouseEvent *); + void mouseMove(TQMouseEvent *); + void mouseRelease(TQMouseEvent *); - bool startRubberBanding(QMouseEvent*); - void continueRubberBanding(QMouseEvent *); - void endRubberBanding(QMouseEvent *); + bool startRubberBanding(TQMouseEvent*); + void continueRubberBanding(TQMouseEvent *); + void endRubberBanding(TQMouseEvent *); - QPoint m_startPoint, m_releasePoint; + TQPoint m_startPoint, m_releasePoint; // Connector Tool Mode enum @@ -84,8 +85,8 @@ class ConnectorTool : public Kivio::MouseTool private: int m_mode; // Flag to indicate that we are drawing a rubber band int m_type; // Type of connector - QCursor* m_pConnectorCursor1; - QCursor* m_pConnectorCursor2; + TQCursor* m_pConnectorCursor1; + TQCursor* m_pConnectorCursor2; Kivio1DStencil* m_pStencil; KoPoint startPoint; KivioCustomDragData* m_pDragData; |