X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/07b6378fcb2fade6cb360254beeccf2bc81f4a36..e82b00a76d14e0c8717cce0ed7523047e6359352:/include/wx/access.h diff --git a/include/wx/access.h b/include/wx/access.h index 4e674f0e7f..2e7c772250 100644 --- a/include/wx/access.h +++ b/include/wx/access.h @@ -18,6 +18,8 @@ #include "wx/defs.h" +#if wxUSE_ACCESSIBILITY + #include "wx/variant.h" typedef enum @@ -222,10 +224,10 @@ typedef enum // All functions return an indication of success, failure, or not implemented. // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxAccessible; -class WXDLLEXPORT wxWindow; -class WXDLLEXPORT wxPoint; -class WXDLLEXPORT wxRect; +class WXDLLIMPEXP_FWD_CORE wxAccessible; +class WXDLLIMPEXP_FWD_CORE wxWindow; +class WXDLLIMPEXP_FWD_CORE wxPoint; +class WXDLLIMPEXP_FWD_CORE wxRect; class WXDLLEXPORT wxAccessibleBase : public wxObject { DECLARE_NO_COPY_CLASS(wxAccessibleBase) @@ -324,6 +326,7 @@ public: virtual wxAccStatus GetFocus(int* WXUNUSED(childId), wxAccessible** WXUNUSED(child)) { return wxACC_NOT_IMPLEMENTED; } +#if wxUSE_VARIANT // Gets a variant representing the selected children // of this object. // Acceptable values: @@ -334,6 +337,7 @@ public: // - a "void*" pointer to a wxAccessible child object virtual wxAccStatus GetSelections(wxVariant* WXUNUSED(selections)) { return wxACC_NOT_IMPLEMENTED; } +#endif // wxUSE_VARIANT // Accessors @@ -367,5 +371,7 @@ private: #include "wx/msw/ole/access.h" #endif -#endif - // _WX_ACCESSBASE_H_ +#endif // wxUSE_ACCESSIBILITY + +#endif // _WX_ACCESSBASE_H_ +