1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/tools/toolbutton.cpp

105 lines
2.4 KiB
C++
Raw Normal View History

2011-09-23 22:06:21 +02:00
/* ============================================================
* QupZilla - WebKit based browser
2011-10-17 09:57:07 +02:00
* Copyright (C) 2010-2011 David Rosca
2011-09-23 22:06:21 +02:00
*
* This program 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.
*
* 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 General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#include "toolbutton.h"
ToolButton::ToolButton(QWidget* parent)
: QToolButton(parent)
, m_usingMultiIcon(false)
{
}
void ToolButton::setThemeIcon(const QString &icon)
{
m_themeIcon = icon;
setIcon(QIcon::fromTheme(icon));
m_usingMultiIcon = false;
}
void ToolButton::setIcon(const QIcon &icon)
{
if (m_usingMultiIcon)
setFixedSize(sizeHint());
m_usingMultiIcon = false;
QToolButton::setIcon(icon);
}
void ToolButton::setData(const QVariant &data)
{
m_data = data;
}
QVariant ToolButton::data()
{
return m_data;
}
void ToolButton::setMultiIcon(const QPixmap &icon)
{
int w = icon.width();
int h = icon.height();
m_normalIcon = icon.copy(0, 0, w, h/4 );
m_hoverIcon = icon.copy(0, h/4, w, h/4 );
m_activeIcon = icon.copy(0, h/2, w, h/4 );
m_disabledIcon = icon.copy(0, 3*h/4, w, h/4 );
m_usingMultiIcon = true;
setFixedSize(m_normalIcon.size());
}
void ToolButton::mousePressEvent(QMouseEvent *e)
{
if (e->buttons() == Qt::MiddleButton) {
emit middleMouseClicked();
}
QToolButton::mousePressEvent(e);
}
void ToolButton::paintEvent(QPaintEvent *e)
{
if (!m_usingMultiIcon) {
QToolButton::paintEvent(e);
return;
}
QPainter p(this);
QStyleOptionToolButton opt;
opt.init(this);
if (!isEnabled()) {
p.drawPixmap(0, 0, m_disabledIcon);
return;
}
if (isDown()) {
p.drawPixmap(0, 0, m_activeIcon);
return;
}
if (opt.state & QStyle::State_MouseOver) {
p.drawPixmap(0, 0, m_hoverIcon);
return;
}
p.drawPixmap(0, 0, m_normalIcon);
}