]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/ole/access.h
No real changes, just change type of MSWGetBgBrush() argument.
[wxWidgets.git] / include / wx / msw / ole / access.h
index 5e588b2e38ec17aaefc0c943c21df27decadb250..1684ef72b296bf241e011243b7543a38815199ec 100644 (file)
 #ifndef   _WX_ACCESS_H_
 #define   _WX_ACCESS_H_
 
-#ifdef __GNUG__
-    #pragma interface
-#endif
-
-#if !wxUSE_ACCESSIBILITY
-  #error  "You should #define wxUSE_ACCESSIBILITY to 1 to compile this file!"
-#endif  //wxUSE_ACCESSIBILITY
+#if wxUSE_ACCESSIBILITY
 
 // ----------------------------------------------------------------------------
 // forward declarations
 // ----------------------------------------------------------------------------
 
 class wxIAccessible;
-class WXDLLEXPORT wxWindow;
+class WXDLLIMPEXP_FWD_CORE wxWindow;
 
 // ----------------------------------------------------------------------------
 // macros
@@ -35,7 +29,7 @@ class WXDLLEXPORT wxWindow;
 // wxAccessible implements accessibility behaviour.
 // ----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxAccessible : public wxAccessibleBase
+class WXDLLIMPEXP_CORE wxAccessible : public wxAccessibleBase
 {
 public:
     wxAccessible(wxWindow *win = NULL);
@@ -51,6 +45,12 @@ public:
     // Returns the IAccessible standard interface pointer
     void* GetIAccessibleStd() ;
 
+// Operations
+
+    // Sends an event when something changes in an accessible object.
+    static void NotifyEvent(int eventType, wxWindow* window, wxAccObject objectType,
+                            int objectId);
+
 protected:
     void Init();
 
@@ -59,8 +59,10 @@ private:
     void*           m_pIAccessibleStd;  // the pointer to the standard COM interface,
                                         // for default processing
 
-    DECLARE_NO_COPY_CLASS(wxAccessible)
+    wxDECLARE_NO_COPY_CLASS(wxAccessible);
 };
 
+#endif  //wxUSE_ACCESSIBILITY
+
 #endif  //_WX_ACCESS_H_