racket/collects/scribblings/gui/checkable-menu-item-class.scrbl
Matthew Flatt 2bdcdbb197 racket/draw, racket/gui: modernize contracts, mostly in documentation
Use `or/c' instead of `one-of/c', `#f' instead of `false/c'.
2012-04-06 18:51:10 -06:00

70 lines
2.6 KiB
Racket

#lang scribble/doc
@(require "common.rkt")
@defclass/title[checkable-menu-item% object% (selectable-menu-item<%>)]{
A @racket[checkable-menu-item%] is a string-labelled menu item that
maintains a check mark. Its parent must be a @racket[menu%] or
@racket[popup-menu%]. When the user selects the menu item, the
item's check mark is toggled and its callback procedure is called.
@defconstructor[([label label-string?]
[parent (or/c (is-a?/c menu%) (is-a?/c popup-menu%))]
[callback ((is-a?/c checkable-menu-item%) (is-a?/c control-event%)
. -> . any)
(lambda (i e) (void))]
[shortcut (or/c char? symbol? #f) #f]
[help-string (or/c label-string? #f) #f]
[demand-callback ((is-a?/c menu-item%) . -> . any)
(lambda (i) (void))]
[checked any/c #f]
[shortcut-prefix (listof (or/c 'alt 'cmd 'meta 'ctl
'shift 'option))
(get-default-shortcut-prefix)])]{
Creates a new menu item in @racket[parent]. The item is initially
shown, appended to the end of its parent, and unchecked. The
@racket[callback] procedure is called (with the event type
@indexed-racket['menu]) when the menu item is selected (either via a
menu bar, @xmethod[window<%> popup-menu], or @xmethod[editor-admin%
popup-menu]).
See @method[labelled-menu-item<%> set-label] for information about
mnemonic @litchar{&}s in @racket[label].
If @racket[shortcut] is not @racket[#f], the item has a shortcut. See
@method[selectable-menu-item<%> get-shortcut] for more information.
The @racket[shortcut-prefix] argument determines the set of modifier
keys for the shortcut; see @method[selectable-menu-item<%>
get-shortcut-prefix].
If @racket[help] is not @racket[#f], the item has a help string. See
@method[labelled-menu-item<%> get-help-string] for more information.
The @racket[demand-callback] procedure is called by the default
@method[labelled-menu-item<%> on-demand] method with the object itself.
By default, the menu item is initially unchecked. If @racket[checked]
is true, then @method[checkable-menu-item% check] is called so that
the menu item is initially checked.
}
@defmethod[(check [check? any/c])
void?]{
Checks or unchecks the menu item.
@MonitorCallbackX[@elem{A menu item's check state} @elem{the user selecting the item} @elem{check state} @elem{menu item}]
}
@defmethod[(is-checked?)
boolean?]{
Returns @racket[#t] if the item is checked, @racket[#f] otherwise.
}}