summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxyframe.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/oxygen/oxyframe.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/oxyframe.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/apps/oxygen/oxyframe.cpp b/noncore/apps/oxygen/oxyframe.cpp
index 060f9ca..a7833be 100644
--- a/noncore/apps/oxygen/oxyframe.cpp
+++ b/noncore/apps/oxygen/oxyframe.cpp
@@ -4,13 +4,18 @@
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* ( at your option ) any later version. *
* *
**************************************************************************/
#include "oxygen.h"
#include <qpe/config.h>
#include "oxyframe.h"
OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name)
{
+ this->setFrameStyle( QFrame::Panel );
+ this->setLineWidth( 2 );
+ this->setFrameShadow( QFrame::Raised );
+ this->setBackgroundColor( QColor( cyan ) );
}
+