]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dragimag.h
Disable wxEvtHandler::CallAfter() for VC6, it's too broken for it.
[wxWidgets.git] / interface / wx / dragimag.h
index 9e7d90433a49d82fcb7c0f7fb1e6e1cafc96cc69..f0dc5f206223bf8249c4fb3c4729b23dd02c1edf 100644 (file)
     platforms, wxGenericDragImage is used. Applications may also prefer to use
     wxGenericDragImage on Windows, too.
 
     platforms, wxGenericDragImage is used. Applications may also prefer to use
     wxGenericDragImage on Windows, too.
 
-    @beginWxPythonOnly
-    wxPython uses wxGenericDragImage on all platforms, but uses the wxDragImage
-    name.
-    @endWxPythonOnly
-
     To use this class, when you wish to start dragging an image, create a
     wxDragImage object and store it somewhere you can access it as the drag
     progresses. Call BeginDrag() to start, and EndDrag() to stop the drag. To
     To use this class, when you wish to start dragging an image, create a
     wxDragImage object and store it somewhere you can access it as the drag
     progresses. Call BeginDrag() to start, and EndDrag() to stop the drag. To
@@ -65,10 +60,6 @@ public:
             Icon to be used as the drag image.
         @param cursor
             Optional cursor to combine with the image.
             Icon to be used as the drag image.
         @param cursor
             Optional cursor to combine with the image.
-
-        @beginWxPythonOnly
-        This constructor is called wxDragIcon in wxPython.
-        @endWxPythonOnly
     */
     wxDragImage(const wxIcon& image, const wxCursor& cursor = wxNullCursor);
     /**
     */
     wxDragImage(const wxIcon& image, const wxCursor& cursor = wxNullCursor);
     /**
@@ -78,10 +69,6 @@ public:
             Text used to construct a drag image.
         @param cursor
             Optional cursor to combine with the image.
             Text used to construct a drag image.
         @param cursor
             Optional cursor to combine with the image.
-
-        @beginWxPythonOnly
-        This constructor is called wxDragString in wxPython.
-        @endWxPythonOnly
     */
     wxDragImage(const wxString& text, const wxCursor& cursor = wxNullCursor);
     /**
     */
     wxDragImage(const wxString& text, const wxCursor& cursor = wxNullCursor);
     /**
@@ -92,10 +79,6 @@ public:
             Tree control for constructing a tree drag image.
         @param id
             Tree control item id.
             Tree control for constructing a tree drag image.
         @param id
             Tree control item id.
-
-        @beginWxPythonOnly
-        This constructor is called wxDragTreeItem in wxPython.
-        @endWxPythonOnly
     */
     wxDragImage(const wxTreeCtrl& treeCtrl, wxTreeItemId& id);
     /**
     */
     wxDragImage(const wxTreeCtrl& treeCtrl, wxTreeItemId& id);
     /**
@@ -106,10 +89,6 @@ public:
             List control for constructing a list drag image.
         @param id
             List control item id.
             List control for constructing a list drag image.
         @param id
             List control item id.
-
-        @beginWxPythonOnly
-        This constructor is called wxDragListItem in wxPython.
-        @endWxPythonOnly
     */
     wxDragImage(const wxListCtrl& listCtrl, long id);
     /**
     */
     wxDragImage(const wxListCtrl& listCtrl, long id);
     /**