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

67 lines
2.2 KiB
C
Raw Normal View History

/* ============================================================
* TabManager plugin for QupZilla
* Copyright (C) 2013 S. Razi Alavizadeh <s.r.alavizadeh@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 TabManagerWidgetController : public SideBarInterface
{
Q_OBJECT
public:
explicit TabManagerWidgetController(QObject* parent = 0);
~TabManagerWidgetController();
QString title() const;
QAction* createMenuAction();
QWidget* createSideBarWidget(BrowserWindow* mainWindow);
QWidget* 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*, QWidget*> m_statusBarIcons;
QHash<BrowserWindow*, QAction*> m_actions;
signals:
void requestRefreshTree(WebPage* p = 0);
void pinStateChanged(int index, bool pinned);
};
#endif // TABMANAGERWIDGETCONTROLLER_H