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 "verticaltabsplugin.h"
|
|
|
|
#include "verticaltabssettings.h"
|
|
|
|
#include "verticaltabscontroller.h"
|
|
|
|
|
|
|
|
#include "browserwindow.h"
|
|
|
|
#include "pluginproxy.h"
|
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "tabwidget.h"
|
|
|
|
#include "tabbar.h"
|
|
|
|
#include "sidebar.h"
|
|
|
|
#include "../config.h"
|
|
|
|
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QTranslator>
|
|
|
|
|
|
|
|
VerticalTabsPlugin::VerticalTabsPlugin()
|
|
|
|
: QObject()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginSpec VerticalTabsPlugin::pluginSpec()
|
|
|
|
{
|
|
|
|
PluginSpec spec;
|
|
|
|
spec.name = QSL("Vertical Tabs");
|
|
|
|
spec.info = QSL("Vertical tabs for Falkon");
|
|
|
|
spec.description = QSL("Adds ability to show tabs in sidebar");
|
|
|
|
spec.version = QSL("0.1.0");
|
|
|
|
spec.author = QSL("David Rosca <nowrep@gmail.com>");
|
|
|
|
spec.icon = QIcon(QSL(":verticaltabs/data/icon.svg")).pixmap(32);
|
|
|
|
spec.hasSettings = true;
|
|
|
|
return spec;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsPlugin::init(InitState state, const QString &settingsPath)
|
|
|
|
{
|
|
|
|
m_settingsPath = settingsPath + QL1S("/extensions.ini");
|
|
|
|
|
|
|
|
QSettings settings(m_settingsPath, QSettings::IniFormat);
|
|
|
|
settings.beginGroup(QSL("VerticalTabs"));
|
|
|
|
m_viewType = static_cast<ViewType>(settings.value(QSL("ViewType"), TabListView).toInt());
|
|
|
|
m_replaceTabBar = settings.value(QSL("ReplaceTabBar"), false).toBool();
|
2018-02-03 18:38:53 +01:00
|
|
|
m_addChildBehavior = static_cast<AddChildBehavior>(settings.value(QSL("AddChildBehavior"), AppendChild).toInt());
|
2018-02-02 11:28:29 +01:00
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
m_controller = new VerticalTabsController(this);
|
|
|
|
SideBarManager::addSidebar(QSL("VerticalTabs"), m_controller);
|
|
|
|
|
2018-02-03 18:38:53 +01:00
|
|
|
setWebTabBehavior(m_addChildBehavior);
|
|
|
|
|
2018-02-02 11:28:29 +01:00
|
|
|
connect(mApp->plugins(), &PluginProxy::mainWindowCreated, this, &VerticalTabsPlugin::mainWindowCreated);
|
|
|
|
|
|
|
|
if (state == LateInitState) {
|
|
|
|
const auto windows = mApp->windows();
|
|
|
|
for (BrowserWindow *window : windows) {
|
|
|
|
mainWindowCreated(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsPlugin::unload()
|
|
|
|
{
|
|
|
|
setTabBarVisible(true);
|
|
|
|
|
|
|
|
SideBarManager::removeSidebar(QSL("VerticalTabs"));
|
|
|
|
delete m_controller;
|
|
|
|
m_controller = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VerticalTabsPlugin::testPlugin()
|
|
|
|
{
|
|
|
|
return (Qz::VERSION == QSL(FALKON_VERSION));
|
|
|
|
}
|
|
|
|
|
|
|
|
QTranslator *VerticalTabsPlugin::getTranslator(const QString &locale)
|
|
|
|
{
|
|
|
|
QTranslator *translator = new QTranslator(this);
|
|
|
|
translator->load(locale, QSL(":/verticaltabs/locale/"));
|
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsPlugin::showSettings(QWidget *parent)
|
|
|
|
{
|
|
|
|
VerticalTabsSettings *settings = new VerticalTabsSettings(this, parent);
|
|
|
|
settings->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
VerticalTabsPlugin::ViewType VerticalTabsPlugin::viewType() const
|
|
|
|
{
|
|
|
|
return m_viewType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsPlugin::setViewType(ViewType type)
|
|
|
|
{
|
|
|
|
if (m_viewType == type) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_viewType = type;
|
|
|
|
|
|
|
|
QSettings settings(m_settingsPath, QSettings::IniFormat);
|
|
|
|
settings.setValue(QSL("VerticalTabs/ViewType"), m_viewType);
|
|
|
|
|
|
|
|
emit viewTypeChanged(m_viewType);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VerticalTabsPlugin::replaceTabBar() const
|
|
|
|
{
|
|
|
|
return m_replaceTabBar;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsPlugin::setReplaceTabBar(bool replace)
|
|
|
|
{
|
|
|
|
if (m_replaceTabBar == replace) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_replaceTabBar = replace;
|
|
|
|
setTabBarVisible(!m_replaceTabBar);
|
|
|
|
|
|
|
|
QSettings settings(m_settingsPath, QSettings::IniFormat);
|
|
|
|
settings.setValue(QSL("VerticalTabs/ReplaceTabBar"), m_replaceTabBar);
|
|
|
|
}
|
|
|
|
|
2018-02-03 18:38:53 +01:00
|
|
|
VerticalTabsPlugin::AddChildBehavior VerticalTabsPlugin::addChildBehavior() const
|
|
|
|
{
|
|
|
|
return m_addChildBehavior;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsPlugin::setAddChildBehavior(AddChildBehavior behavior)
|
|
|
|
{
|
|
|
|
if (m_addChildBehavior == behavior) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_addChildBehavior = behavior;
|
|
|
|
setWebTabBehavior(m_addChildBehavior);
|
|
|
|
|
|
|
|
QSettings settings(m_settingsPath, QSettings::IniFormat);
|
|
|
|
settings.setValue(QSL("VerticalTabs/AddChildBehavior"), m_addChildBehavior);
|
|
|
|
}
|
|
|
|
|
2018-02-02 11:28:29 +01:00
|
|
|
void VerticalTabsPlugin::mainWindowCreated(BrowserWindow *window)
|
|
|
|
{
|
|
|
|
if (window->sideBarManager()->activeSideBar().isEmpty()) {
|
|
|
|
window->sideBarManager()->showSideBar(QSL("VerticalTabs"));
|
|
|
|
}
|
|
|
|
setTabBarVisible(!m_replaceTabBar);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerticalTabsPlugin::setTabBarVisible(bool visible)
|
|
|
|
{
|
|
|
|
const auto windows = mApp->windows();
|
|
|
|
for (BrowserWindow *window : windows) {
|
|
|
|
window->tabWidget()->tabBar()->setForceHidden(!visible);
|
|
|
|
}
|
|
|
|
}
|
2018-02-03 18:38:53 +01:00
|
|
|
|
|
|
|
void VerticalTabsPlugin::setWebTabBehavior(AddChildBehavior behavior)
|
|
|
|
{
|
|
|
|
WebTab::setAddChildBehavior(behavior == AppendChild ? WebTab::AppendChild : WebTab::PrependChild);
|
|
|
|
}
|