summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxyframe.cpp
authorcniehaus <cniehaus>2002-09-20 12:13:58 (UTC)
committer cniehaus <cniehaus>2002-09-20 12:13:58 (UTC)
commite1c71743917aa6047c5ed7da6ca3a18024ceabde (patch) (unidiff)
tree097c975669e3372973b46431a9cc02cda6210cc7 /noncore/apps/oxygen/oxyframe.cpp
parentb1f3d33cb0b3f203f153074a8812d5988c3031b2 (diff)
downloadopie-e1c71743917aa6047c5ed7da6ca3a18024ceabde.zip
opie-e1c71743917aa6047c5ed7da6ca3a18024ceabde.tar.gz
opie-e1c71743917aa6047c5ed7da6ca3a18024ceabde.tar.bz2
fixing the colors. THis looks almost cool :)
Diffstat (limited to 'noncore/apps/oxygen/oxyframe.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/oxyframe.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/apps/oxygen/oxyframe.cpp b/noncore/apps/oxygen/oxyframe.cpp
index 2d7fc84..a5f262e 100644
--- a/noncore/apps/oxygen/oxyframe.cpp
+++ b/noncore/apps/oxygen/oxyframe.cpp
@@ -11,15 +11,15 @@
11#include <qpe/config.h> 11#include <qpe/config.h>
12#include "oxyframe.h" 12#include "oxyframe.h"
13 13
14OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name) 14OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name)
15{ 15{
16 N = name; 16 N = name;
17 this->setFrameStyle( QFrame::Panel ); 17 this->setFrameStyle( QFrame::Box );
18 this->setLineWidth( 2 ); 18 this->setLineWidth( 0 );
19 this->setFrameShadow( QFrame::Raised ); 19 this->setMidLineWidth( 1 );
20 this->setBackgroundColor( QColor( green ) ); 20 this->setFrameShadow( QFrame::Sunken );
21} 21}
22 22
23void OxyFrame::mousePressEvent ( QMouseEvent * e ){ 23void OxyFrame::mousePressEvent ( QMouseEvent * e ){
24 emit num( N ); 24 emit num( N );
25}; 25};