• 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/palmos/

Lines Matching defs:cursor

3 // Purpose:     wxDragImage class: a kind of a cursor, that can cope
18 #include "wx/cursor.h"
81 Can we simply use cursors instead, creating a cursor dynamically, setting it into the window
82 in BeginDrag, and restoring the old cursor in EndDrag?
83 For a really bog-standard implementation, we could simply use a normal dragging cursor
99 wxDragImage(const wxBitmap& image, const wxCursor& cursor = wxNullCursor)
103 Create(image, cursor);
107 wxDragImage(const wxBitmap& image, const wxCursor& cursor, const wxPoint& cursorHotspot)
111 Create(image, cursor, cursorHotspot);
114 wxDragImage(const wxIcon& image, const wxCursor& cursor = wxNullCursor)
118 Create(image, cursor);
122 wxDragImage(const wxIcon& image, const wxCursor& cursor, const wxPoint& cursorHotspot)
126 Create(image, cursor, cursorHotspot);
129 wxDragImage(const wxString& str, const wxCursor& cursor = wxNullCursor)
133 Create(str, cursor);
137 wxDragImage(const wxString& str, const wxCursor& cursor, const wxPoint& cursorHotspot)
141 Create(str, cursor, cursorHotspot);
170 // Create a drag image from a bitmap and optional cursor
171 bool Create(const wxBitmap& image, const wxCursor& cursor = wxNullCursor);
172 bool Create(const wxBitmap& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot))
174 wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument."));
175 return Create(image, cursor);
178 // Create a drag image from an icon and optional cursor
179 bool Create(const wxIcon& image, const wxCursor& cursor = wxNullCursor);
180 bool Create(const wxIcon& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot))
182 wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument."));
183 return Create(image, cursor);
186 // Create a drag image from a string and optional cursor
187 bool Create(const wxString& str, const wxCursor& cursor = wxNullCursor);
188 bool Create(const wxString& str, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot))
190 wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument."));
191 return Create(str, cursor);
236 // Returns the native image list handle for the cursor