
Also, updates some of the mzlib files to point at `racket/*' libraries rather than to `scheme/*' ones.
30 lines
598 B
Racket
30 lines
598 B
Racket
#lang scribble/doc
|
|
@(require "common.rkt")
|
|
|
|
@definterface/title[control<%> (subwindow<%>)]{
|
|
|
|
The @racket[control<%>] interface is implemented by the built-in
|
|
control window classes:
|
|
@itemize[
|
|
@item{@racket[message%]}
|
|
@item{@racket[button%]}
|
|
@item{@racket[check-box%]}
|
|
@item{@racket[slider%]}
|
|
@item{@racket[gauge%]}
|
|
@item{@racket[text-field%]}
|
|
@item{@racket[radio-box%]}
|
|
@item{@racket[choice%]}
|
|
@item{@racket[list-box%]}
|
|
]
|
|
|
|
|
|
|
|
@defmethod[(command [event (is-a?/c control-event%)])
|
|
void?]{
|
|
|
|
Calls the control's callback function, passing on the given
|
|
@racket[control-event%] object.
|
|
|
|
}}
|
|
|