X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6c8a980fc412792e64256724e02e9d387ee38e21..edb8f2985fc838f92c60d9efd42462441f3caea9:/include/wx/choice.h diff --git a/include/wx/choice.h b/include/wx/choice.h index b0d2a70770..6664996a0b 100644 --- a/include/wx/choice.h +++ b/include/wx/choice.h @@ -20,6 +20,8 @@ #pragma interface "choicebase.h" #endif +#if wxUSE_CHOICE + #include "wx/ctrlsub.h" // the base class // ---------------------------------------------------------------------------- @@ -36,6 +38,7 @@ class WXDLLEXPORT wxChoiceBase : public wxControlWithItems { public: // all generic methods are in wxControlWithItems + virtual ~wxChoiceBase(); // single selection logic virtual void SetSelection(int n) = 0; @@ -51,21 +54,20 @@ public: // emulate selecting the item event.GetInt() void Command(wxCommandEvent& event); - }; // ---------------------------------------------------------------------------- // include the platform-dependent class definition // ---------------------------------------------------------------------------- -#if defined(__WXMSW__) +#if defined(__WXUNIVERSAL__) + #include "wx/univ/choice.h" +#elif defined(__WXMSW__) #include "wx/msw/choice.h" #elif defined(__WXMOTIF__) #include "wx/motif/choice.h" #elif defined(__WXGTK__) #include "wx/gtk/choice.h" -#elif defined(__WXQT__) - #include "wx/qt/choice.h" #elif defined(__WXMAC__) #include "wx/mac/choice.h" #elif defined(__WXPM__) @@ -74,5 +76,7 @@ public: #include "wx/stubs/choice.h" #endif +#endif // wxUSE_CHOICE + #endif // _WX_CHOICE_H_BASE_