2022-12-19 18:19:13 +00:00
|
|
|
(local { : Gtk : Gdk : WebKit2 : cairo } (require :lgi))
|
2022-12-20 10:34:37 +00:00
|
|
|
(local { : view } (require :fennel))
|
2022-12-20 12:28:32 +00:00
|
|
|
(local Command (require :command))
|
2022-12-22 22:42:45 +00:00
|
|
|
(local keymap (require :keymap))
|
2022-12-19 20:57:23 +00:00
|
|
|
|
2022-12-20 10:34:37 +00:00
|
|
|
(var frames [])
|
|
|
|
|
2022-12-23 15:21:06 +00:00
|
|
|
(fn new-frame [global-keymap]
|
2022-12-19 18:19:13 +00:00
|
|
|
(let [hpad 2
|
|
|
|
vpad 2
|
2022-12-23 15:21:06 +00:00
|
|
|
recogniser (keymap.recogniser global-keymap)
|
2022-12-19 18:19:13 +00:00
|
|
|
window (Gtk.Window {
|
|
|
|
:title "Dunlin"
|
|
|
|
:default_width 800
|
|
|
|
:default_height 720
|
|
|
|
:on_destroy Gtk.main_quit
|
|
|
|
})
|
|
|
|
container (Gtk.Box {
|
|
|
|
:orientation Gtk.Orientation.VERTICAL
|
|
|
|
})
|
|
|
|
progress-bar (Gtk.ProgressBar {
|
|
|
|
:orientation Gtk.Orientation.HORIZONTAL
|
|
|
|
:fraction 1.0
|
|
|
|
:margin 0
|
|
|
|
})
|
2022-12-20 10:34:37 +00:00
|
|
|
contentwidget (Gtk.Box {
|
|
|
|
:orientation Gtk.Orientation.VERTICAL
|
|
|
|
})
|
2022-12-19 18:19:13 +00:00
|
|
|
]
|
2022-12-21 18:04:20 +00:00
|
|
|
(tset Command.widget :on_activate
|
2022-12-21 13:36:25 +00:00
|
|
|
(fn [event]
|
|
|
|
(let [result (Command.on-input event.text)]
|
2022-12-21 18:04:20 +00:00
|
|
|
(set Command.widget.placeholder_text
|
2022-12-21 15:24:53 +00:00
|
|
|
(or result.prompt ""))
|
2022-12-21 18:04:20 +00:00
|
|
|
(set Command.widget.sensitive result.active)
|
|
|
|
(set Command.widget.text
|
2022-12-21 15:24:53 +00:00
|
|
|
(or result.default result.error "")))))
|
|
|
|
|
|
|
|
(tset window :on_key_release_event
|
|
|
|
(fn [window event]
|
2022-12-22 22:42:45 +00:00
|
|
|
(when (not (Command.active?))
|
2022-12-23 14:43:29 +00:00
|
|
|
(match (recogniser:accept-event event)
|
2022-12-22 22:42:45 +00:00
|
|
|
c (c)
|
|
|
|
(nil prompt) (print "prompted" prompt)))
|
2022-12-21 15:24:53 +00:00
|
|
|
(when (and event.state.MOD1_MASK
|
|
|
|
(= event.keyval (string.byte "x")))
|
|
|
|
(Command.activate))))
|
2022-12-21 13:36:25 +00:00
|
|
|
|
2022-12-19 18:19:13 +00:00
|
|
|
(doto container
|
2022-12-21 18:04:20 +00:00
|
|
|
(: :pack_start Command.widget false false vpad)
|
2022-12-19 18:19:13 +00:00
|
|
|
(: :pack_start progress-bar false false vpad)
|
|
|
|
(: :pack_start contentwidget true true vpad))
|
|
|
|
(window:add container)
|
|
|
|
(window:show_all)
|
2022-12-20 10:34:37 +00:00
|
|
|
(let [f
|
|
|
|
{
|
|
|
|
:window window
|
|
|
|
:buffer nil
|
|
|
|
:content contentwidget
|
|
|
|
:show-buffer (fn [self b]
|
|
|
|
(each [_ w (pairs (contentwidget:get_children))]
|
|
|
|
(w:hide))
|
|
|
|
(contentwidget:pack_start b.webview true true 0)
|
|
|
|
(b.webview:show))
|
|
|
|
}]
|
|
|
|
(table.insert frames f)
|
|
|
|
f)))
|
|
|
|
|
2022-12-19 18:19:13 +00:00
|
|
|
|
2022-12-20 10:34:37 +00:00
|
|
|
{ :new new-frame :frames frames }
|