Skip to content

Instantly share code, notes, and snippets.

@telent
Created February 5, 2022 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save telent/dceea252965a6bee46fba2bab9040f39 to your computer and use it in GitHub Desktop.
Save telent/dceea252965a6bee46fba2bab9040f39 to your computer and use it in GitHub Desktop.
A minimal web browser
(local lgi (require :lgi))
(local inspect (require :inspect))
(local Gtk lgi.Gtk)
(local WebKit2 lgi.WebKit2)
(let [current-url "https://terse.telent.net"
window (Gtk.Window {
:title "Just browsing"
:default_width 800
:default_height 600
:on_destroy Gtk.main_quit
})
container (Gtk.Box {
:orientation Gtk.Orientation.VERTICAL
})
nav-bar (Gtk.Box {
:orientation Gtk.Orientation.HORIZONTAL
})
url (doto (Gtk.Entry)
(: :set_text current-url))
webview (WebKit2.WebView {
:on_notify
(fn [self pspec c]
(if (= pspec.name "uri")
(url:set_text self.uri)
(and (= pspec.name "title")
(> (# self.title) 0))
(window:set_title
(.. self.title " - Just browsing"))
))
})
back (doto
(Gtk.Button {
:on_clicked (fn [s]
(if (webview:can_go_back)
(webview:go_back)))
})
(: :set_image
(Gtk.Image.new_from_icon_name "go-previous" Gtk.IconSize.LARGE_TOOLBAR)))]
(tset url :on_activate (fn [self]
(webview:load_uri self.text)))
(nav-bar:pack_start back false false 2)
(nav-bar:pack_start url true true 2)
(container:pack_start nav-bar false false 5)
(container:pack_start webview true true 5)
(webview:load_uri current-url)
(window:add container)
(window:show_all))
(Gtk.main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment