]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/clipbrd.h
Add some missing wxGraphicsContext methods
[wxWidgets.git] / interface / wx / clipbrd.h
index fdcb6292ffe953b5f83d11ccf2fe36f13d8fe0ae..4064abfc7d084057262ec851cc7ae34fcac51820 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxClipboard
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -102,6 +102,9 @@ public:
         (possibly eating memory), otherwise the clipboard will be emptied on
         exit.
 
+        Currently this method is not implemented in X11-based ports, i.e.
+        wxGTK, wxX11 and wxMotif and always returns @false there.
+
         @return @false if the operation is unsuccessful for any reason.
     */
     virtual bool Flush();
@@ -174,5 +177,11 @@ public:
         platforms.
     */
     virtual void UsePrimarySelection(bool primary = false);
+
+    /**
+       Returns the global instance (wxTheClipboard) of the clipboard object.
+    */
+    static wxClipboard *Get();
+
 };