/* ============================================================ * QupZilla - Qt web browser * Copyright (C) 2018 David Rosca * * 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 . * ============================================================ */ #pragma once #include #include #include #include "qzcommon.h" class WebPage; class QUPZILLA_EXPORT AbstractButtonInterface : public QObject { Q_OBJECT public: struct ClickController { QWidget *visualParent; std::function popupPosition; }; explicit AbstractButtonInterface(QObject *parent = nullptr); virtual QString id() const = 0; virtual QString name() const = 0; bool isValid() const; bool isActive() const; void setActive(bool active); QString title() const; void setTitle(const QString &text); QString toolTip() const; void setToolTip(const QString &toolTip); QIcon icon() const; void setIcon(const QIcon &icon); QString badgeLabelText() const; void setBadgeLabelText(const QString &badgeLabelText); WebPage *webPage() const; void setWebPage(WebPage *page); signals: void activeChanged(bool active); void titleChanged(const QString &title); void toolTipChanged(const QString &toolTip); void iconChanged(const QIcon &icon); void badgeLabelTextChanged(const QString &badgeLabelText); void webPageChanged(WebPage *page); void clicked(ClickController *controller); private: bool m_active = true; QString m_title; QString m_toolTip; QIcon m_icon; QString m_badgeLabelText; WebPage *m_page = nullptr; };