]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msdos/apptrait.h
Don't define wxADJUST_MINSIZE if it had been already defined.
[wxWidgets.git] / include / wx / msdos / apptrait.h
index ca49b32b65c74d19f8656faafa69cd7f6f080191..b4520eaaeab80e8f44ef10699ad6b4c70023a6d1 100644 (file)
 class wxConsoleAppTraits : public wxConsoleAppTraitsBase
 {
 public:
+    virtual wxEventLoopBase *CreateEventLoop() { return NULL; }
+#if wxUSE_TIMER
+    virtual wxTimerImpl *CreateTimerImpl(wxTimer *) { return NULL; }
+#endif // wxUSE_TIMER
 };
 
 #if wxUSE_GUI
@@ -19,7 +23,12 @@ public:
 class wxGUIAppTraits : public wxGUIAppTraitsBase
 {
 public:
-    virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
+    virtual wxEventLoopBase *CreateEventLoop();
+    virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const;
+
+#if wxUSE_TIMER
+    virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
+#endif // wxUSE_TIMER
 };
 
 #endif // wxUSE_GUI