1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-15 19:42:10 +01:00
falkonOfficial/src/plugins/VerticalTabs/verticaltabsplugin.h
2018-02-27 11:31:34 +01:00

86 lines
2.6 KiB
C++

/* ============================================================
* 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 "plugininterface.h"
class BrowserWindow;
class VerticalTabsController;
class VerticalTabsSchemeHandler;
class VerticalTabsPlugin : public QObject, public PluginInterface
{
Q_OBJECT
Q_INTERFACES(PluginInterface)
Q_PLUGIN_METADATA(IID "Falkon.Browser.plugin.VerticalTabs")
public:
explicit VerticalTabsPlugin();
DesktopFile metaData() const override;
void init(InitState state, const QString &settingsPath) override;
void unload() override;
bool testPlugin() override;
void showSettings(QWidget *parent = nullptr) override;
bool keyPress(Qz::ObjectName type, QObject *obj, QKeyEvent *event) override;
enum ViewType {
TabListView,
TabTreeView
};
ViewType viewType() const;
void setViewType(ViewType type);
bool replaceTabBar() const;
void setReplaceTabBar(bool replace);
enum AddChildBehavior {
AppendChild,
PrependChild
};
AddChildBehavior addChildBehavior() const;
void setAddChildBehavior(AddChildBehavior behavior);
QString theme() const;
void setTheme(const QString &theme);
QString styleSheet() const;
Q_SIGNALS:
void viewTypeChanged(ViewType type);
void styleSheetChanged(const QString &styleSheet);
private:
void mainWindowCreated(BrowserWindow *window);
void setTabBarVisible(bool visible);
void setWebTabBehavior(AddChildBehavior behavior);
void loadStyleSheet(const QString &theme);
QString m_settingsPath;
VerticalTabsController *m_controller = nullptr;
VerticalTabsSchemeHandler *m_schemeHandler = nullptr;
ViewType m_viewType = TabListView;
bool m_replaceTabBar = false;
AddChildBehavior m_addChildBehavior = AppendChild;
QString m_theme;
QString m_styleSheet;
};