spiegel-keyman/linux/keyman-config/keyman_config/welcome.py
2018-11-28 07:45:11 +07:00

70 lines
2.5 KiB
Python

#!/usr/bin/python3
import gi
import logging
import subprocess
import webbrowser
import urllib.parse
import webbrowser
gi.require_version('Gtk', '3.0')
gi.require_version('WebKit2', '4.0')
from gi.repository import Gtk, WebKit2
from keyman_config.check_mime_type import check_mime_type
from keyman_config.accelerators import bind_accelerator, init_accel
class WelcomeView(Gtk.Window):
def __init__(self, welcomeurl, keyboardname):
self.accelerators = None
kbtitle = keyboardname + " installed"
self.welcomeurl = welcomeurl
Gtk.Window.__init__(self, title=kbtitle)
init_accel(self)
vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
s = Gtk.ScrolledWindow()
self.webview = WebKit2.WebView()
self.webview.connect("decide-policy", self.doc_policy)
self.webview.load_uri(welcomeurl)
s.add(self.webview)
vbox.pack_start(s, True, True, 0)
hbox = Gtk.Box(spacing=12)
vbox.pack_start(hbox, False, False, 6)
button = Gtk.Button.new_with_mnemonic("Open in _Web browser")
button.connect("clicked", self.on_openweb_clicked)
button.set_tooltip_text("Open in the default web browser to do things like printing")
hbox.pack_start(button, False, False, 12)
button = Gtk.Button.new_with_mnemonic("_OK")
button.connect("clicked", self.on_ok_clicked)
hbox.pack_end(button, False, False, 12)
bind_accelerator(self.accelerators, button, '<Control>w')
self.add(vbox)
def doc_policy(self, web_view, decision, decision_type):
logging.info("Checking policy")
logging.debug("received policy decision request of type: {0}".format(decision_type.value_name))
if decision_type == WebKit2.PolicyDecisionType.NAVIGATION_ACTION or decision_type == WebKit2.PolicyDecisionType.NEW_WINDOW_ACTION:
nav_action = decision.get_navigation_action()
request = nav_action.get_request()
uri = request.get_uri()
logging.debug("nav request is for uri %s", uri)
if not "welcome.htm" in uri:
logging.debug("opening uri %s in webbrowser")
webbrowser.open(uri)
decision.ignore()
return True
return False
def on_openweb_clicked(self, button):
logging.info("\"Open in Web browser\" button was clicked")
webbrowser.open(self.welcomeurl)
def on_ok_clicked(self, button):
logging.info("Closing welcome window")
self.close()