summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxyframe.cpp
authortille <tille>2002-11-17 17:41:36 (UTC)
committer tille <tille>2002-11-17 17:41:36 (UTC)
commit8b7363e22c3d8ba53baf14e6eb31ea3958b43e9c (patch) (unidiff)
treef9ada7584e39e37402e588b9c67f276c845ee832 /noncore/apps/oxygen/oxyframe.cpp
parentc7e7142bc83a8f3d526452bce56c410f4e88c750 (diff)
downloadopie-8b7363e22c3d8ba53baf14e6eb31ea3958b43e9c.zip
opie-8b7363e22c3d8ba53baf14e6eb31ea3958b43e9c.tar.gz
opie-8b7363e22c3d8ba53baf14e6eb31ea3958b43e9c.tar.bz2
added atom symbols in table
Diffstat (limited to 'noncore/apps/oxygen/oxyframe.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/oxyframe.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/noncore/apps/oxygen/oxyframe.cpp b/noncore/apps/oxygen/oxyframe.cpp
index c61c8e5..2ce40e7 100644
--- a/noncore/apps/oxygen/oxyframe.cpp
+++ b/noncore/apps/oxygen/oxyframe.cpp
@@ -10,24 +10,32 @@
10 * * 10 * *
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * ( at your option ) any later version. * 14 * ( at your option ) any later version. *
15 * * 15 * *
16 **************************************************************************/ 16 **************************************************************************/
17#include "oxygen.h" 17#include "oxygen.h"
18 18
19#include <qpe/config.h> 19#include <qpe/config.h>
20#include "oxyframe.h" 20#include "oxyframe.h"
21 21
22OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name) 22OxyFrame::OxyFrame(QWidget *parent, const char *name, QString symbol )
23 : QLabel(parent,name)
23{ 24{
24 N = name; 25 N = name;
25 this->setFrameStyle( QFrame::Box ); 26 this->setFrameStyle( QFrame::Box );
26 this->setLineWidth( 0 ); 27 this->setLineWidth( 0 );
27 this->setMidLineWidth( 1 ); 28 this->setMidLineWidth( 1 );
28 this->setFrameShadow( QFrame::Sunken ); 29 this->setFrameShadow( QFrame::Sunken );
30 setMinimumSize(6,6);
31 setScaledContents( true );
32 QFont font;
33 font.setWeight(QFont::Light);
34 font.setPixelSize(3);
35 setFont( font );
36 setText( symbol );
29} 37}
30 38
31void OxyFrame::mousePressEvent ( QMouseEvent * e ){ 39void OxyFrame::mousePressEvent ( QMouseEvent * e ){
32 emit num( N ); 40 emit num( N );
33}; 41};