summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/psewidget.cpp
blob: 4e002d15ae86a6f9ad1b3dcdf7e21d1e07dfc83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/***************************************************************************
 *                                                                         *
 * This program is free software; you can redistribute it and/or modify    *
 * 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 <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);
}