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) (side-by-side diff)
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
@@ -19,13 +19,21 @@
#include <qpe/config.h>
#include "oxyframe.h"
-OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name)
+OxyFrame::OxyFrame(QWidget *parent, const char *name, QString symbol )
+ : QLabel(parent,name)
{
N = name;
this->setFrameStyle( QFrame::Box );
this->setLineWidth( 0 );
this->setMidLineWidth( 1 );
this->setFrameShadow( QFrame::Sunken );
+ setMinimumSize(6,6);
+ setScaledContents( true );
+ QFont font;
+ font.setWeight(QFont::Light);
+ font.setPixelSize(3);
+ setFont( font );
+ setText( symbol );
}
void OxyFrame::mousePressEvent ( QMouseEvent * e ){