2015-11-03 11:13:27 +00:00
|
|
|
#!/usr/bin/python3
|
2015-11-03 23:59:00 +00:00
|
|
|
import os
|
|
|
|
from os.path import dirname, abspath
|
|
|
|
import subprocess
|
|
|
|
|
2015-11-03 11:13:27 +00:00
|
|
|
import gi
|
|
|
|
gi.require_version('WebKit2', '4.0')
|
|
|
|
from gi.repository import WebKit2, Gtk
|
|
|
|
|
2015-11-03 23:59:00 +00:00
|
|
|
|
|
|
|
base = dirname(dirname(dirname(abspath(__file__))))
|
|
|
|
icon = os.path.join(base, 'openmedialibrary/static/png/oml.png')
|
2015-11-03 11:13:27 +00:00
|
|
|
title = "Open Media Library"
|
|
|
|
|
2015-11-03 23:59:00 +00:00
|
|
|
def drop_cb(wid, context, x, y, time):
|
|
|
|
print([str(t) for t in context.targets])
|
|
|
|
context.finish(True, False, time)
|
|
|
|
return True
|
2015-11-03 11:13:27 +00:00
|
|
|
|
|
|
|
wnd = Gtk.Window()
|
|
|
|
wnd.set_icon_from_file(icon)
|
2015-11-03 23:59:00 +00:00
|
|
|
wnd.set_wmclass(title, title)
|
|
|
|
wnd.set_title(title)
|
|
|
|
wnd.set_default_size(1366, 768)
|
2015-11-03 11:13:27 +00:00
|
|
|
|
|
|
|
ctx = WebKit2.WebContext.get_default()
|
|
|
|
web = WebKit2.WebView.new_with_context(ctx)
|
|
|
|
wnd.connect("destroy", Gtk.main_quit)
|
|
|
|
wnd.add(web)
|
|
|
|
wnd.show_all()
|
|
|
|
|
|
|
|
url = 'file://' + base + '/openmedialibrary/static/html/load.html'
|
|
|
|
web.load_uri(url)
|
|
|
|
|
|
|
|
ctl = base + '/ctl'
|
|
|
|
p = subprocess.Popen([ctl, 'start'])
|
|
|
|
Gtk.main()
|
|
|
|
p = subprocess.Popen([ctl, 'stop'])
|