2019-06-10 22:24:42 +02:00
|
|
|
import Falkon
|
2019-06-11 00:08:05 +02:00
|
|
|
import os
|
|
|
|
from PySide2 import QtCore, QtGui
|
2019-06-11 22:41:49 +02:00
|
|
|
from readability.settingsDialog import SettingsDialog
|
2019-06-13 18:26:48 +02:00
|
|
|
from readability.button import Button
|
2019-06-10 22:24:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Readability(Falkon.PluginInterface, QtCore.QObject):
|
2019-06-11 22:41:49 +02:00
|
|
|
config = None
|
2019-06-13 18:26:48 +02:00
|
|
|
view = None
|
|
|
|
buttons = None
|
2019-06-11 00:08:05 +02:00
|
|
|
|
2019-06-10 22:24:42 +02:00
|
|
|
def init(self, state, settingsPath):
|
2019-06-11 22:41:49 +02:00
|
|
|
self.config = {
|
|
|
|
"settingsFile": os.path.join(settingsPath, "readability", "settings.ini"),
|
|
|
|
"icon": "dark"
|
|
|
|
}
|
2019-06-13 18:26:48 +02:00
|
|
|
self.buttons = {}
|
2019-06-11 22:41:49 +02:00
|
|
|
self.loadSettings()
|
2019-06-13 18:26:48 +02:00
|
|
|
self.onConfigUpdate()
|
2019-06-11 22:41:49 +02:00
|
|
|
|
2019-06-10 22:24:42 +02:00
|
|
|
plugins = Falkon.MainApplication.instance().plugins()
|
|
|
|
|
|
|
|
plugins.mainWindowCreated.connect(self.onMainWindowCreated)
|
2019-06-11 00:08:05 +02:00
|
|
|
plugins.mainWindowDeleted.connect(self.onMainWindowDeleted)
|
2019-06-10 22:24:42 +02:00
|
|
|
|
|
|
|
if state == Falkon.PluginInterface.LateInitState:
|
|
|
|
for window in Falkon.MainApplication.instance().windows():
|
|
|
|
self.onMainWindowCreated(window)
|
|
|
|
|
|
|
|
def unload(self):
|
|
|
|
for window in Falkon.MainApplication.instance().windows():
|
2019-06-11 00:08:05 +02:00
|
|
|
self.onMainWindowDeleted(window)
|
2019-06-10 22:24:42 +02:00
|
|
|
|
|
|
|
def testPlugin(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def onMainWindowCreated(self, window):
|
2019-06-13 18:26:48 +02:00
|
|
|
button = Button(self.config["icon"])
|
|
|
|
button.clicked.connect(lambda: self.makeReadability(button.webView()))
|
|
|
|
|
|
|
|
window.navigationBar().addToolButton(button)
|
|
|
|
self.buttons[window] = button
|
2019-06-10 22:24:42 +02:00
|
|
|
|
2019-06-11 00:08:05 +02:00
|
|
|
def onMainWindowDeleted(self, window):
|
2019-06-13 18:26:48 +02:00
|
|
|
if window in self.buttons:
|
|
|
|
del self.buttons[window]
|
2019-06-10 22:24:42 +02:00
|
|
|
|
2019-06-11 00:08:05 +02:00
|
|
|
def populateWebViewMenu(self, menu, view, hitTestResult):
|
|
|
|
self.view = view
|
|
|
|
|
|
|
|
if (hitTestResult.imageUrl().isEmpty()
|
|
|
|
and hitTestResult.linkUrl().isEmpty()
|
|
|
|
and hitTestResult.mediaUrl().isEmpty()
|
|
|
|
and not hitTestResult.isContentEditable()
|
|
|
|
and not hitTestResult.isContentSelected()):
|
2019-06-11 22:41:49 +02:00
|
|
|
icon = "icon-light.png" if self.config["icon"] == "light" else "icon-dark.png"
|
2019-06-11 00:08:05 +02:00
|
|
|
menu.addAction(
|
2019-06-11 22:41:49 +02:00
|
|
|
QtGui.QIcon(os.path.join(os.path.dirname(__file__), "data", icon)),
|
2019-06-11 00:08:05 +02:00
|
|
|
"Readability",
|
|
|
|
self.makeReadability
|
|
|
|
)
|
|
|
|
|
2019-06-13 18:26:48 +02:00
|
|
|
def makeReadability(self, view=None):
|
|
|
|
if view:
|
|
|
|
self.view = view
|
|
|
|
|
2019-06-11 00:08:05 +02:00
|
|
|
dataDir = os.path.join(os.path.dirname(__file__), "data")
|
|
|
|
|
|
|
|
iconClose = Falkon.QzTools.pixmapToDataUrl(
|
|
|
|
QtGui.QPixmap(os.path.join(dataDir, "RM-close.png"))
|
|
|
|
).toString()
|
|
|
|
iconCloseHover = Falkon.QzTools.pixmapToDataUrl(
|
|
|
|
QtGui.QPixmap(os.path.join(dataDir, "RM-close-hover.png"))
|
|
|
|
).toString()
|
|
|
|
iconDelete = Falkon.QzTools.pixmapToDataUrl(
|
|
|
|
QtGui.QPixmap(os.path.join(dataDir, "RM-Delete-24x24.png"))
|
|
|
|
).toString()
|
|
|
|
iconPlus = Falkon.QzTools.pixmapToDataUrl(
|
|
|
|
QtGui.QPixmap(os.path.join(dataDir, "RM-Plus-24x24.png"))
|
|
|
|
).toString()
|
|
|
|
iconMinus = Falkon.QzTools.pixmapToDataUrl(
|
|
|
|
QtGui.QPixmap(os.path.join(dataDir, "RM-Minus-24x24.png"))
|
|
|
|
).toString()
|
|
|
|
iconArrow = Falkon.QzTools.readAllFileContents(
|
|
|
|
os.path.join(dataDir, "RM-Type-Controls-Arrow.png")
|
|
|
|
)
|
|
|
|
iconControls = Falkon.QzTools.pixmapToDataUrl(
|
|
|
|
QtGui.QPixmap(os.path.join(dataDir, "RM-Type-Controls-24x24.png"))
|
|
|
|
).toString()
|
|
|
|
|
|
|
|
css = Falkon.QzTools.readAllFileContents(
|
|
|
|
os.path.join(dataDir, "style.css")
|
|
|
|
).replace("\n", "")
|
|
|
|
css = css.replace("{1}", iconClose)
|
|
|
|
css = css.replace("{2}", iconCloseHover)
|
|
|
|
css = css.replace("{3}", iconDelete)
|
|
|
|
css = css.replace("{4}", iconPlus)
|
|
|
|
css = css.replace("{5}", iconMinus)
|
|
|
|
css = css.replace("{6}", iconArrow)
|
|
|
|
css = css.replace("{7}", iconControls)
|
|
|
|
|
|
|
|
javascript = Falkon.QzTools.readAllFileContents(
|
|
|
|
os.path.join(dataDir, "Readability.js")
|
|
|
|
)
|
|
|
|
toolbar = Falkon.QzTools.readAllFileContents(
|
|
|
|
os.path.join(dataDir, "Toolbar.js")
|
|
|
|
)
|
|
|
|
call = Falkon.QzTools.readAllFileContents(
|
|
|
|
os.path.join(dataDir, "Call.js")
|
|
|
|
)
|
|
|
|
call = call.replace("{1}", javascript)
|
|
|
|
call = call.replace("{2}", toolbar)
|
|
|
|
call = call.replace("{3}", css)
|
|
|
|
|
|
|
|
self.view.page().runJavaScript(call)
|
|
|
|
|
2019-06-11 22:41:49 +02:00
|
|
|
def showSettings(self, parent):
|
|
|
|
settings = SettingsDialog(self.config, parent)
|
|
|
|
settings.accepted.connect(self.saveSettings)
|
2019-06-13 18:26:48 +02:00
|
|
|
settings.accepted.connect(self.onConfigUpdate)
|
2019-06-11 22:41:49 +02:00
|
|
|
settings.exec_()
|
|
|
|
|
|
|
|
def saveSettings(self):
|
|
|
|
settings = QtCore.QSettings(self.config["settingsFile"], QtCore.QSettings.IniFormat)
|
|
|
|
|
|
|
|
settings.beginGroup("Readability")
|
|
|
|
settings.setValue("icon", self.config["icon"])
|
|
|
|
settings.endGroup()
|
|
|
|
|
|
|
|
settings.sync()
|
|
|
|
|
|
|
|
def loadSettings(self):
|
|
|
|
settings = QtCore.QSettings(self.config["settingsFile"], QtCore.QSettings.IniFormat)
|
|
|
|
|
|
|
|
settings.beginGroup("Readability")
|
|
|
|
self.config["icon"] = str(settings.value("icon", self.config["icon"]))
|
|
|
|
settings.endGroup()
|
|
|
|
|
2019-06-13 18:26:48 +02:00
|
|
|
def onConfigUpdate(self):
|
|
|
|
for _, button in self.buttons.items():
|
|
|
|
button.updateIcon(self.config["icon"])
|
|
|
|
|
2019-06-10 22:24:42 +02:00
|
|
|
|
|
|
|
Falkon.registerPlugin(Readability())
|