/* ============================================================ * TabManager plugin for Falkon * Copyright (C) 2013-2017 S. Razi Alavizadeh * * 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 . * ============================================================ */ #ifndef TABMANAGERWIDGET_H #define TABMANAGERWIDGET_H #include #include #include #include namespace Ui { class TabManagerWidget; } class QUrl; class QTreeWidgetItem; class BrowserWindow; class WebPage; class WebTab; class WebView; class TLDExtractor; class TabManagerWidget : public QWidget { Q_OBJECT public: enum GroupType { GroupByWindow = 0, GroupByDomain = 1, GroupByHost = 2 }; explicit TabManagerWidget(BrowserWindow* mainClass, QWidget* parent = 0, bool defaultWidget = false); ~TabManagerWidget(); void closeSelectedTabs(const QHash &tabsHash); void detachSelectedTabs(const QHash &tabsHash); bool bookmarkSelectedTabs(const QHash &tabsHash); void setGroupType(GroupType type); static QString domainFromUrl(const QUrl &url, bool useHostName = false); public slots: void delayedRefreshTree(WebPage* p = 0); void changeGroupType(); private: QTreeWidgetItem* groupByDomainName(bool useHostName = false); QTreeWidgetItem* groupByWindow(); BrowserWindow* getWindow(); Ui::TabManagerWidget* ui; QPointer m_window; WebPage* m_webPage; bool m_isRefreshing; bool m_refreshBlocked; bool m_waitForRefresh; bool m_isDefaultWidget; GroupType m_groupType; QString m_filterText; static TLDExtractor* s_tldExtractor; private slots: void refreshTree(); void processActions(); void onItemActivated(QTreeWidgetItem* item, int column); bool isTabSelected(); void customContextMenuRequested(const QPoint &pos); void filterChanged(const QString &filter, bool force = false); void filterBarClosed(); protected: bool eventFilter(QObject* obj, QEvent* event); signals: void showSideBySide(); void groupTypeChanged(TabManagerWidget::GroupType); }; class TabItem : public QObject, public QTreeWidgetItem { Q_OBJECT public: enum StateRole { ActiveOrCaptionRole = Qt::UserRole + 1 }; TabItem(QTreeWidget* treeWidget, QTreeWidgetItem* parent = 0, bool addToTree = true); BrowserWindow* window() const; void setBrowserWindow(BrowserWindow* window); WebTab* webTab() const; void setWebTab(WebTab* webTab); public slots: void updateIcon(); void setTitle(const QString& title); void setIsActiveOrCaption(bool yes); private: QTreeWidget* m_treeWidget; BrowserWindow* m_window; WebTab* m_webTab; }; #endif // TABMANAGERWIDGET_H