plasma-framework/uiloader.cpp

144 lines
3.5 KiB
C++
Raw Normal View History

/*
* Copyright 2007 Richard J. Moore <rich@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "uiloader.h"
#include <QStringList>
#include "widgets/checkbox.h"
#include "widgets/combobox.h"
#include "widgets/flash.h"
#include "widgets/frame.h"
#include "widgets/groupbox.h"
#include "widgets/icon.h"
#include "widgets/label.h"
#include "widgets/lineedit.h"
#include "widgets/pushbutton.h"
#include "widgets/radiobutton.h"
#include "widgets/slider.h"
#include "widgets/tabbar.h"
#include "widgets/textedit.h"
namespace Plasma
{
class UiLoaderPrivate
{
public:
QStringList widgets;
QStringList layouts;
};
UiLoader::UiLoader( QObject *parent )
: QObject( parent ),
d( new UiLoaderPrivate() )
{
d->widgets
<< "CheckBox"
<< "ComboBox"
<< "Flash"
<< "Frame"
<< "GroupBox"
<< "Icon"
<< "Label"
<< "LineEdit"
<< "PushButton"
<< "RadioButton"
<< "Slider"
<< "TabBar"
<< "TextEdit";
}
UiLoader::~UiLoader()
{
delete d;
}
QStringList UiLoader::availableWidgets() const
{
return d->widgets;
}
QGraphicsWidget *UiLoader::createWidget( const QString &className, QGraphicsWidget *parent )
{
if (className == QString("CheckBox")) {
return new CheckBox( parent );
}
else if (className == QString("ComboBox")) {
return new ComboBox( parent );
}
else if (className == QString("Flash")) {
return new Flash( parent );
}
else if (className == QString("Frame")) {
return new Frame( parent );
}
else if (className == QString("GroupBox")) {
return new GroupBox( parent );
}
else if (className == QString("Icon")) {
return new Icon( parent );
}
else if (className == QString("Label")) {
return new Label( parent );
}
else if (className == QString("LineEdit")) {
return new LineEdit( parent );
}
else if (className == QString("PushButton")) {
return new PushButton( parent );
}
else if (className == QString("RadioButton")) {
return new RadioButton( parent );
}
else if (className == QString("Slider")) {
return new Slider( parent );
}
else if (className == QString("TabBar")) {
return new TabBar( parent );
}
else if (className == QString("TextEdit")) {
return new TextEdit( parent );
}
return 0;
}
QStringList UiLoader::availableLayouts() const
{
return d->layouts;
}
Layout *UiLoader::createLayout( const QString &className, LayoutItem *parent )
{
#ifdef RICHARD_WORK
if (className == QString("HBoxLayout")) {
return new HBoxLayout( parent );
}
else if (className == QString("VBoxLayout")) {
return new VBoxLayout( parent );
}
else if (className == QString("FlowLayout")) {
return new FlowLayout( parent );
}
#endif
return 0;
}
}