From: <kr_...@us...> - 2003-08-22 04:48:38
|
Update of /cvsroot/htoolkit/gio/src/Graphics/UI/GIO In directory sc8-pr-cvs1:/tmp/cvs-serv2646/src/Graphics/UI/GIO Modified Files: Controls.hs Log Message: comments Index: Controls.hs =================================================================== RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Controls.hs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Controls.hs 20 Aug 2003 21:37:26 -0000 1.19 --- Controls.hs 20 Aug 2003 22:22:30 -0000 1.20 *************** *** 13,26 **** --- 13,73 ---- module Graphics.UI.GIO.Controls( -- * Controls + -- ** Button + -- | A button control is a small, rectangular child window that can be + -- clicked on and off. Buttons can be labeled or appear without text. + -- A button typically changes appearance when the user clicks it. Button, button + + -- ** Label + -- | A label control simply displays a text string and it can be used + -- to label other controls. A label control can\'t take input and can\'t provide output. , Label, label + + -- ** Entry + -- | An entry control is a rectangular widget in which the user can enter text. , Entry, entry, readOnly, visible + + -- ** Popup + -- | A popup control consists of a list box combined with a label control. + -- The list box portion of the control drop down only when the user selects + -- the drop-down arrow next to the control. The currently selected item in the + -- list box is displayed in the label control. , Popup, popup + + -- ** ListBox + -- | A list box displays a list of items, that the user can view and select. + -- In a single-selection list box, the user can select only one item. + -- In a multiple-selection list box, a range of items can be selected. + -- When the user selects an item, it is highlighted and the list box + -- the 'command' event is generated. , ListBox, listBox + + -- ** Slider + -- | A slider control is a widget containing a slider and tick marks. + -- When the user moves the slider, using either the mouse or the direction keys, + -- the control generates the 'command' event to indicate the change. + -- Slider controls are useful when you want the user to select a discrete value + -- in a given range. The slider can be vertical or horizontal. , Slider, hslider, vslider + + -- ** ProgressBar + -- | A progress bar control is a window that an application can use to + -- indicate the progress of a lengthy operation. It consists of a rectangle + -- that is gradually filled, from left to right, with the system specified color + -- as an operation progresses. A progress bar control has a range and a current + -- position. The range represents the entire duration of the operation, and the + -- current position represents the progress the application has made toward + -- completing the operation. , ProgressBar, hProgressBar, vProgressBar + + -- ** CheckGroup , CheckGroup, checkGroup, checkLayout + + -- ** RadioGroup , RadioGroup, radioGroup, radioLayout + + -- ** CompoundControl , CompoundControl, compoundControl + -- * Primitive , Check, check |