From: <kr_...@us...> - 2003-08-22 22:16:10
|
Update of /cvsroot/htoolkit/gio/src/Graphics/UI/GIO In directory sc8-pr-cvs1:/tmp/cvs-serv26788/src/Graphics/UI/GIO Modified Files: Menu.hs Timer.hs Log Message: comments Index: Menu.hs =================================================================== RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Menu.hs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Menu.hs 17 Aug 2003 18:15:09 -0000 1.12 --- Menu.hs 22 Aug 2003 22:16:07 -0000 1.13 *************** *** 8,12 **** Portability : portable ! Menus -} ----------------------------------------------------------------------------------------- --- 8,16 ---- Portability : portable ! The module contains all utilitites required for creation and management of menus. ! A menu is a list of items that specify options or groups of options (a submenu). ! Clicking a menu item opens a submenu or causes the application to carry out a command. ! A menu is arranged in a hierarchy. At the top level of the hierarchy is the menu bar; ! which contains a list of menus, which in turn can contain submenus. -} ----------------------------------------------------------------------------------------- *************** *** 25,29 **** -- ** Menu separator , MenuLine, menulineAt, menuline ! -- * internal , hmenu ) where --- 29,34 ---- -- ** Menu separator , MenuLine, menulineAt, menuline ! ! -- internal , hmenu ) where Index: Timer.hs =================================================================== RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Timer.hs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Timer.hs 17 Jul 2003 19:30:05 -0000 1.9 --- Timer.hs 22 Aug 2003 22:16:07 -0000 1.10 *************** *** 8,12 **** Portability : portable ! Milli-second interval timers. -} ----------------------------------------------------------------------------------------- --- 8,15 ---- Portability : portable ! A timer is a nonvisual component that repeatedly measures a specified interval, ! in milliseconds. Each time the specified 'interval' elapses, the system ! generates the 'command' event. Because a timer's accuracy depends on the system ! clock rate and other system specific factors, the time-out value is only approximate. -} ----------------------------------------------------------------------------------------- *************** *** 30,34 **** getTimerHandle (Timer thandle) = thandle ! -- | Create a new timer with a 1 second interval. timer :: [Prop Timer] -> IO Timer timer props --- 33,37 ---- getTimerHandle (Timer thandle) = thandle ! -- | Create a new timer. timer :: [Prop Timer] -> IO Timer timer props |