X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/677eff077ec0e0fbdda61f4e5e7c186e21c4fc47..e13f1288772a23069470562fb5e0ce228640e77c:/include/wx/timer.h diff --git a/include/wx/timer.h b/include/wx/timer.h index 7fff1bbdc3..2c030fbd07 100644 --- a/include/wx/timer.h +++ b/include/wx/timer.h @@ -13,7 +13,7 @@ #ifndef _WX_TIMER_H_BASE_ #define _WX_TIMER_H_BASE_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "timerbase.h" #endif @@ -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 {