gui/gui-doc/scribblings/gui/gauge-class.scrbl
2014-12-02 02:33:07 -05:00

79 lines
2.4 KiB
Racket

#lang scribble/doc
@(require "common.rkt")
@centered{@image[#:suffixes @list[".png"]]{image/gauge}}
@defclass/title[gauge% object% (control<%>)]{
A gauge is a horizontal or vertical bar for displaying the output
value of a bounded integer quantity. Each gauge has an adjustable
range, and the gauge's current value is always between 0 and its
range, inclusive. Use @method[gauge% set-value] to set the value
of the gauge.
@defconstructor[([label (or/c label-string? #f)]
[range positive-dimension-integer?]
[parent (or/c (is-a?/c frame%) (is-a?/c dialog%)
(is-a?/c panel%) (is-a?/c pane%))]
[style (listof (or/c 'horizontal 'vertical
'vertical-label 'horizontal-label
'deleted))
'(horizontal)]
[font (is-a?/c font%) normal-control-font]
[enabled any/c #t]
[vert-margin spacing-integer? 2]
[horiz-margin spacing-integer? 2]
[min-width (or/c dimension-integer? #f) #f]
[min-height (or/c dimension-integer? #f) #f]
[stretchable-width any/c (memq 'horizontal style)]
[stretchable-height any/c (memq 'vertical style)])]{
If @racket[label] is a string, it is used as the gauge label; otherwise
the gauge does not display a label.
@labelsimplestripped[@racket[label] @elem{gauge}]
The @racket[range] argument is an integer specifying the maximum value of
the gauge (inclusive). The minimum gauge value is always @racket[0].
The @racket[style] list must include either @racket['horizontal],
specifying a horizontal gauge, or @racket['vertical], specifying a vertical
gauge. @HVLabelNote[@racket[style]]{gauge} @DeletedStyleNote[@racket[style]
@racket[parent]]{gauge}
@FontKWs[@racket[font]] @WindowKWs[@racket[enabled]] @SubareaKWs[] @AreaKWs[]
}
@defmethod[(get-range)
positive-dimension-integer?]{
Returns the range (maximum value) of the gauge.
}
@defmethod[(get-value)
dimension-integer?]{
Returns the gauge's current value.
}
@defmethod[(set-range [range positive-dimension-integer?])
void?]{
Sets the range (maximum value) of the gauge.
}
@defmethod[(set-value [pos dimension-integer?])
void?]{
Sets the gauge's current value. If the specified value is larger than
the gauge's range, @|MismatchExn|.
}}