This commit is contained in:
2026-02-17 14:18:28 +01:00
parent 0d7dbf7d87
commit e6eb10f89a
5 changed files with 134 additions and 0 deletions

31
gui.rkt Normal file
View File

@@ -0,0 +1,31 @@
#lang racket
(require web-racket
racket/runtime-path
)
(provide
(all-from-out web-racket)
rktplayer%
)
(define-runtime-path rktplayer-start "rktplayer.html")
(define rktplayer%
(class ww-webview%
(inherit-field settings)
(super-new
[html-file rktplayer-start]
)
(define/override (html-loaded)
(super html-loaded)
)
(begin
(displayln "RktPlayer started")
)
)
)