diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kiconedit/kiconcolors.cpp | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kiconedit/kiconcolors.cpp')
-rw-r--r-- | kiconedit/kiconcolors.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kiconedit/kiconcolors.cpp b/kiconedit/kiconcolors.cpp index 549f74d2..d3046ad4 100644 --- a/kiconedit/kiconcolors.cpp +++ b/kiconedit/kiconcolors.cpp @@ -18,14 +18,14 @@ Boston, MA 02110-1301, USA. */ -#include <qpainter.h> -#include <qdrawutil.h> +#include <tqpainter.h> +#include <tqdrawutil.h> #include <kdebug.h> #include "kiconcolors.h" -KDrawColors::KDrawColors(QWidget *parent) : KColorGrid(parent, 0, 3) +KDrawColors::KDrawColors(TQWidget *parent) : KColorGrid(parent, 0, 3) { kdDebug(4640) << "KDrawColors - constructor" << endl; setCellSize(17); @@ -35,11 +35,11 @@ KDrawColors::KDrawColors(QWidget *parent) : KColorGrid(parent, 0, 3) kdDebug(4640) << "KDrawColors - constructor - done" << endl; } -void KDrawColors::paintCell( QPainter *painter, int row, int col ) +void KDrawColors::paintCell( TQPainter *painter, int row, int col ) { //KColorGrid::paintCell(painter, row, col); uint c = colorAt( row * numCols() + col ); - QBrush brush(c); + TQBrush brush(c); int d = spacing(); qDrawShadePanel( painter, d, d, cellSize()-d, cellSize()-d, @@ -48,7 +48,7 @@ void KDrawColors::paintCell( QPainter *painter, int row, int col ) painter->drawWinFocusRect( d+1, d+1, cellSize()-(2*d)+1, cellSize()-(2*d)+1 ); } -void KDrawColors::mouseReleaseEvent( QMouseEvent *e ) +void KDrawColors::mouseReleaseEvent( TQMouseEvent *e ) { int row = findRow( e->pos().y() ); int col = findCol( e->pos().x() ); @@ -65,7 +65,7 @@ void KDrawColors::mouseReleaseEvent( QMouseEvent *e ) emit newColor(colorAt(cell)|OPAQUE_MASK); } -KSysColors::KSysColors(QWidget *parent) : KDrawColors(parent) +KSysColors::KSysColors(TQWidget *parent) : KDrawColors(parent) { kdDebug(4640) << "KSysColors - constructor" << endl; @@ -85,7 +85,7 @@ KSysColors::KSysColors(QWidget *parent) : KDrawColors(parent) kdDebug(4640) << "KSysColors - constructor - done" << endl; } -KCustomColors::KCustomColors(QWidget *parent) : KDrawColors(parent) +KCustomColors::KCustomColors(TQWidget *parent) : KDrawColors(parent) { kdDebug(4640) << "KCustomColors - constructor" << endl; setNumRows(3); @@ -103,12 +103,12 @@ KCustomColors::~KCustomColors() delete [] freecells; } -void KCustomColors::mouseDoubleClickEvent(QMouseEvent *e) +void KCustomColors::mouseDoubleClickEvent(TQMouseEvent *e) { int row = findRow( e->pos().y() ); int col = findCol( e->pos().x() ); int cell = row * numCols() + col; - QColor color=colorAt(cell); + TQColor color=colorAt(cell); if(KColorDialog::getColor(color)) { setColor(cell, color.rgb()); @@ -124,7 +124,7 @@ void KCustomColors::addColor(uint c) int f = getFreeCell(); if(f != -1) { - QColor color(c); + TQColor color(c); if(!color.isValid()) { kdDebug(4640) << "KCustomColors::addColor: Not a valid color: " << c << endl; |