¤ hyperGraphicsF, hyperGraphicsF'

Displaying and interacting with composite graphical objects

Types

hyperGraphicsF :: (Eq d, Graphic leaf) =>
                  Drawing d leaf -> F ((Drawing d leaf)  (d, Drawing d leaf)) d
hyperGraphicsF' :: (Eq d, Graphic leaf) =>
                   (GraphicsF (Drawing d leaf) -> GraphicsF (Drawing d leaf)) ->
                   Drawing d leaf -> F ((Drawing d leaf)  (d, Drawing d leaf)) d

Synopsis

hyperGraphicsF drawing

Description

hyperGraphicsF allows you to display a composite graphical object (a value of type Drawing) and receive information about which part of the object the user clicks on.

Input

Left drawing replaces the current drawing. Right (lbl,drawing) replaces the part labelled lbl, including the label.

Output

lbl when the user clicks on the part labelled lbl.

Arguments

drawing :: Drawing d leaf
The drawing to display initially.

Equalities

Example

 hyperGraphicsF (vboxD [labelD True (atomicD "Yes"), labelD False (atomicD "No")])

This fudget uses a drawing of type Drawing Bool String and will output True or False when the user clicks on the word Yes or No, respectively.

See Also

The type for composite graphical objects: Drawing.

Other fudgets that display graphics: graphicsF, displayF, labelF.

Other fudgets for selecting among alternatives: pickListF, radioGroupF, menuF.

Fudgets that display text: moreF et al.

Bugs

This page documents work progress. Information on this page is subject to change without notice and does not represent a commitment on the part of the Fudgets corporation.