• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/

Lines Matching defs:cursor

3 // Purpose:     wxDragImage class: a kind of a cursor, that can cope
20 #include "wx/cursor.h"
92 Can we simply use cursors instead, creating a cursor dynamically, setting it into the window
93 in BeginDrag, and restoring the old cursor in EndDrag?
94 For a really bog-standard implementation, we could simply use a normal dragging cursor
110 wxDragImage(const wxBitmap& image, const wxCursor& cursor = wxNullCursor)
114 Create(image, cursor);
118 wxDragImage(const wxBitmap& image, const wxCursor& cursor, const wxPoint& cursorHotspot)
122 Create(image, cursor, cursorHotspot);
125 wxDragImage(const wxIcon& image, const wxCursor& cursor = wxNullCursor)
129 Create(image, cursor);
133 wxDragImage(const wxIcon& image, const wxCursor& cursor, const wxPoint& cursorHotspot)
137 Create(image, cursor, cursorHotspot);
140 wxDragImage(const wxString& str, const wxCursor& cursor = wxNullCursor)
144 Create(str, cursor);
148 wxDragImage(const wxString& str, const wxCursor& cursor, const wxPoint& cursorHotspot)
152 Create(str, cursor, cursorHotspot);
181 // Create a drag image from a bitmap and optional cursor
182 bool Create(const wxBitmap& image, const wxCursor& cursor = wxNullCursor);
183 bool Create(const wxBitmap& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot))
185 wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument."));
186 return Create(image, cursor);
189 // Create a drag image from an icon and optional cursor
190 bool Create(const wxIcon& image, const wxCursor& cursor = wxNullCursor);
191 bool Create(const wxIcon& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot))
193 wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument."));
194 return Create(image, cursor);
197 // Create a drag image from a string and optional cursor
198 bool Create(const wxString& str, const wxCursor& cursor = wxNullCursor);
199 bool Create(const wxString& str, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot))
201 wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument."));
202 return Create(str, cursor);
247 // Returns the native image list handle for the cursor