+#if !defined(__WXUNIVERSAL__) && defined(__WXMAC__)
+ // search control was introduced in Mac OS X 10.3 Panther
+ #define wxUSE_NATIVE_SEARCH_CONTROL 1
+
+ #define wxSearchCtrlBaseBaseClass wxTextCtrl
+#else
+ // no native version, use the generic one
+ #define wxUSE_NATIVE_SEARCH_CONTROL 0
+
+ #include "wx/compositewin.h"
+ #include "wx/containr.h"
+
+ class WXDLLIMPEXP_CORE wxSearchCtrlBaseBaseClass
+ : public wxCompositeWindow< wxNavigationEnabled<wxControl> >,
+ public wxTextCtrlIface
+ {
+ };
+#endif
+