""" # ============================================================ # Unloader - plugin for Falkon # Copyright (C) 2019 Juraj Oravec # # 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 . # ============================================================ """ import Falkon from PySide2 import QtCore from unloader.manager import UnloaderManager class UnloaderPlugin(Falkon.PluginInterface, QtCore.QObject): manager = None def init(self, state, settingsPath): self.manager = UnloaderManager(settingsPath) plugins = Falkon.MainApplication.instance().plugins() plugins.mainWindowCreated.connect(self.manager.onMainWindowCreated) plugins.mainWindowDeleted.connect(self.manager.onMainWindowDeleted) if state == Falkon.PluginInterface.LateInitState: for window in Falkon.MainApplication.instance().windows(): self.manager.onMainWindowCreated(window) def unload(self): if self.manager: del self.manager self.manager = None def testPlugin(self): return True def showSettings(self, parent): self.manager.showSettings(parent) Falkon.registerPlugin(UnloaderPlugin())