2018-01-05 13:16:06 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - Qt web browser
|
|
|
|
* Copyright (C) 2018 David Rosca <nowrep@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 "navigationbartoolbutton.h"
|
|
|
|
#include "abstractbuttoninterface.h"
|
|
|
|
|
2018-01-06 15:53:52 +01:00
|
|
|
#include <QLabel>
|
2018-01-05 13:16:06 +01:00
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
NavigationBarToolButton::NavigationBarToolButton(AbstractButtonInterface *button, QWidget *parent)
|
|
|
|
: ToolButton(parent)
|
|
|
|
, m_button(button)
|
|
|
|
{
|
|
|
|
setAutoRaise(true);
|
|
|
|
setToolbarButtonLook(true);
|
|
|
|
setFocusPolicy(Qt::NoFocus);
|
|
|
|
|
2018-01-06 15:53:52 +01:00
|
|
|
m_badgeLabel = new QLabel(this);
|
|
|
|
m_badgeLabel->setObjectName(QSL("navigation-toolbutton-badge"));
|
|
|
|
QFont f = m_badgeLabel->font();
|
|
|
|
f.setPixelSize(m_badgeLabel->height() / 2.5);
|
|
|
|
m_badgeLabel->setFont(f);
|
|
|
|
m_badgeLabel->hide();
|
|
|
|
|
2018-01-05 13:16:06 +01:00
|
|
|
setToolTip(button->toolTip());
|
2018-01-05 21:15:03 +01:00
|
|
|
updateIcon();
|
2018-01-06 15:53:52 +01:00
|
|
|
updateBadge();
|
2018-01-05 13:16:06 +01:00
|
|
|
|
2018-01-05 21:15:03 +01:00
|
|
|
connect(button, &AbstractButtonInterface::iconChanged, this, &NavigationBarToolButton::updateIcon);
|
|
|
|
connect(button, &AbstractButtonInterface::activeChanged, this, &NavigationBarToolButton::updateIcon);
|
|
|
|
connect(button, &AbstractButtonInterface::toolTipChanged, this, &NavigationBarToolButton::setToolTip);
|
2018-01-06 15:53:52 +01:00
|
|
|
connect(button, &AbstractButtonInterface::badgeLabelTextChanged, this, &NavigationBarToolButton::updateBadge);
|
2018-01-05 13:16:06 +01:00
|
|
|
connect(this, &ToolButton::clicked, this, &NavigationBarToolButton::clicked);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBarToolButton::clicked()
|
|
|
|
{
|
|
|
|
AbstractButtonInterface::ClickController c;
|
|
|
|
c.visualParent = this;
|
|
|
|
c.popupPosition = [this](const QSize &size) {
|
|
|
|
QPoint pos = mapToGlobal(rect().bottomRight());
|
|
|
|
if (QApplication::isRightToLeft()) {
|
|
|
|
pos.setX(pos.x() - rect().width());
|
|
|
|
} else {
|
|
|
|
pos.setX(pos.x() - size.width());
|
|
|
|
}
|
|
|
|
return pos;
|
|
|
|
};
|
|
|
|
setDown(true);
|
|
|
|
emit m_button->clicked(&c);
|
|
|
|
setDown(false);
|
|
|
|
}
|
2018-01-05 21:15:03 +01:00
|
|
|
|
|
|
|
void NavigationBarToolButton::updateIcon()
|
|
|
|
{
|
|
|
|
const QIcon::Mode mode = m_button->isActive() ? QIcon::Normal : QIcon::Disabled;
|
|
|
|
const QImage img = m_button->icon().pixmap(iconSize(), mode).toImage();
|
|
|
|
setIcon(QPixmap::fromImage(img, Qt::MonoOnly));
|
|
|
|
}
|
2018-01-06 15:53:52 +01:00
|
|
|
|
|
|
|
void NavigationBarToolButton::updateBadge()
|
|
|
|
{
|
|
|
|
if (m_button->badgeLabelText().isEmpty()) {
|
|
|
|
m_badgeLabel->hide();
|
|
|
|
} else {
|
|
|
|
m_badgeLabel->setText(m_button->badgeLabelText());
|
|
|
|
m_badgeLabel->resize(m_badgeLabel->sizeHint());
|
|
|
|
m_badgeLabel->move(width() - m_badgeLabel->width(), 0);
|
|
|
|
m_badgeLabel->show();
|
|
|
|
}
|
|
|
|
}
|