]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/clipbrd.h
Added nominal wxPG_PROP_READONLY support for editor controls other than wxTextCtrl...
[wxWidgets.git] / include / wx / mgl / clipbrd.h
index 824816aba1edb3fde80a50d04b5e962b8c51c56a..4a7e56896e48e9c1cfa47a357b0702344bc63a8d 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        clipboard.h
+// Name:        wx/mgl/clipboard.h
 // Purpose:
 // Author:      Vaclav Slavik
 // Id:          $Id$
 // wxClipboard
 // ----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxClipboard : public wxClipboardBase
+class WXDLLIMPEXP_CORE wxClipboard : public wxClipboardBase
 {
 public:
     wxClipboard() {}
-    ~wxClipboard() {}
+    virtual ~wxClipboard() {}
 
     // open the clipboard before SetData() and GetData()
     virtual bool Open() {}
@@ -52,11 +52,6 @@ public:
     // clears wxTheClipboard and the system's clipboard if possible
     virtual void Clear() {}
 
-    // If primary == TRUE, use primary selection in all further ops,
-    // primary == FALSE resets it.
-    virtual void UsePrimarySelection(bool primary = TRUE)
-        { m_usePrimary = primary; }
-    
     // implementation from now on
     bool              m_open;
     bool              m_ownsClipboard;
@@ -69,7 +64,6 @@ public:
 
     bool              m_formatSupported;
     GdkAtom           m_targetRequested;
-    bool              m_usePrimary;
     wxDataObject     *m_receivedData;
 
 private: