summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/psewidget.cpp
Unidiff
Diffstat (limited to 'noncore/apps/oxygen/psewidget.cpp') (more/less context) (ignore 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
@@ -1,19 +1,29 @@
1/*************************************************************************** 1/***************************************************************************
2 * * 2 * *
3 * This program is free software; you can redistribute it and/or modify * 3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by * 4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or * 5 * the Free Software Foundation; either version 2 of the License, or *
6 * ( at your option ) any later version. * 6 * ( at your option ) any later version. *
7 * * 7 * *
8 **************************************************************************/ 8 **************************************************************************/
9 9
10#include <qpe/config.h> 10#include <qpe/config.h>
11#include <qlayout.h> 11#include <qlayout.h>
12#include <qlist.h>
12#include "psewidget.h" 13#include "psewidget.h"
13#include "oxyframe.h" 14#include "oxyframe.h"
14 15
16
17Element::Element( const QString &name )
18{
19}
20
15PSEWidget::PSEWidget() : QWidget() 21PSEWidget::PSEWidget() : QWidget()
16{ 22{
23 QList<Element> elements;
24 elements.setAutoDelete( TRUE );
25 elements.append( new Element( "1" ) );
26
17 maingrid = new QGridLayout( 18 , 10 , -1 , "maingridlayout" ); 27 maingrid = new QGridLayout( 18 , 10 , -1 , "maingridlayout" );
18 OxyFrame *configobj = new OxyFrame(this); 28 OxyFrame *configobj = new OxyFrame(this);
19} 29}