]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/clipbrd.h
BC++ 5.5 and later supports wxUSE_ON_FATAL_EXCEPTION
[wxWidgets.git] / include / wx / motif / clipbrd.h
index 848bfe65655800377b0aee28b9964a3670d979d2..f4e98c9899ff873df6e9359e9c82cb2b37d0724b 100644 (file)
 #ifndef _WX_CLIPBRD_H_
 #define _WX_CLIPBRD_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "clipbrd.h"
 #endif
 
 #if wxUSE_CLIPBOARD
 
+class wxDataObject;
+struct wxDataIdToDataObject;
+
 #include "wx/list.h"
 
+WX_DECLARE_LIST(wxDataObject, wxDataObjectList);
+WX_DECLARE_LIST(wxDataIdToDataObject, wxDataIdToDataObjectList);
+
 bool WXDLLEXPORT wxOpenClipboard();
 bool WXDLLEXPORT wxClipboardOpen();
 bool WXDLLEXPORT wxCloseClipboard();
@@ -65,15 +71,15 @@ public:
     // clears wxTheClipboard and the system's clipboard if possible
     virtual void Clear();
     
-    virtual void UsePrimarySelection(bool primary = TRUE)
+    virtual void UsePrimarySelection(bool primary = true)
     { m_usePrimary = primary; }
     
     // implementation from now on
-    
     bool              m_open;
-    wxList            m_data;
+    wxDataObjectList  m_data;
     bool              m_usePrimary;
-    
+    wxDataIdToDataObjectList m_idToObject;
+
 private:
     DECLARE_DYNAMIC_CLASS(wxClipboard)
 };