diff options
Diffstat (limited to 'kommander/widgets/groupbox.cpp')
-rw-r--r-- | kommander/widgets/groupbox.cpp | 152 |
1 files changed, 152 insertions, 0 deletions
diff --git a/kommander/widgets/groupbox.cpp b/kommander/widgets/groupbox.cpp new file mode 100644 index 00000000..29947eb1 --- /dev/null +++ b/kommander/widgets/groupbox.cpp @@ -0,0 +1,152 @@ +/*************************************************************************** + groupbox.cpp - Groupbox widget + ------------------- + copyright : (C) 2002 by Marc Britton + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ +/* KDE INCLUDES */ + +/* QT INCLUDES */ +#include <qobject.h> +#include <qstring.h> +#include <qwidget.h> +#include <qstringlist.h> +#include <qevent.h> +#include <qgroupbox.h> +#include <qobjectlist.h> +#include <klocale.h> + +/* OTHER INCLUDES */ +#include "kommanderplugin.h" +#include <specials.h> +#include "groupbox.h" + + +GroupBox::GroupBox(QWidget *a_parent, const char *a_name) + : QGroupBox(a_parent, a_name), KommanderWidget(this) +{ + QStringList states; + states << "default"; + setStates(states); + setDisplayStates(states); +} + +GroupBox::~GroupBox() +{ +} + +QString GroupBox::currentState() const +{ + return QString("default"); +} + +bool GroupBox::isKommanderWidget() const +{ + return true; +} + +QStringList GroupBox::associatedText() const +{ + return KommanderWidget::associatedText(); +} + +void GroupBox::setAssociatedText(const QStringList& a_at) +{ + KommanderWidget::setAssociatedText(a_at); +} + +void GroupBox::setPopulationText(const QString& a_text) +{ + KommanderWidget::setPopulationText(a_text); +} + +QString GroupBox::populationText() const +{ + return KommanderWidget::populationText(); +} + +void GroupBox::populate() +{ + QString txt = KommanderWidget::evalAssociatedText( populationText() ); +//FIXME: setWidgetText( txt ); +} + +/* We need to keep track of all widgets created as a child of a groupbox, in order of creation. */ +void GroupBox::insertChild(QObject *a_child) +{ + m_childList.append(a_child); + QObject::insertChild(a_child); +} + +void GroupBox::removeChild(QObject *a_child) +{ + m_childList.remove(a_child); + QObject::removeChild(a_child); +} + +void GroupBox::showEvent( QShowEvent *e ) +{ + QGroupBox::showEvent(e); + emit widgetOpened(); +} + +void GroupBox::contextMenuEvent( QContextMenuEvent * e ) +{ + e->accept(); + QPoint p = e->globalPos(); + emit contextMenuRequested(p.x(), p.y()); +} + +bool GroupBox::isFunctionSupported(int f) +{ + return f == DCOP::text || f == DCOP::setText || f == DCOP::geometry || f == DCOP::getBackgroundColor || f == DCOP::setBackgroundColor; +// || (f >= FirstFunction && f <= LastFunction); +} + +QString GroupBox::handleDCOP(int function, const QStringList& args) +{ + switch (function) { + case DCOP::text: + { + QString text; + for (QObjectListIt it(m_childList); it.current(); ++it) + if (dynamic_cast<KommanderWidget*>(it.current())) + text += (dynamic_cast<KommanderWidget*>(it.current()))->evalAssociatedText(); + return text; + } + case DCOP::setText: + setTitle(args[0]); + break; + case DCOP::geometry: + { + QString geo = QString::number(this->x())+" "+QString::number(this->y())+" "+QString::number(this->width())+" "+QString::number(this->height()); + return geo; + break; + } + case DCOP::getBackgroundColor: + return this->paletteBackgroundColor().name(); + break; + case DCOP::setBackgroundColor: + { + QColor color; + color.setNamedColor(args[0]); + this->setPaletteBackgroundColor(color); + break; + } + default: + return KommanderWidget::handleDCOP(function, args); + } + return QString(); + +} + +#include "groupbox.moc" |