diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-28 18:31:12 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-28 18:31:12 +0000 |
commit | 0a80cfd57d271dd44221467efb426675fa470356 (patch) | |
tree | 6f503a31aa078eaf8fa015cf1749808529d49fc9 /src/modules/iograph/libkviiograph.cpp | |
parent | 3329e5a804e28ef3f5eb51d1e7affdd5a508e8f2 (diff) | |
download | kvirc-0a80cfd57d271dd44221467efb426675fa470356.tar.gz kvirc-0a80cfd57d271dd44221467efb426675fa470356.zip |
TQt4 port kvirc
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvirc@1238719 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/modules/iograph/libkviiograph.cpp')
-rw-r--r-- | src/modules/iograph/libkviiograph.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/modules/iograph/libkviiograph.cpp b/src/modules/iograph/libkviiograph.cpp index ab9aa4f1..f6398f03 100644 --- a/src/modules/iograph/libkviiograph.cpp +++ b/src/modules/iograph/libkviiograph.cpp @@ -34,12 +34,12 @@ #include "kvi_locale.h" #include "kvi_pointerlist.h" -#include <qtooltip.h> -#include <qpointarray.h> -#include <qpainter.h> +#include <tqtooltip.h> +#include <tqpointarray.h> +#include <tqpainter.h> -extern QPixmap * g_pIccMemBuffer; +extern TQPixmap * g_pIccMemBuffer; static KviPointerList<KviIOGraphDisplay> * g_pIOGraphWidgetList; @@ -67,7 +67,7 @@ KviIOGraphDisplay::KviIOGraphDisplay(KviIrcContextController * pController,bool tip.append(__tr("Incoming traffic")); } - QToolTip::add(this,tip.ptr()); + TQToolTip::add(this,tip.ptr()); startTimer(1000); } @@ -77,7 +77,7 @@ KviIOGraphDisplay::~KviIOGraphDisplay() g_pIOGraphWidgetList->removeRef(this); } -void KviIOGraphDisplay::timerEvent(QTimerEvent *e) +void KviIOGraphDisplay::timerEvent(TQTimerEvent *e) { unsigned int sB = console()->socket()->sentBytes(); unsigned int rB = console()->socket()->readBytes(); @@ -97,7 +97,7 @@ void KviIOGraphDisplay::timerEvent(QTimerEvent *e) update(); } -static QCOORD horizSegments[6 * 4]= +static TQCOORD horizSegments[6 * 4]= { 5 , 3 , KVI_IRCTOOLBARAPPLET_MAXIMUM_WIDTH - 4 , 3 , 5 , 8 , KVI_IRCTOOLBARAPPLET_MAXIMUM_WIDTH - 4 , 8 , @@ -107,7 +107,7 @@ static QCOORD horizSegments[6 * 4]= 5 , 28 , KVI_IRCTOOLBARAPPLET_MAXIMUM_WIDTH - 4 , 28 }; -static QCOORD vertSegments[29 * 4]= +static TQCOORD vertSegments[29 * 4]= { 9 , 4 , 9 , KVI_IRCTOOLBARAPPLET_MAXIMUM_HEIGHT - 5 , 14 , 4 , 14 , KVI_IRCTOOLBARAPPLET_MAXIMUM_HEIGHT - 5 , @@ -140,10 +140,10 @@ static QCOORD vertSegments[29 * 4]= 149 , 4 , 149 , KVI_IRCTOOLBARAPPLET_MAXIMUM_HEIGHT - 5 }; -void KviIOGraphDisplay::drawContents(QPainter * p) +void KviIOGraphDisplay::drawContents(TQPainter * p) { - static QPointArray hp(6 * 4,horizSegments); - static QPointArray vp(29 * 4,vertSegments); + static TQPointArray hp(6 * 4,horizSegments); + static TQPointArray vp(29 * 4,vertSegments); p->setPen(KVI_OPTION_COLOR(KviOption_colorIrcToolBarAppletForegroundLowContrast)); p->drawLineSegments(hp,0,6); @@ -199,9 +199,9 @@ void KviIOGraphDisplay::drawContents(QPainter * p) } } -QSize KviIOGraphDisplay::sizeHint() const +TQSize KviIOGraphDisplay::tqsizeHint() const { - return QSize(KVI_IRCTOOLBARAPPLET_MAXIMUM_WIDTH,KVI_IRCTOOLBARAPPLET_MAXIMUM_HEIGHT); + return TQSize(KVI_IRCTOOLBARAPPLET_MAXIMUM_WIDTH,KVI_IRCTOOLBARAPPLET_MAXIMUM_HEIGHT); } |