Difference between revisions of "WxHaskell/Idle event"

From HaskellWiki
Jump to navigation Jump to search
m (WxHaskell Idle Event moved to WxHaskell/Idle event)
(Added category wxHaskell)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
Still under construction
 
 
== Idle Event ==
 
 
There are two main points when using idle event for [[wxHaskell]]
 
There are two main points when using idle event for [[wxHaskell]]
 
* First - Set the idle event (The action you want the program do)
 
* First - Set the idle event (The action you want the program do)
Line 9: Line 6:
   
 
where <obj> is a frame, panel, or other objects
 
where <obj> is a frame, panel, or other objects
  +
  +
{{Template:Stub}}
  +
  +
  +
[[Category:wxHaskell]]

Latest revision as of 20:55, 15 January 2012

There are two main points when using idle event for wxHaskell

  • First - Set the idle event (The action you want the program do)
  • Second - Unset the idle event, i.e. Set the idle event to
set <obj> [ on idle := return False ]

where <obj> is a frame, panel, or other objects

This article is a stub. You can help by expanding it.