]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/timer.h
Rename wxGenericImageList to wxImageList in generic wxListCtrl, too.
[wxWidgets.git] / include / wx / timer.h
index 7fff1bbdc33471e532f4af33e05b051135f16120..115c9c33f716db2483421a1956ff258e0492dc19 100644 (file)
 // 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
 {