rssguard/src/gui/plaintoolbutton.cpp

60 lines
1.4 KiB
C++
Raw Normal View History

2014-02-26 07:41:40 +01:00
// This file is part of RSS Guard.
//
2015-01-04 14:12:14 +01:00
// Copyright (C) 2011-2015 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"
#include <QToolButton>
#include <QStyle>
#include <QPainter>
#include <QPaintEvent>
#include <QStyleOption>
2014-03-19 07:15:35 +01:00
PlainToolButton::PlainToolButton(QWidget *parent) : QToolButton(parent), m_padding(0) {
}
2014-01-19 21:35:13 +01:00
PlainToolButton::~PlainToolButton() {
}
2014-01-19 21:35:13 +01:00
void PlainToolButton::paintEvent(QPaintEvent *e) {
2014-01-23 18:01:44 +01:00
Q_UNUSED(e)
QPainter p(this);
2014-03-18 22:30:26 +01:00
QRect rect(QPoint(0, 0), size());
2014-03-19 07:15:35 +01:00
// Set padding.
rect.adjust(m_padding, m_padding, -m_padding, -m_padding);
2014-03-18 22:30:26 +01:00
// Paint the icon.
2014-03-19 07:15:35 +01:00
if (underMouse()) {
p.setOpacity(0.7);
}
2014-03-18 22:30:26 +01:00
icon().paint(&p, rect);
}
2014-03-19 07:15:35 +01:00
int PlainToolButton::padding() const {
return m_padding;
}
void PlainToolButton::setPadding(int padding) {
m_padding = padding;
repaint();
}