2014-02-26 07:41:40 +01:00
|
|
|
// This file is part of RSS Guard.
|
2017-09-19 10:18:21 +02:00
|
|
|
|
2014-02-26 07:41:40 +01:00
|
|
|
//
|
2017-03-25 10:11:18 +01:00
|
|
|
// Copyright (C) 2011-2017 by Martin Rotter <rotter.martinos@gmail.com>
|
2014-02-26 07:41:40 +01:00
|
|
|
//
|
|
|
|
// RSS Guard 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 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// RSS Guard 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 General Public License
|
|
|
|
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2014-01-19 21:35:13 +01:00
|
|
|
#include "gui/plaintoolbutton.h"
|
2014-01-19 18:24:20 +01:00
|
|
|
|
2017-09-19 10:18:21 +02:00
|
|
|
#include <QAction>
|
2014-01-19 18:24:20 +01:00
|
|
|
#include <QPainter>
|
|
|
|
#include <QPaintEvent>
|
2017-09-19 10:18:21 +02:00
|
|
|
#include <QStyle>
|
2014-01-19 18:24:20 +01:00
|
|
|
#include <QStyleOption>
|
2017-09-19 10:18:21 +02:00
|
|
|
#include <QToolButton>
|
2014-01-19 18:24:20 +01:00
|
|
|
|
2017-09-19 10:18:21 +02:00
|
|
|
PlainToolButton::PlainToolButton(QWidget* parent) : QToolButton(parent), m_padding(0) {}
|
2014-01-19 18:24:20 +01:00
|
|
|
|
2017-09-19 10:18:21 +02:00
|
|
|
PlainToolButton::~PlainToolButton() {}
|
2014-01-19 18:24:20 +01:00
|
|
|
|
2017-07-21 06:53:23 +02:00
|
|
|
void PlainToolButton::paintEvent(QPaintEvent* e) {
|
2017-09-19 10:18:21 +02:00
|
|
|
Q_UNUSED(e)
|
|
|
|
QPainter p(this);
|
|
|
|
QRect rect(QPoint(0, 0), size());
|
|
|
|
|
|
|
|
// Set padding.
|
|
|
|
rect.adjust(m_padding, m_padding, -m_padding, -m_padding);
|
2014-01-23 18:01:44 +01:00
|
|
|
|
2017-09-19 10:18:21 +02:00
|
|
|
if (isEnabled()) {
|
|
|
|
if (underMouse() || isChecked()) {
|
|
|
|
p.setOpacity(0.7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
p.setOpacity(0.3);
|
|
|
|
}
|
2014-03-18 22:30:26 +01:00
|
|
|
|
2017-09-19 10:18:21 +02:00
|
|
|
icon().paint(&p, rect);
|
2014-01-19 18:24:20 +01:00
|
|
|
}
|
2014-03-19 07:15:35 +01:00
|
|
|
|
|
|
|
int PlainToolButton::padding() const {
|
2017-09-19 10:18:21 +02:00
|
|
|
return m_padding;
|
2014-03-19 07:15:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlainToolButton::setPadding(int padding) {
|
2017-09-19 10:18:21 +02:00
|
|
|
m_padding = padding;
|
|
|
|
repaint();
|
2015-06-16 20:10:37 +02:00
|
|
|
}
|
2014-03-19 07:15:35 +01:00
|
|
|
|
2015-06-16 20:10:37 +02:00
|
|
|
void PlainToolButton::setChecked(bool checked) {
|
2017-09-19 10:18:21 +02:00
|
|
|
QToolButton::setChecked(checked);
|
|
|
|
repaint();
|
2014-03-19 07:15:35 +01:00
|
|
|
}
|
2016-03-17 11:27:57 +01:00
|
|
|
|
2017-07-21 06:53:23 +02:00
|
|
|
void PlainToolButton::reactOnActionChange(QAction* action) {
|
2017-09-19 10:18:21 +02:00
|
|
|
if (action != nullptr) {
|
|
|
|
setEnabled(action->isEnabled());
|
|
|
|
setCheckable(action->isCheckable());
|
|
|
|
setChecked(action->isChecked());
|
|
|
|
setIcon(action->icon());
|
|
|
|
setToolTip(action->toolTip());
|
|
|
|
}
|
2016-03-17 11:27:57 +01:00
|
|
|
}
|
2017-03-06 08:40:09 +01:00
|
|
|
|
|
|
|
void PlainToolButton::reactOnSenderActionChange() {
|
2017-09-19 10:18:21 +02:00
|
|
|
reactOnActionChange(qobject_cast<QAction*>(sender()));
|
2017-03-06 08:40:09 +01:00
|
|
|
}
|