21 lines
311 B
Racket
21 lines
311 B
Racket
#lang racket/base
|
|
|
|
(require "racket-webview.rkt"
|
|
racket/class
|
|
)
|
|
|
|
(provide wv-window%
|
|
)
|
|
|
|
|
|
(define wv-window%
|
|
(class object%
|
|
|
|
(init-field profile
|
|
[settings #f]
|
|
[parent #f]
|
|
[title "Racket Webview Window"]
|
|
)
|
|
|
|
|
|
|