]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/clipbrd.h
Made EVT_SLIDER event happen always; some doc and wxProperty updates
[wxWidgets.git] / include / wx / msw / clipbrd.h
index eec3bbdd7c52a990dabed545f7bc6811f83b6ea0..9849af42ebc7c6f9cf40cf5aa3eea71339e73203 100644 (file)
@@ -22,6 +22,7 @@
 #if wxUSE_CLIPBOARD
 
 #include "wx/list.h"
+#include "wx/module.h"
 
 // These functions superceded by wxClipboard, but retained in order to implement
 // wxClipboard, and for compatibility.
@@ -72,10 +73,25 @@ public:
  // implementation 
  
   bool              m_open;
+  wxList            m_data;
 };
 
 /* The clipboard */
-// WXDLLEXPORT_DATA(extern wxClipboard*) wxTheClipboard;
+WXDLLEXPORT_DATA(extern wxClipboard*) wxTheClipboard;
+
+//-----------------------------------------------------------------------------
+// wxClipboardModule
+//-----------------------------------------------------------------------------
+
+class wxClipboardModule: public wxModule
+{
+  DECLARE_DYNAMIC_CLASS(wxClipboardModule)
+  
+public:
+    wxClipboardModule() {}
+    bool OnInit();
+    void OnExit();
+};
 
 #endif // wxUSE_CLIPBOARD
 #endif