]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dataobj.h
1. wxProcess changes to make capturing subprocess output easier (and more
[wxWidgets.git] / include / wx / dataobj.h
index f12dbe67d6be8daca5147c3ab5fd8f5c56045f22..544d90ef130517d4c49338923ee472c91265a12d 100644 (file)
@@ -87,7 +87,7 @@ public:
 
 // the value for default argument to some functions (corresponds to
 // wxDF_INVALID)
-extern const wxDataFormat& wxFormatInvalid;
+extern WXDLLEXPORT const wxDataFormat& wxFormatInvalid;
 
 // ----------------------------------------------------------------------------
 // wxDataObject represents a piece of data which knows which formats it
@@ -146,6 +146,9 @@ public:
     {
         return FALSE;
     }
+
+    // returns TRUE if this format is supported
+    bool IsSupported(const wxDataFormat& format, Direction dir = Get) const;
 };
 
 // ----------------------------------------------------------------------------
@@ -446,6 +449,8 @@ private:
     // #include "wx/motif/dataobj2.h" -- not yet
 #elif defined(__WXGTK__)
     #include "wx/gtk/dataobj2.h"
+#elif defined(__WXMAC__)
+    #include "wx/mac/dataobj2.h"
 #elif defined(__WXPM__)
     #include "wx/os2/dataobj2.h"
 #endif