2009-01-07 19:54:43 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Aaron Seigo <aseigo@kde.org>
|
|
|
|
* Copyright 2009 Davide Bettio <davide.bettio@kdemail.net>
|
|
|
|
*
|
|
|
|
* 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 <QPainter>
|
2009-09-23 21:15:51 +02:00
|
|
|
#include <QStyleOptionSpinBox>
|
|
|
|
|
2009-01-07 19:54:43 +01:00
|
|
|
#include <kmimetype.h>
|
2010-10-22 02:25:17 +02:00
|
|
|
#include <knuminput.h>
|
2009-01-07 19:54:43 +01:00
|
|
|
|
2010-10-22 02:25:17 +02:00
|
|
|
#include "applet.h"
|
|
|
|
#include "framesvg.h"
|
|
|
|
#include "private/focusindicator_p.h"
|
|
|
|
#include "private/style_p.h"
|
|
|
|
#include "private/themedwidgetinterface_p.h"
|
|
|
|
#include "theme.h"
|
2009-01-17 19:00:33 +01:00
|
|
|
|
2009-01-07 19:54:43 +01:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2010-10-22 02:25:17 +02:00
|
|
|
class SpinBoxPrivate : public ThemedWidgetInterface<SpinBox>
|
2009-01-07 19:54:43 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-01-17 19:00:33 +01:00
|
|
|
SpinBoxPrivate(SpinBox *spinBox)
|
2010-10-22 18:55:46 +02:00
|
|
|
: ThemedWidgetInterface<SpinBox>(spinBox),
|
2010-10-22 02:25:17 +02:00
|
|
|
focusIndicator(0)
|
2009-01-07 19:54:43 +01:00
|
|
|
{
|
2010-10-29 19:25:24 +02:00
|
|
|
buttonColorForText = true;
|
2009-01-07 19:54:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~SpinBoxPrivate()
|
|
|
|
{
|
|
|
|
}
|
2009-01-17 19:00:33 +01:00
|
|
|
|
|
|
|
Plasma::Style::Ptr style;
|
2009-09-23 21:15:51 +02:00
|
|
|
Plasma::FrameSvg *background;
|
2009-10-19 23:13:54 +02:00
|
|
|
FocusIndicator *focusIndicator;
|
2009-01-07 19:54:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
SpinBox::SpinBox(QGraphicsWidget *parent)
|
|
|
|
: QGraphicsProxyWidget(parent),
|
2009-01-17 19:00:33 +01:00
|
|
|
d(new SpinBoxPrivate(this))
|
2009-01-07 19:54:43 +01:00
|
|
|
{
|
|
|
|
KIntSpinBox *native = new KIntSpinBox;
|
|
|
|
|
|
|
|
connect(native, SIGNAL(valueChanged(int)), this, SIGNAL(valueChanged(int)));
|
2009-01-10 20:35:29 +01:00
|
|
|
connect(native, SIGNAL(editingFinished()), this, SIGNAL(editingFinished()));
|
2009-01-07 19:54:43 +01:00
|
|
|
|
2009-10-22 19:39:43 +02:00
|
|
|
d->focusIndicator = new FocusIndicator(this, "widgets/lineedit");
|
|
|
|
|
2009-01-07 19:54:43 +01:00
|
|
|
setWidget(native);
|
2010-07-13 23:32:07 +02:00
|
|
|
native->setWindowIcon(QIcon());
|
2009-01-07 19:54:43 +01:00
|
|
|
native->setAttribute(Qt::WA_NoSystemBackground);
|
2009-01-17 19:00:33 +01:00
|
|
|
native->setAutoFillBackground(false);
|
|
|
|
|
2009-09-23 21:15:51 +02:00
|
|
|
d->background = new Plasma::FrameSvg(this);
|
|
|
|
d->background->setImagePath("widgets/lineedit");
|
|
|
|
d->background->setCacheAllRenderedFrames(true);
|
|
|
|
|
2009-10-22 19:39:43 +02:00
|
|
|
|
2009-01-17 19:00:33 +01:00
|
|
|
d->style = Plasma::Style::sharedStyle();
|
|
|
|
native->setStyle(d->style.data());
|
2010-10-22 02:25:17 +02:00
|
|
|
d->initTheming();
|
2011-01-13 21:00:33 +01:00
|
|
|
|
|
|
|
QStyleOptionSpinBox spinOpt;
|
|
|
|
spinOpt.initFrom(nativeWidget());
|
|
|
|
QRect controlrect = nativeWidget()->style()->subControlRect(QStyle::CC_SpinBox, &spinOpt, QStyle::SC_SpinBoxFrame, nativeWidget());
|
|
|
|
d->focusIndicator->setCustomGeometry(controlrect);
|
2009-01-07 19:54:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SpinBox::~SpinBox()
|
|
|
|
{
|
|
|
|
delete d;
|
2009-01-17 19:00:33 +01:00
|
|
|
Plasma::Style::doneWithSharedStyle();
|
2009-01-07 19:54:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SpinBox::setMaximum(int max)
|
|
|
|
{
|
|
|
|
static_cast<KIntSpinBox*>(widget())->setMaximum(max);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SpinBox::maximum() const
|
|
|
|
{
|
|
|
|
return static_cast<KIntSpinBox*>(widget())->maximum();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpinBox::setMinimum(int min)
|
|
|
|
{
|
|
|
|
static_cast<KIntSpinBox*>(widget())->setMinimum(min);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SpinBox::minimum() const
|
|
|
|
{
|
|
|
|
return static_cast<KIntSpinBox*>(widget())->minimum();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpinBox::setRange(int min, int max)
|
|
|
|
{
|
|
|
|
static_cast<KIntSpinBox*>(widget())->setRange(min, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpinBox::setValue(int value)
|
|
|
|
{
|
|
|
|
static_cast<KIntSpinBox*>(widget())->setValue(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SpinBox::value() const
|
|
|
|
{
|
|
|
|
return static_cast<KIntSpinBox*>(widget())->value();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpinBox::setStyleSheet(const QString &stylesheet)
|
|
|
|
{
|
|
|
|
widget()->setStyleSheet(stylesheet);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SpinBox::styleSheet()
|
|
|
|
{
|
|
|
|
return widget()->styleSheet();
|
|
|
|
}
|
|
|
|
|
|
|
|
KIntSpinBox *SpinBox::nativeWidget() const
|
|
|
|
{
|
|
|
|
return static_cast<KIntSpinBox*>(widget());
|
|
|
|
}
|
|
|
|
|
2009-09-13 21:18:29 +02:00
|
|
|
void SpinBox::changeEvent(QEvent *event)
|
|
|
|
{
|
2010-10-22 02:25:17 +02:00
|
|
|
d->changeEvent(event);
|
2009-09-13 21:18:29 +02:00
|
|
|
QGraphicsProxyWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
2009-09-23 21:15:51 +02:00
|
|
|
void SpinBox::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
|
|
|
Q_UNUSED(event)
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpinBox::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
|
|
|
Q_UNUSED(event)
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2010-04-07 23:42:19 +02:00
|
|
|
void SpinBox::resizeEvent(QGraphicsSceneResizeEvent *event)
|
2009-10-19 23:13:54 +02:00
|
|
|
{
|
2010-04-07 23:45:09 +02:00
|
|
|
QGraphicsProxyWidget::resizeEvent(event);
|
2009-10-19 23:13:54 +02:00
|
|
|
QStyleOptionSpinBox spinOpt;
|
|
|
|
spinOpt.initFrom(nativeWidget());
|
|
|
|
QRect controlrect = nativeWidget()->style()->subControlRect(QStyle::CC_SpinBox, &spinOpt, QStyle::SC_SpinBoxFrame, nativeWidget());
|
2011-01-13 21:00:33 +01:00
|
|
|
|
2009-10-22 19:39:43 +02:00
|
|
|
if (d->focusIndicator) {
|
|
|
|
d->focusIndicator->setCustomGeometry(controlrect);
|
|
|
|
}
|
2009-10-19 23:13:54 +02:00
|
|
|
}
|
|
|
|
|
2009-09-23 21:15:51 +02:00
|
|
|
void SpinBox::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
|
|
{
|
|
|
|
Q_UNUSED(option)
|
|
|
|
Q_UNUSED(widget)
|
|
|
|
|
|
|
|
QGraphicsProxyWidget::paint(painter, option, widget);
|
|
|
|
}
|
|
|
|
|
2010-05-19 23:45:08 +02:00
|
|
|
void SpinBox::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsWidget *widget = parentWidget();
|
|
|
|
Plasma::Applet *applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
|
|
|
|
while (!applet && widget) {
|
|
|
|
widget = widget->parentWidget();
|
|
|
|
applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (applet) {
|
|
|
|
applet->setStatus(Plasma::AcceptingInputStatus);
|
|
|
|
}
|
|
|
|
QGraphicsProxyWidget::mousePressEvent(event);
|
|
|
|
}
|
2009-09-23 21:15:51 +02:00
|
|
|
|
2010-05-19 23:45:08 +02:00
|
|
|
void SpinBox::focusOutEvent(QFocusEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsWidget *widget = parentWidget();
|
|
|
|
Plasma::Applet *applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
|
|
|
|
while (!applet && widget) {
|
|
|
|
widget = widget->parentWidget();
|
|
|
|
applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (applet) {
|
|
|
|
applet->setStatus(Plasma::UnknownStatus);
|
|
|
|
}
|
|
|
|
QGraphicsProxyWidget::focusOutEvent(event);
|
|
|
|
}
|
2009-09-23 21:15:51 +02:00
|
|
|
|
2009-01-07 19:54:43 +01:00
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#include <spinbox.moc>
|
|
|
|
|