/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2011 nowrep * * 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 . * ============================================================ */ #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::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); }