1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-16 03:52:10 +01:00
falkonOfficial/src/plugins/TabManager/tabmanagerwidgetcontroller.h
David Rosca 32e7ec1826 TabManager: Port icon to AbstractButtonInterface
It is now available from both NavigationBar and StatusBar
2018-01-24 20:37:21 +01:00

68 lines
2.3 KiB
C++

/* ============================================================
* TabManager plugin for Falkon
* Copyright (C) 2013-2017 S. Razi Alavizadeh <s.r.alavizadeh@gmail.com>
* 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/>.
* ============================================================ */
#ifndef TABMANAGERWIDGETCONTROLLER_H
#define TABMANAGERWIDGETCONTROLLER_H
#include "sidebarinterface.h"
#include "tabmanagerwidget.h"
class WebPage;
class AbstractButtonInterface;
class TabManagerWidgetController : public SideBarInterface
{
Q_OBJECT
public:
explicit TabManagerWidgetController(QObject* parent = 0);
~TabManagerWidgetController();
QString title() const;
QAction* createMenuAction();
QWidget* createSideBarWidget(BrowserWindow* mainWindow);
AbstractButtonInterface* createStatusBarIcon(BrowserWindow* mainWindow);
TabManagerWidget::GroupType groupType();
TabManagerWidget* createTabManagerWidget(BrowserWindow* mainClass, QWidget* parent = 0, bool defaultWidget = false);
TabManagerWidget* defaultTabManager();
void addStatusBarIcon(BrowserWindow* window);
void removeStatusBarIcon(BrowserWindow* window);
public slots:
void setGroupType(TabManagerWidget::GroupType type);
void mainWindowDeleted(BrowserWindow* window);
void raiseTabManager();
void showSideBySide();
void emitRefreshTree();
private:
TabManagerWidget* m_defaultTabManager;
TabManagerWidget::GroupType m_groupType;
QHash<BrowserWindow*, AbstractButtonInterface*> m_statusBarIcons;
QHash<BrowserWindow*, QAction*> m_actions;
signals:
void requestRefreshTree(WebPage* p = 0);
};
#endif // TABMANAGERWIDGETCONTROLLER_H