added and documented wxTIMER_XXX constants to be used instead of bool parameter to wxTimer::Start()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-06-04 14:59:52 +00:00
parent bebe1443c9
commit b0a2d8a882
2 changed files with 26 additions and 11 deletions

View File

@@ -28,6 +28,14 @@
// wxTimer
// ----------------------------------------------------------------------------
// more readable flags for Start():
// generate notifications periodically until the timer is stopped (default)
#define wxTIMER_CONTINUOUS FALSE
// only send the notification once and then stop the timer
#define wxTIMER_ONE_SHOT TRUE
// the interface of wxTimer class
class WXDLLEXPORT wxTimerBase : public wxObject
{