]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/widgets/widgets.h
Reset defaults:
[wxWidgets.git] / samples / widgets / widgets.h
index d20c536108cfd03d5dde4b64b67e5f6c9616be40..30160829e8183a4aef6ce844c9b0d1991972a1f4 100644 (file)
@@ -24,6 +24,12 @@ class WidgetsPageInfo;
 // all source files use wxImageList
 #include "wx/imaglist.h"
 
+#if wxUSE_LOG && !defined(__SMARTPHONE__)
+    #define USE_LOG 1
+#else
+    #define USE_LOG 0
+#endif
+
 // ----------------------------------------------------------------------------
 // WidgetsPage: a book page demonstrating some widget
 // ----------------------------------------------------------------------------
@@ -36,6 +42,9 @@ public:
     // return the control shown by this page
     virtual wxControl *GetWidget() const = 0;
 
+    // some pages show 2 controls, in this case override this one as well
+    virtual wxControl *GetWidget2() const { return NULL; }
+
 protected:
     // several helper functions for page creation