summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-08-10 15:32:49 (UTC)
committer mickeyl <mickeyl>2003-08-10 15:32:49 (UTC)
commit371c96fa4b2b85bceb8bb91862d355fc14bb971d (patch) (unidiff)
treee2f5321dfc0515dbbd0c91cb43af03a9a79dcd39
parentfda68d1a33f1fbe4d34e7db635a841422da8d284 (diff)
downloadopie-371c96fa4b2b85bceb8bb91862d355fc14bb971d.zip
opie-371c96fa4b2b85bceb8bb91862d355fc14bb971d.tar.gz
opie-371c96fa4b2b85bceb8bb91862d355fc14bb971d.tar.bz2
BUILDFIX: merging this with BRANCH did the wrong thing.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp b/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp
index 5d21f15..7be5af5 100644
--- a/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp
+++ b/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp
@@ -14,36 +14,38 @@
14 14
15 You should have received a copy of the GNU Library General Public License 15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21#include <qdialog.h> 21#include <qdialog.h>
22#include <qpainter.h> 22#include <qpainter.h>
23#include <qdrawutil.h> 23#include <qdrawutil.h>
24#include <qapplication.h> 24#include <qapplication.h>
25#include <kglobalsettings.h> 25#include <kglobalsettings.h>
26#include "kcolordialog.h" 26//#include "kcolordialog.h"
27#include "kcolorbtn.h" 27#include "kcolorbtn.h"
28 28
29#include <opie/colordialog.h>
30
29KColorButton::KColorButton( QWidget *parent, const char *name ) 31KColorButton::KColorButton( QWidget *parent, const char *name )
30 : QPushButton( parent, name ), dragFlag(false) 32 : QPushButton( parent, name ), dragFlag(false)
31{ 33{
32 // 2000-10-15 (putzer): fixes broken keyboard usage 34 // 2000-10-15 (putzer): fixes broken keyboard usage
33 connect (this, SIGNAL(clicked()), this, SLOT(chooseColor())); 35 connect (this, SIGNAL(clicked()), this, SLOT(chooseColor()));
34} 36}
35 37
36KColorButton::KColorButton( const QColor &c, QWidget *parent, 38KColorButton::KColorButton( const QColor &c, QWidget *parent,
37 const char *name ) 39 const char *name )
38 : QPushButton( parent, name ), col(c), dragFlag(false) 40 : QPushButton( parent, name ), col(c), dragFlag(false)
39{ 41{
40 42
41 // 2000-10-15 (putzer): fixes broken keyboard usage 43 // 2000-10-15 (putzer): fixes broken keyboard usage
42 connect (this, SIGNAL(clicked()), this, SLOT(chooseColor())); 44 connect (this, SIGNAL(clicked()), this, SLOT(chooseColor()));
43} 45}
44 46
45void KColorButton::setColor( const QColor &c ) 47void KColorButton::setColor( const QColor &c )
46{ 48{
47 col = c; 49 col = c;
48 repaint( false ); 50 repaint( false );
49} 51}
@@ -64,21 +66,20 @@ void KColorButton::drawButtonLabel( QPainter *painter )
64 qDrawPlainRect( painter, l+b+1, t+b+1, w-b*2, h-b*2, lnCol, 1, 0 ); 66 qDrawPlainRect( painter, l+b+1, t+b+1, w-b*2, h-b*2, lnCol, 1, 0 );
65 b++; 67 b++;
66 painter->fillRect( l+b+1, t+b+1, w-b*2, h-b*2, fillCol ); 68 painter->fillRect( l+b+1, t+b+1, w-b*2, h-b*2, fillCol );
67 } else { 69 } else {
68 qDrawPlainRect( painter, l+b, t+b, w-b*2, h-b*2, lnCol, 1, 0 ); 70 qDrawPlainRect( painter, l+b, t+b, w-b*2, h-b*2, lnCol, 1, 0 );
69 b++; 71 b++;
70 painter->fillRect( l+b, t+b, w-b*2, h-b*2, fillCol ); 72 painter->fillRect( l+b, t+b, w-b*2, h-b*2, fillCol );
71 } 73 }
72} 74}
73 75
74void KColorButton::chooseColor() 76void KColorButton::chooseColor()
75{ 77{
76 if( KColorDialog::getColor( col) == QDialog::Rejected ) 78 QColor newCol=OColorDialog::getColor( col);
79 if( newCol != QDialog::Rejected )
77 { 80 {
78 return; 81 col=newCol;
79 }
80
81 repaint( false ); 82 repaint( false );
82 emit changed( col ); 83 emit changed( col );
84 }
83} 85}
84