2008-11-11 10:30:05 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Marco Martin <notmart@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 "toolbutton.h"
|
|
|
|
|
|
|
|
#include <QStyleOptionGraphicsItem>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QToolButton>
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
#include <kicon.h>
|
|
|
|
#include <kiconeffect.h>
|
|
|
|
#include <kmimetype.h>
|
|
|
|
#include <kcolorutils.h>
|
|
|
|
|
|
|
|
#include "theme.h"
|
|
|
|
#include "svg.h"
|
|
|
|
#include "framesvg.h"
|
|
|
|
#include "animator.h"
|
|
|
|
#include "paintutils.h"
|
2009-04-24 09:40:52 +02:00
|
|
|
#include "private/actionwidgetinterface_p.h"
|
2008-11-11 10:30:05 +01:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2009-04-24 09:40:52 +02:00
|
|
|
class ToolButtonPrivate : public ActionWidgetInterface<ToolButton>
|
2008-11-11 10:30:05 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ToolButtonPrivate(ToolButton *toolButton)
|
2009-04-24 09:40:52 +02:00
|
|
|
: ActionWidgetInterface<ToolButton>(toolButton),
|
|
|
|
q(toolButton),
|
2008-11-11 10:30:05 +01:00
|
|
|
background(0),
|
|
|
|
animId(0),
|
|
|
|
fadeIn(false),
|
2009-09-13 15:13:55 +02:00
|
|
|
svg(0),
|
2009-10-12 19:17:46 +02:00
|
|
|
customFont(false),
|
|
|
|
underMouse(false)
|
2008-11-11 10:30:05 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~ToolButtonPrivate()
|
|
|
|
{
|
|
|
|
delete svg;
|
|
|
|
}
|
|
|
|
|
2009-09-13 19:13:55 +02:00
|
|
|
void setPixmap()
|
2008-11-11 10:30:05 +01:00
|
|
|
{
|
|
|
|
if (imagePath.isEmpty()) {
|
2009-09-13 19:15:56 +02:00
|
|
|
delete svg;
|
|
|
|
svg = 0;
|
2008-11-11 10:30:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
KMimeType::Ptr mime = KMimeType::findByPath(absImagePath);
|
2009-09-27 23:26:46 +02:00
|
|
|
QPixmap pm;
|
2008-11-11 10:30:05 +01:00
|
|
|
|
2009-07-16 20:03:22 +02:00
|
|
|
if (mime->is("image/svg+xml") || mime->is("image/svg+xml-compressed")) {
|
2009-09-13 19:13:55 +02:00
|
|
|
if (!svg || svg->imagePath() != absImagePath) {
|
|
|
|
delete svg;
|
|
|
|
svg = new Svg();
|
|
|
|
svg->setImagePath(imagePath);
|
|
|
|
QObject::connect(svg, SIGNAL(repaintNeeded()), q, SLOT(setPixmap()));
|
2009-09-27 23:26:46 +02:00
|
|
|
if (!svgElement.isNull()) {
|
|
|
|
svg->setContainsMultipleImages(true);
|
|
|
|
}
|
2009-09-13 19:13:55 +02:00
|
|
|
}
|
2009-07-16 20:03:22 +02:00
|
|
|
|
2009-09-27 23:26:46 +02:00
|
|
|
//QPainter p(&pm);
|
2009-07-16 20:03:22 +02:00
|
|
|
if (!svgElement.isNull() && svg->hasElement(svgElement)) {
|
|
|
|
QSizeF elementSize = svg->elementSize(svgElement);
|
|
|
|
float scale = pm.width() / qMax(elementSize.width(), elementSize.height());
|
|
|
|
|
|
|
|
svg->resize(svg->size() * scale);
|
2009-09-27 23:26:46 +02:00
|
|
|
pm = svg->pixmap(svgElement);
|
2009-07-16 20:03:22 +02:00
|
|
|
} else {
|
|
|
|
svg->resize(pm.size());
|
2009-09-27 23:26:46 +02:00
|
|
|
pm = svg->pixmap();
|
2009-07-16 20:03:22 +02:00
|
|
|
}
|
2008-11-11 10:30:05 +01:00
|
|
|
} else {
|
2009-09-13 19:15:56 +02:00
|
|
|
delete svg;
|
|
|
|
svg = 0;
|
2008-11-11 10:30:05 +01:00
|
|
|
pm = QPixmap(absImagePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
static_cast<QToolButton*>(q->widget())->setIcon(KIcon(pm));
|
|
|
|
}
|
|
|
|
|
|
|
|
void syncActiveRect();
|
|
|
|
void syncBorders();
|
|
|
|
void animationUpdate(qreal progress);
|
|
|
|
|
|
|
|
ToolButton *q;
|
|
|
|
|
|
|
|
FrameSvg *background;
|
|
|
|
int animId;
|
|
|
|
bool fadeIn;
|
|
|
|
qreal opacity;
|
|
|
|
QRectF activeRect;
|
|
|
|
|
|
|
|
QString imagePath;
|
|
|
|
QString absImagePath;
|
|
|
|
Svg *svg;
|
2009-07-16 20:03:22 +02:00
|
|
|
QString svgElement;
|
2009-09-13 15:13:55 +02:00
|
|
|
bool customFont;
|
2009-10-12 19:17:46 +02:00
|
|
|
bool underMouse;
|
2008-11-11 10:30:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void ToolButtonPrivate::syncActiveRect()
|
|
|
|
{
|
|
|
|
background->setElementPrefix("normal");
|
|
|
|
|
|
|
|
qreal left, top, right, bottom;
|
|
|
|
background->getMargins(left, top, right, bottom);
|
|
|
|
|
|
|
|
background->setElementPrefix("active");
|
|
|
|
qreal activeLeft, activeTop, activeRight, activeBottom;
|
|
|
|
background->getMargins(activeLeft, activeTop, activeRight, activeBottom);
|
|
|
|
|
|
|
|
activeRect = QRectF(QPointF(0, 0), q->size());
|
|
|
|
activeRect.adjust(left - activeLeft, top - activeTop,
|
|
|
|
-(right - activeRight), -(bottom - activeBottom));
|
|
|
|
|
|
|
|
background->setElementPrefix("normal");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolButtonPrivate::syncBorders()
|
|
|
|
{
|
|
|
|
//set margins from the normal element
|
|
|
|
qreal left, top, right, bottom;
|
|
|
|
|
|
|
|
background->setElementPrefix("normal");
|
|
|
|
background->getMargins(left, top, right, bottom);
|
|
|
|
q->setContentsMargins(left, top, right, bottom);
|
|
|
|
|
|
|
|
//calc the rect for the over effect
|
|
|
|
syncActiveRect();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolButtonPrivate::animationUpdate(qreal progress)
|
|
|
|
{
|
|
|
|
if (progress == 1) {
|
|
|
|
animId = 0;
|
|
|
|
fadeIn = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
opacity = fadeIn ? progress : 1 - progress;
|
|
|
|
|
|
|
|
// explicit update
|
|
|
|
q->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolButton::ToolButton(QGraphicsWidget *parent)
|
|
|
|
: QGraphicsProxyWidget(parent),
|
|
|
|
d(new ToolButtonPrivate(this))
|
|
|
|
{
|
|
|
|
QToolButton *native = new QToolButton;
|
|
|
|
connect(native, SIGNAL(clicked()), this, SIGNAL(clicked()));
|
2009-10-05 19:20:05 +02:00
|
|
|
connect(native, SIGNAL(pressed()), this, SIGNAL(pressed()));
|
2008-11-11 10:30:05 +01:00
|
|
|
setWidget(native);
|
|
|
|
native->setAttribute(Qt::WA_NoSystemBackground);
|
2008-11-11 13:50:42 +01:00
|
|
|
native->setAutoRaise(true);
|
2008-11-11 10:30:05 +01:00
|
|
|
|
|
|
|
d->background = new FrameSvg(this);
|
|
|
|
d->background->setImagePath("widgets/button");
|
|
|
|
d->background->setCacheAllRenderedFrames(true);
|
|
|
|
d->background->setElementPrefix("normal");
|
|
|
|
d->syncBorders();
|
|
|
|
setAcceptHoverEvents(true);
|
|
|
|
connect(Plasma::Theme::defaultTheme(), SIGNAL(themeChanged()), SLOT(syncBorders()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolButton::~ToolButton()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
2009-04-24 09:40:52 +02:00
|
|
|
void ToolButton::setAction(QAction *action)
|
|
|
|
{
|
|
|
|
d->setAction(action);
|
|
|
|
}
|
|
|
|
|
|
|
|
QAction *ToolButton::action() const
|
|
|
|
{
|
|
|
|
return d->action;
|
|
|
|
}
|
|
|
|
|
2008-11-11 13:50:42 +01:00
|
|
|
void ToolButton::setAutoRaise(bool raise)
|
|
|
|
{
|
|
|
|
nativeWidget()->setAutoRaise(raise);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToolButton::autoRaise() const
|
|
|
|
{
|
|
|
|
return nativeWidget()->autoRaise();
|
|
|
|
}
|
|
|
|
|
2008-11-11 10:30:05 +01:00
|
|
|
void ToolButton::setText(const QString &text)
|
|
|
|
{
|
|
|
|
static_cast<QToolButton*>(widget())->setText(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ToolButton::text() const
|
|
|
|
{
|
|
|
|
return static_cast<QToolButton*>(widget())->text();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolButton::setImage(const QString &path)
|
|
|
|
{
|
|
|
|
if (d->imagePath == path) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete d->svg;
|
|
|
|
d->svg = 0;
|
|
|
|
d->imagePath = path;
|
|
|
|
|
|
|
|
bool absolutePath = !path.isEmpty() &&
|
|
|
|
#ifdef Q_WS_WIN
|
|
|
|
!QDir::isRelativePath(path)
|
|
|
|
#else
|
2009-10-13 14:40:13 +02:00
|
|
|
(path[0] == '/' || path.startsWith(QLatin1String(":/")))
|
2008-11-11 10:30:05 +01:00
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
if (absolutePath) {
|
|
|
|
d->absImagePath = path;
|
|
|
|
} else {
|
|
|
|
//TODO: package support
|
|
|
|
d->absImagePath = Theme::defaultTheme()->imagePath(path);
|
|
|
|
}
|
|
|
|
|
2009-09-13 19:13:55 +02:00
|
|
|
d->setPixmap();
|
2008-11-11 10:30:05 +01:00
|
|
|
}
|
|
|
|
|
2009-07-16 20:03:22 +02:00
|
|
|
void ToolButton::setImage(const QString &path, const QString &elementid)
|
|
|
|
{
|
|
|
|
d->svgElement = elementid;
|
|
|
|
setImage(path);
|
|
|
|
}
|
|
|
|
|
2009-01-18 18:28:04 +01:00
|
|
|
void ToolButton::setIcon(const QIcon &icon)
|
|
|
|
{
|
|
|
|
nativeWidget()->setIcon(icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon ToolButton::icon() const
|
|
|
|
{
|
|
|
|
return nativeWidget()->icon();
|
|
|
|
}
|
|
|
|
|
2008-11-11 10:30:05 +01:00
|
|
|
QString ToolButton::image() const
|
|
|
|
{
|
|
|
|
return d->imagePath;
|
|
|
|
}
|
|
|
|
|
2009-10-05 19:16:09 +02:00
|
|
|
bool ToolButton::isDown() const
|
|
|
|
{
|
|
|
|
return nativeWidget()->isDown();
|
|
|
|
}
|
|
|
|
|
2008-11-11 10:30:05 +01:00
|
|
|
void ToolButton::setStyleSheet(const QString &stylesheet)
|
|
|
|
{
|
|
|
|
widget()->setStyleSheet(stylesheet);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ToolButton::styleSheet()
|
|
|
|
{
|
|
|
|
return widget()->styleSheet();
|
|
|
|
}
|
|
|
|
|
|
|
|
QToolButton *ToolButton::nativeWidget() const
|
|
|
|
{
|
|
|
|
return static_cast<QToolButton*>(widget());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolButton::resizeEvent(QGraphicsSceneResizeEvent *event)
|
|
|
|
{
|
2009-09-13 19:13:55 +02:00
|
|
|
d->setPixmap();
|
2008-11-11 10:30:05 +01:00
|
|
|
|
|
|
|
if (d->background) {
|
|
|
|
//resize all four panels
|
2008-11-11 19:31:21 +01:00
|
|
|
d->background->setElementPrefix("pressed");
|
2008-11-11 10:30:05 +01:00
|
|
|
d->background->resizeFrame(size());
|
|
|
|
d->background->setElementPrefix("focus");
|
|
|
|
d->background->resizeFrame(size());
|
|
|
|
|
|
|
|
d->syncActiveRect();
|
|
|
|
|
|
|
|
d->background->setElementPrefix("active");
|
|
|
|
d->background->resizeFrame(d->activeRect.size());
|
|
|
|
|
|
|
|
d->background->setElementPrefix("normal");
|
|
|
|
d->background->resizeFrame(size());
|
|
|
|
}
|
|
|
|
|
|
|
|
QGraphicsProxyWidget::resizeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolButton::paint(QPainter *painter,
|
|
|
|
const QStyleOptionGraphicsItem *option,
|
|
|
|
QWidget *widget)
|
|
|
|
{
|
|
|
|
if (!styleSheet().isNull()) {
|
|
|
|
QGraphicsProxyWidget::paint(painter, option, widget);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QToolButton *button = nativeWidget();
|
|
|
|
|
|
|
|
QStyleOptionToolButton buttonOpt;
|
|
|
|
buttonOpt.initFrom(button);
|
|
|
|
buttonOpt.icon = button->icon();
|
|
|
|
buttonOpt.text = button->text();
|
|
|
|
buttonOpt.iconSize = button->iconSize();
|
|
|
|
buttonOpt.toolButtonStyle = button->toolButtonStyle();
|
|
|
|
|
|
|
|
|
2009-10-12 19:17:46 +02:00
|
|
|
if (button->isEnabled() && (d->animId || !button->autoRaise() || d->underMouse || (buttonOpt.state & QStyle::State_On))) {
|
2008-11-11 10:30:05 +01:00
|
|
|
if (button->isDown() || (buttonOpt.state & QStyle::State_On)) {
|
2008-11-11 19:31:21 +01:00
|
|
|
d->background->setElementPrefix("pressed");
|
2008-11-11 10:30:05 +01:00
|
|
|
} else {
|
|
|
|
d->background->setElementPrefix("normal");
|
|
|
|
}
|
|
|
|
d->background->resizeFrame(size());
|
|
|
|
|
|
|
|
if (d->animId) {
|
|
|
|
QPixmap buffer = d->background->framePixmap();
|
|
|
|
|
|
|
|
QPainter bufferPainter(&buffer);
|
|
|
|
bufferPainter.setCompositionMode(QPainter::CompositionMode_DestinationIn);
|
|
|
|
QColor alphaColor(Qt::black);
|
2008-12-01 09:48:25 +01:00
|
|
|
alphaColor.setAlphaF(qMin(qreal(0.95), d->opacity));
|
2008-11-11 10:30:05 +01:00
|
|
|
bufferPainter.fillRect(buffer.rect(), alphaColor);
|
|
|
|
bufferPainter.end();
|
|
|
|
|
|
|
|
painter->drawPixmap(QPoint(0,0), buffer);
|
|
|
|
|
|
|
|
buttonOpt.palette.setColor(QPalette::ButtonText, KColorUtils::mix(Plasma::Theme::defaultTheme()->color(Plasma::Theme::ButtonTextColor), Plasma::Theme::defaultTheme()->color(Plasma::Theme::TextColor), 1-d->opacity));
|
|
|
|
} else {
|
|
|
|
d->background->paintFrame(painter);
|
|
|
|
buttonOpt.palette.setColor(QPalette::ButtonText, Plasma::Theme::defaultTheme()->color(Plasma::Theme::ButtonTextColor));
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
buttonOpt.palette.setColor(QPalette::ButtonText, Plasma::Theme::defaultTheme()->color(Plasma::Theme::TextColor));
|
|
|
|
}
|
|
|
|
|
2009-09-13 15:13:55 +02:00
|
|
|
QFont widgetFont;
|
|
|
|
if (d->customFont) {
|
|
|
|
widgetFont = Plasma::Theme::defaultTheme()->font(Plasma::Theme::DefaultFont);
|
|
|
|
} else {
|
|
|
|
widgetFont = font();
|
|
|
|
}
|
|
|
|
buttonOpt.font = widgetFont;
|
|
|
|
|
|
|
|
painter->setFont(widgetFont);
|
2008-11-11 10:30:05 +01:00
|
|
|
button->style()->drawControl(QStyle::CE_ToolButtonLabel, &buttonOpt, painter, button);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolButton::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2009-10-12 19:17:46 +02:00
|
|
|
d->underMouse = true;
|
2008-11-11 13:50:42 +01:00
|
|
|
if (nativeWidget()->isDown() || !nativeWidget()->autoRaise()) {
|
2008-11-11 10:30:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int FadeInDuration = 75;
|
|
|
|
|
|
|
|
if (d->animId) {
|
|
|
|
Plasma::Animator::self()->stopCustomAnimation(d->animId);
|
|
|
|
}
|
|
|
|
d->animId = Plasma::Animator::self()->customAnimation(
|
|
|
|
40 / (1000 / FadeInDuration), FadeInDuration,
|
|
|
|
Plasma::Animator::LinearCurve, this, "animationUpdate");
|
|
|
|
|
|
|
|
d->background->setElementPrefix("active");
|
|
|
|
|
|
|
|
QGraphicsProxyWidget::hoverEnterEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolButton::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2009-10-12 19:17:46 +02:00
|
|
|
d->underMouse = false;
|
2008-11-11 13:50:42 +01:00
|
|
|
if (nativeWidget()->isDown() || !nativeWidget()->autoRaise()) {
|
2008-11-11 10:30:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int FadeOutDuration = 150;
|
|
|
|
|
|
|
|
if (d->animId) {
|
|
|
|
Plasma::Animator::self()->stopCustomAnimation(d->animId);
|
|
|
|
}
|
|
|
|
|
|
|
|
d->fadeIn = false;
|
|
|
|
d->animId = Plasma::Animator::self()->customAnimation(
|
|
|
|
40 / (1000 / FadeOutDuration), FadeOutDuration,
|
|
|
|
Plasma::Animator::LinearCurve, this, "animationUpdate");
|
|
|
|
|
|
|
|
d->background->setElementPrefix("active");
|
|
|
|
|
|
|
|
QGraphicsProxyWidget::hoverLeaveEvent(event);
|
|
|
|
}
|
|
|
|
|
2009-09-13 15:13:55 +02:00
|
|
|
void ToolButton::changeEvent(QEvent *event)
|
|
|
|
{
|
|
|
|
if (event->type() == QEvent::FontChange) {
|
|
|
|
d->customFont = true;
|
2009-10-12 19:17:46 +02:00
|
|
|
} else if (event->type() == QEvent::EnabledChange && !isEnabled()) {
|
|
|
|
d->underMouse = false;
|
2009-09-13 15:13:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QGraphicsProxyWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
2008-11-11 10:30:05 +01:00
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#include <toolbutton.moc>
|
|
|
|
|