mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-13 18:42:11 +01:00
88 lines
2.4 KiB
C++
88 lines
2.4 KiB
C++
/* ============================================================
|
|
* QupZilla - WebKit based browser
|
|
* Copyright (C) 2010-2012 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/>.
|
|
* ============================================================ */
|
|
#ifndef BUTTONWITHMENU_H
|
|
#define BUTTONWITHMENU_H
|
|
|
|
#include "toolbutton.h"
|
|
#include "qz_namespace.h"
|
|
|
|
class QT_QUPZILLA_EXPORT ButtonWithMenu : public ToolButton
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
struct Item {
|
|
QString text;
|
|
QIcon icon;
|
|
QVariant userData;
|
|
|
|
Item(const QString &a = QString(), const QIcon &b = QIcon()) {
|
|
text = a;
|
|
icon = b;
|
|
}
|
|
|
|
bool operator==(const Item &a) {
|
|
return (a.text == text) && (a.icon.pixmap(16, 16).toImage() == icon.pixmap(16, 16).toImage());
|
|
}
|
|
|
|
bool isEmpty() {
|
|
return (text.isEmpty() && icon.isNull());
|
|
}
|
|
|
|
void clear() {
|
|
text = QString();
|
|
icon = QIcon();
|
|
userData = QVariant();
|
|
}
|
|
};
|
|
|
|
explicit ButtonWithMenu(QWidget* parent = 0);
|
|
~ButtonWithMenu();
|
|
|
|
void addItem(const Item &item);
|
|
void addItems(const QList<Item> &items);
|
|
void removeItem(const Item &item);
|
|
void setCurrentItem(const Item &item, bool emitSignal = true);
|
|
|
|
Item currentItem();
|
|
QList<Item> allItems() { return m_items; }
|
|
QMenu* menu() const;
|
|
|
|
signals:
|
|
void activeItemChanged(const ButtonWithMenu::Item &item);
|
|
void itemAdded(const ButtonWithMenu::Item &item);
|
|
void itemRemoved(const ButtonWithMenu::Item &item);
|
|
|
|
public slots:
|
|
void clearItems();
|
|
|
|
private slots:
|
|
void setCurrentItem();
|
|
void generateMenu();
|
|
|
|
private:
|
|
void wheelEvent(QWheelEvent* event);
|
|
|
|
QMenu* m_menu;
|
|
QList<Item> m_items;
|
|
Item m_currentItem;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(ButtonWithMenu::Item)
|
|
|
|
#endif // BUTTONWITHMENU_H
|