/* * Copyright 2008 Aaron Seigo * Copyright 2009 Davide Bettio * * 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 "spinbox.h" #include #include #include #include namespace Plasma { class SpinBoxPrivate { public: SpinBoxPrivate() { } ~SpinBoxPrivate() { } }; SpinBox::SpinBox(QGraphicsWidget *parent) : QGraphicsProxyWidget(parent), d(new SpinBoxPrivate) { KIntSpinBox *native = new KIntSpinBox; connect(native, SIGNAL(valueChanged(int)), this, SIGNAL(valueChanged(int))); connect(native, SIGNAL(editingFinished()), this, SIGNAL(editingFinished())); setWidget(native); native->setAttribute(Qt::WA_NoSystemBackground); } SpinBox::~SpinBox() { delete d; } void SpinBox::setMaximum(int max) { static_cast(widget())->setMaximum(max); } int SpinBox::maximum() const { return static_cast(widget())->maximum(); } void SpinBox::setMinimum(int min) { static_cast(widget())->setMinimum(min); } int SpinBox::minimum() const { return static_cast(widget())->minimum(); } void SpinBox::setRange(int min, int max) { static_cast(widget())->setRange(min, max); } void SpinBox::setValue(int value) { static_cast(widget())->setValue(value); } int SpinBox::value() const { return static_cast(widget())->value(); } void SpinBox::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } QString SpinBox::styleSheet() { return widget()->styleSheet(); } KIntSpinBox *SpinBox::nativeWidget() const { return static_cast(widget()); } } // namespace Plasma #include