X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8575ff507f8e66e87f8d32fb8710283082bf4e76..872051d89bd098d1e6052fabc07174e67296a35f:/include/wx/motif/setup0.h diff --git a/include/wx/motif/setup0.h b/include/wx/motif/setup0.h index 5637c68c82..eceb880441 100644 --- a/include/wx/motif/setup0.h +++ b/include/wx/motif/setup0.h @@ -851,6 +851,17 @@ // Recommended setting: 1 (can't be disabled under MSW) #define wxUSE_MENUS 1 +// Use wxNotificationMessage. +// +// wxNotificationMessage allows to show non-intrusive messages to the user +// using balloons, banners, popups or whatever is the appropriate method for +// the current platform. +// +// Default is 1. +// +// Recommended setting: 1 +#define wxUSE_NOTIFICATION_MESSAGE 1 + // Use wxSashWindow class. // // Default is 1. @@ -875,6 +886,20 @@ // wxValidator class and related methods #define wxUSE_VALIDATORS 1 +// Use reference counted ID management: this means that wxWidgets will track +// the automatically allocated ids (those used when you use wxID_ANY when +// creating a window, menu or toolbar item &c) instead of just supposing that +// the program never runs out of them. This is mostly useful only under wxMSW +// where the total ids range is limited to SHRT_MIN..SHRT_MAX and where +// long-running programs can run into problems with ids reuse without this. On +// the other platforms, where the ids have the full int range, this shouldn't +// be necessary. +#ifdef __WXMSW__ +#define wxUSE_AUTOID_MANAGEMENT 1 +#else +#define wxUSE_AUTOID_MANAGEMENT 0 +#endif + // ---------------------------------------------------------------------------- // common dialogs // ----------------------------------------------------------------------------