Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/minimal_webkit.py
blob: b168afea89d6c3a3e5afde945391e80abc9ee2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from gi.repository import WebKit
from gi.repository import Gtk

def _destroy_cb(widget):
    Gtk.main_quit()

window = Gtk.Window()
window.set_default_size(800, 640)
window.connect("destroy", _destroy_cb)
b = WebKit.WebView()
b.load_uri('http://google.com')
window.add(b)
window.show_all()
Gtk.main()