2018-02-02 11:28:29 +01:00
|
|
|
/* ============================================================
|
|
|
|
* VerticalTabs plugin for Falkon
|
|
|
|
* 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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
#include "verticaltabsplugin.h"
|
|
|
|
|
|
|
|
class BrowserWindow;
|
|
|
|
class TabTreeModel;
|
|
|
|
|
2018-02-02 14:02:59 +01:00
|
|
|
class TabListView;
|
2018-02-02 11:28:29 +01:00
|
|
|
class TabTreeView;
|
|
|
|
|
|
|
|
class VerticalTabsWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit VerticalTabsWidget(BrowserWindow *window);
|
|
|
|
|
|
|
|
void setViewType(VerticalTabsPlugin::ViewType type);
|
|
|
|
|
|
|
|
private:
|
|
|
|
BrowserWindow *m_window;
|
2018-02-02 14:02:59 +01:00
|
|
|
TabListView *m_pinnedView;
|
|
|
|
TabTreeView *m_normalView;
|
2018-02-02 11:28:29 +01:00
|
|
|
TabTreeModel *m_treeModel = nullptr;
|
|
|
|
};
|