summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/psewidget.cpp
authorcniehaus <cniehaus>2002-09-19 13:54:25 (UTC)
committer cniehaus <cniehaus>2002-09-19 13:54:25 (UTC)
commit477a620e5745bd30222fe72d9c9b842785c285ab (patch) (side-by-side diff)
treed458aefeacb29d2d863db693349328a0a29e8bb4 /noncore/apps/oxygen/psewidget.cpp
parent71af43c57ea311efbd1cc9b9b18996718a48b3a1 (diff)
downloadopie-477a620e5745bd30222fe72d9c9b842785c285ab.zip
opie-477a620e5745bd30222fe72d9c9b842785c285ab.tar.gz
opie-477a620e5745bd30222fe72d9c9b842785c285ab.tar.bz2
will continue in some hours... The new class Element should work now. Data
storage is still lacking
Diffstat (limited to 'noncore/apps/oxygen/psewidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/oxygen/psewidget.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/noncore/apps/oxygen/psewidget.cpp b/noncore/apps/oxygen/psewidget.cpp
index cf55635..4e002d1 100644
--- a/noncore/apps/oxygen/psewidget.cpp
+++ b/noncore/apps/oxygen/psewidget.cpp
@@ -10,9 +10,19 @@
#include <qpe/config.h>
#include <qlayout.h>
+#include <qlist.h>
#include "psewidget.h"
#include "oxyframe.h"
+
+Element::Element( const QString &name )
+{
+}
+
PSEWidget::PSEWidget() : QWidget()
{
+ QList<Element> elements;
+ elements.setAutoDelete( TRUE );
+ elements.append( new Element( "1" ) );
+
maingrid = new QGridLayout( 18 , 10 , -1 , "maingridlayout" );
OxyFrame *configobj = new OxyFrame(this);