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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#include "verticaltabswidget.h"
|
|
|
|
#include "tabtreeview.h"
|
2018-02-02 14:02:59 +01:00
|
|
|
#include "tablistview.h"
|
|
|
|
#include "tabfiltermodel.h"
|
2018-02-02 11:28:29 +01:00
|
|
|
|
2018-02-04 11:13:18 +01:00
|
|
|
#include "webtab.h"
|
2018-02-02 11:28:29 +01:00
|
|
|
#include "tabmodel.h"
|
2018-02-03 17:39:20 +01:00
|
|
|
#include "toolbutton.h"
|
2018-02-02 11:28:29 +01:00
|
|
|
#include "tabtreemodel.h"
|
2018-02-04 11:13:18 +01:00
|
|
|
#include "tabbedwebview.h"
|
2018-02-02 11:28:29 +01:00
|
|
|
#include "browserwindow.h"
|
|
|
|
|
2018-02-02 14:02:59 +01:00
|
|
|
#include <QListView>
|
2018-02-04 11:24:21 +01:00
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QWheelEvent>
|
2018-02-02 11:28:29 +01:00
|
|
|
|
|
|
|
VerticalTabsWidget::VerticalTabsWidget(BrowserWindow *window)
|
|
|
|
: QWidget()
|
|
|
|
, m_window(window)
|
|
|
|
{
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
|
|
layout->setSpacing(0);
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
2018-02-04 11:13:18 +01:00
|
|
|
m_pinnedView = new TabListView(this);
|
2018-02-02 14:02:59 +01:00
|
|
|
TabFilterModel *model = new TabFilterModel(m_pinnedView);
|
|
|
|
model->setFilterPinnedTabs(false);
|
|
|
|
model->setSourceModel(m_window->tabModel());
|
|
|
|
m_pinnedView->setModel(model);
|
2018-02-03 18:16:18 +01:00
|
|
|
m_pinnedView->setHideWhenEmpty(true);
|
2018-02-02 14:02:59 +01:00
|
|
|
|
2018-02-03 17:39:20 +01:00
|
|
|
m_normalView = new TabTreeView(this);
|
2018-02-02 14:02:59 +01:00
|
|
|
m_pinnedView->setFocusProxy(m_normalView);
|
2018-02-03 17:39:20 +01:00
|
|
|
|
|
|
|
ToolButton *buttonAddTab = new ToolButton(this);
|
|
|
|
buttonAddTab->setObjectName(QSL("verticaltabs-button-addtab"));
|
|
|
|
buttonAddTab->setAutoRaise(true);
|
|
|
|
buttonAddTab->setFocusPolicy(Qt::NoFocus);
|
|
|
|
buttonAddTab->setToolTip(tr("New Tab"));
|
|
|
|
buttonAddTab->setIcon(QIcon::fromTheme(QSL("list-add")));
|
|
|
|
buttonAddTab->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
|
|
|
connect(buttonAddTab, SIGNAL(clicked()), m_window, SLOT(addTab()));
|
|
|
|
|
|
|
|
layout->addWidget(m_pinnedView);
|
|
|
|
layout->addWidget(m_normalView);
|
|
|
|
layout->addWidget(buttonAddTab);
|
2018-02-02 11:28:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsWidget::setViewType(VerticalTabsPlugin::ViewType type)
|
|
|
|
{
|
2018-02-02 14:02:59 +01:00
|
|
|
TabFilterModel *model = new TabFilterModel(m_normalView);
|
|
|
|
model->setFilterPinnedTabs(true);
|
|
|
|
|
2018-02-02 17:28:56 +01:00
|
|
|
delete m_normalView->model();
|
|
|
|
|
2018-02-02 11:28:29 +01:00
|
|
|
switch (type) {
|
|
|
|
case VerticalTabsPlugin::TabListView:
|
2018-02-02 14:02:59 +01:00
|
|
|
model->setSourceModel(m_window->tabModel());
|
|
|
|
m_normalView->setModel(model);
|
|
|
|
m_normalView->setTabsInOrder(true);
|
2018-02-02 11:28:29 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case VerticalTabsPlugin::TabTreeView:
|
2018-02-02 17:59:03 +01:00
|
|
|
m_treeModel = new TabTreeModel(m_window, model);
|
2018-02-02 11:28:29 +01:00
|
|
|
m_treeModel->setSourceModel(m_window->tabModel());
|
2018-02-02 14:02:59 +01:00
|
|
|
model->setSourceModel(m_treeModel);
|
|
|
|
m_normalView->setModel(model);
|
|
|
|
m_normalView->setTabsInOrder(false);
|
2018-02-02 11:28:29 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
}
|
2018-02-04 11:13:18 +01:00
|
|
|
|
|
|
|
void VerticalTabsWidget::switchToNextTab()
|
|
|
|
{
|
|
|
|
WebTab *tab = nextTab();
|
|
|
|
if (tab) {
|
|
|
|
tab->makeCurrentTab();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsWidget::switchToPreviousTab()
|
|
|
|
{
|
|
|
|
WebTab *tab = previousTab();
|
|
|
|
if (tab) {
|
|
|
|
tab->makeCurrentTab();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WebTab *VerticalTabsWidget::nextTab() const
|
|
|
|
{
|
|
|
|
QModelIndex next;
|
|
|
|
if (m_window->weView()->webTab()->isPinned()) {
|
|
|
|
next = m_pinnedView->indexAfter(m_pinnedView->currentIndex());
|
|
|
|
if (!next.isValid()) {
|
|
|
|
next = m_normalView->model()->index(0, 0);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
next = m_normalView->indexBelow(m_normalView->currentIndex());
|
|
|
|
if (!next.isValid()) {
|
|
|
|
next = m_pinnedView->model()->index(0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return next.data(TabModel::WebTabRole).value<WebTab*>();
|
|
|
|
}
|
|
|
|
|
|
|
|
WebTab *VerticalTabsWidget::previousTab() const
|
|
|
|
{
|
|
|
|
QModelIndex previous;
|
|
|
|
if (m_window->weView()->webTab()->isPinned()) {
|
|
|
|
previous = m_pinnedView->indexBefore(m_pinnedView->currentIndex());
|
|
|
|
if (!previous.isValid()) {
|
|
|
|
previous = m_normalView->model()->index(m_normalView->model()->rowCount() - 1, 0);
|
|
|
|
while (previous.isValid()) {
|
|
|
|
const QModelIndex below = m_normalView->indexBelow(previous);
|
|
|
|
if (below.isValid()) {
|
|
|
|
previous = below;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
previous = m_normalView->indexAbove(m_normalView->currentIndex());
|
|
|
|
if (!previous.isValid()) {
|
|
|
|
previous = m_pinnedView->model()->index(m_pinnedView->model()->rowCount() - 1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return previous.data(TabModel::WebTabRole).value<WebTab*>();
|
|
|
|
}
|
2018-02-04 11:24:21 +01:00
|
|
|
|
|
|
|
void VerticalTabsWidget::wheelEvent(QWheelEvent *event)
|
|
|
|
{
|
|
|
|
if (m_normalView->verticalScrollBar()->isVisible()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_wheelHelper.processEvent(event);
|
|
|
|
while (WheelHelper::Direction direction = m_wheelHelper.takeDirection()) {
|
|
|
|
switch (direction) {
|
|
|
|
case WheelHelper::WheelUp:
|
|
|
|
case WheelHelper::WheelLeft:
|
|
|
|
switchToPreviousTab();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WheelHelper::WheelDown:
|
|
|
|
case WheelHelper::WheelRight:
|
|
|
|
switchToNextTab();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
event->accept();
|
|
|
|
}
|