1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/tools/buttonwithmenu.cpp
2017-08-25 17:32:32 +02:00

180 lines
4.1 KiB
C++

/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2010-2017 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 "buttonwithmenu.h"
#include <QMenu>
#include <QWheelEvent>
ButtonWithMenu::ButtonWithMenu(QWidget* parent)
: ToolButton(parent)
, m_menu(new QMenu(this))
{
setCursor(Qt::ArrowCursor);
setFocusPolicy(Qt::ClickFocus);
connect(this, SIGNAL(aboutToShowMenu()), this, SLOT(generateMenu()));
}
void ButtonWithMenu::setCurrentItem()
{
if (QAction* action = qobject_cast<QAction*>(sender())) {
setCurrentItem(action->data().value<Item>());
}
}
void ButtonWithMenu::clearItems()
{
m_menu->clear();
m_items.clear();
}
void ButtonWithMenu::selectNextItem()
{
int index = m_items.indexOf(m_currentItem) + 1;
if (index < m_items.size()) {
setCurrentIndex(index);
}
}
void ButtonWithMenu::selectPreviousItem()
{
int index = m_items.indexOf(m_currentItem) - 1;
if (index >= 0) {
setCurrentIndex(index);
}
}
void ButtonWithMenu::addItem(const Item &item)
{
m_items.append(item);
if (m_items.count() == 1) {
setCurrentItem(item);
}
emit itemAdded(item);
}
void ButtonWithMenu::addItems(const QVector<Item> &items)
{
foreach (const Item &item, items) {
addItem(item);
}
}
void ButtonWithMenu::removeItem(const Item &item)
{
int index = m_items.indexOf(item);
if (index < 0) {
return;
}
m_items.remove(index);
if (m_items.count() == 0) {
setIcon(QIcon());
return;
}
if (m_currentItem == item) {
setCurrentItem(m_items.at(0));
}
}
void ButtonWithMenu::setCurrentItem(const Item &item, bool emitSignal)
{
int index = m_items.indexOf(item);
if (index < 0 || m_currentItem == item) {
return;
}
m_currentItem = item;
setIcon(m_currentItem.icon);
setToolTip(m_currentItem.text);
if (emitSignal) {
emit activeItemChanged(m_currentItem);
}
}
void ButtonWithMenu::setCurrentIndex(int index, bool emitSignal)
{
setCurrentItem(m_items.at(index), emitSignal);
}
void ButtonWithMenu::wheelEvent(QWheelEvent* event)
{
m_wheelHelper.processEvent(event);
while (WheelHelper::Direction direction = m_wheelHelper.takeDirection()) {
switch (direction) {
case WheelHelper::WheelUp:
case WheelHelper::WheelLeft:
selectPreviousItem();
break;
case WheelHelper::WheelDown:
case WheelHelper::WheelRight:
selectNextItem();
break;
default:
break;
}
}
event->accept();
}
ButtonWithMenu::Item ButtonWithMenu::currentItem()
{
return m_currentItem;
}
QMenu* ButtonWithMenu::menu() const
{
return m_menu;
}
void ButtonWithMenu::generateMenu()
{
m_menu->clear();
foreach (const Item &item, m_items) {
QVariant variant;
variant.setValue<Item>(item);
m_menu->addAction(item.icon, item.text, this, SLOT(setCurrentItem()))->setData(variant);
}
}
void ButtonWithMenu::mousePressEvent(QMouseEvent *event)
{
if (parentWidget() && parentWidget()->parentWidget()) {
emit aboutToShowMenu();
QWidget *w = parentWidget()->parentWidget();
m_menu->popup(w->mapToGlobal(w->rect().bottomLeft()));
}
ToolButton::mousePressEvent(event);
}
ButtonWithMenu::~ButtonWithMenu()
{
}