/* * Copyright 2008 Aaron Seigo * * 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 "slider.h" #include #include #include #include "theme.h" #include "svg.h" namespace Plasma { class SliderPrivate { public: SliderPrivate() { } ~SliderPrivate() { } }; Slider::Slider(QGraphicsWidget *parent) : QGraphicsProxyWidget(parent), d(0) { QSlider *native = new QSlider; connect(native, SIGNAL(sliderMoved(int)), this, SIGNAL(sliderMoved(int))); connect(native, SIGNAL(valueChanged(int)), this, SIGNAL(valueChanged(int))); setWidget(native); native->setAttribute(Qt::WA_NoSystemBackground); } Slider::~Slider() { delete d; } void Slider::setMaximum(int max) { static_cast(widget())->setMaximum(max); } int Slider::maximum() const { return static_cast(widget())->maximum(); } void Slider::setMinimum(int min) { static_cast(widget())->setMinimum(min); } int Slider::minimum() const { return static_cast(widget())->minimum(); } void Slider::setRange(int min, int max) { static_cast(widget())->setRange(min, max); } void Slider::setValue(int value) { static_cast(widget())->setValue(value); } int Slider::value() const { return static_cast(widget())->value(); } void Slider::setOrientation(Qt::Orientation orientation) { static_cast(widget())->setOrientation(orientation); } Qt::Orientation Slider::orientation() const { return static_cast(widget())->orientation(); } void Slider::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } QString Slider::styleSheet() { return widget()->styleSheet(); } QSlider* Slider::nativeWidget() const { return static_cast(widget()); } } // namespace Plasma #include