]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_cursor.i
* Some WXWIN_COMPATIBILITY_2_4 changes, as well as flagging other
[wxWidgets.git] / wxPython / src / _cursor.i
CommitLineData
d14a1e28
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: _cursor.i
3// Purpose: SWIG interface for wxCursor
4//
5// Author: Robin Dunn
6//
7// Created: 7-July-1997
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13// Not a %module
14
15
16//---------------------------------------------------------------------------
17
4c42683a
RD
18
19DocStr(wxCursor,
d07d2bc9
RD
20"A cursor is a small bitmap usually used for denoting where the mouse
21pointer is, with a picture that might indicate the interpretation of a
22mouse click.
4c42683a
RD
23
24A single cursor object may be used in many windows (any subwindow
d07d2bc9
RD
25type). The wxWindows convention is to set the cursor for a window, as
26in X, rather than to set it globally as in MS Windows, although a
27global `wx.SetCursor` function is also available for use on MS Windows.
28","
29
30Stock Cursor IDs
31-----------------
32 ======================== ======================================
4c42683a
RD
33 wx.CURSOR_ARROW A standard arrow cursor.
34 wx.CURSOR_RIGHT_ARROW A standard arrow cursor pointing to the right.
35 wx.CURSOR_BLANK Transparent cursor.
36 wx.CURSOR_BULLSEYE Bullseye cursor.
37 wx.CURSOR_CHAR Rectangular character cursor.
38 wx.CURSOR_CROSS A cross cursor.
39 wx.CURSOR_HAND A hand cursor.
40 wx.CURSOR_IBEAM An I-beam cursor (vertical line).
41 wx.CURSOR_LEFT_BUTTON Represents a mouse with the left button depressed.
42 wx.CURSOR_MAGNIFIER A magnifier icon.
43 wx.CURSOR_MIDDLE_BUTTON Represents a mouse with the middle button depressed.
44 wx.CURSOR_NO_ENTRY A no-entry sign cursor.
45 wx.CURSOR_PAINT_BRUSH A paintbrush cursor.
46 wx.CURSOR_PENCIL A pencil cursor.
47 wx.CURSOR_POINT_LEFT A cursor that points left.
48 wx.CURSOR_POINT_RIGHT A cursor that points right.
49 wx.CURSOR_QUESTION_ARROW An arrow and question mark.
50 wx.CURSOR_RIGHT_BUTTON Represents a mouse with the right button depressed.
51 wx.CURSOR_SIZENESW A sizing cursor pointing NE-SW.
52 wx.CURSOR_SIZENS A sizing cursor pointing N-S.
53 wx.CURSOR_SIZENWSE A sizing cursor pointing NW-SE.
54 wx.CURSOR_SIZEWE A sizing cursor pointing W-E.
55 wx.CURSOR_SIZING A general sizing cursor.
56 wx.CURSOR_SPRAYCAN A spraycan cursor.
57 wx.CURSOR_WAIT A wait cursor.
58 wx.CURSOR_WATCH A watch cursor.
59 wx.CURSOR_ARROWWAIT A cursor with both an arrow and an hourglass, (windows.)
d07d2bc9 60 ======================== ======================================
4c42683a
RD
61
62");
63
ab1f7d2a
RD
64MustHaveApp(wxCursor);
65
d14a1e28
RD
66class wxCursor : public wxGDIObject
67{
68public:
4c42683a 69
d14a1e28 70 %extend {
4c42683a 71 DocStr(wxCursor,
d07d2bc9 72 "Construct a Cursor from a file. Specify the type of file using
aeee37c3
RD
73wx.BITAMP_TYPE* constants, and specify the hotspot if not using a .cur
74file.","
75:see: Alternate constructors `wx.StockCursor`,`wx.CursorFromImage`, `wx.CursorFromBits`");
76 wxCursor(const wxString& cursorName, long type, int hotSpotX=0, int hotSpotY=0) {
4c42683a 77%#ifdef __WXGTK__
aeee37c3
RD
78 wxImage img(cursorName, type);
79 img.SetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X, hotSpotX);
80 img.SetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y, hotSpotY);
81 return new wxCursor(img);
4c42683a 82%#else
aeee37c3 83 return new wxCursor(cursorName, type, hotSpotX, hotSpotY);
4c42683a 84%#endif
d14a1e28
RD
85 }
86 }
87
88 ~wxCursor();
89
4c42683a
RD
90 DocCtorStrName(
91 wxCursor(int id),
d07d2bc9 92 "Create a cursor using one of the stock cursors. Note that not all
aeee37c3 93stock cursors are available on all platforms.", "",
4c42683a
RD
94 StockCursor);
95
96
97 DocCtorStrName(
98 wxCursor(const wxImage& image),
d07d2bc9
RD
99 "Constructs a cursor from a wxImage. The cursor is monochrome, colors
100with the RGB elements all greater than 127 will be foreground, colors
101less than this background. The mask (if any) will be used as
102transparent.",
103"
104In MSW the foreground will be white and the background
105black. The cursor is resized to 32x32.
106
107In GTK, the two most frequent colors will be used for foreground and
108background. The cursor will be displayed at the size of the image.
109
110On MacOS the cursor is resized to 16x16 and currently only shown as
111black/white (mask respected).",
4c42683a
RD
112 CursorFromImage);
113
114
115// %extend {
116// DocStr(wxCursor,
117// "");
1b8c7ba6 118// %RenameCtor(CursorFromBits, wxCursor(PyObject* bits, int width, int height,
4c42683a 119// int hotSpotX=-1, int hotSpotY=-1,
1b8c7ba6
RD
120// PyObject* maskBits=NULL))
121// {
4c42683a
RD
122// char* bitsbuf;
123// char* maskbuf = NULL;
124// int length;
125// PyString_AsStringAndSize(bits, &bitsbuf, &length);
126// if (maskBits)
127// PyString_AsStringAndSize(maskBits, &maskbuf, &length);
128// return new wxCursor(bitsbuf, width, height, hotSpotX, hotSpotY, maskbuf);
129// }
130// }
131
132
d14a1e28 133
d14a1e28 134#ifdef __WXMSW__
4c42683a
RD
135 DocDeclStr(
136 long , GetHandle(),
d07d2bc9 137 "Get the MS Windows handle for the cursor", "");
4c42683a 138
a0c956e8
RD
139 %extend {
140 DocStr(SetHandle,
d07d2bc9 141 "Set the MS Windows handle to use for the cursor", "");
a0c956e8
RD
142 void SetHandle(long handle) { self->SetHandle((WXHANDLE)handle); }
143 }
4c42683a 144
d14a1e28
RD
145#endif
146
4c42683a
RD
147 DocDeclStr(
148 bool , Ok(),
d07d2bc9 149 "", "");
4c42683a
RD
150
151 %pythoncode { def __nonzero__(self): return self.Ok() }
152
d14a1e28
RD
153
154#ifdef __WXMSW__
4c42683a
RD
155 DocDeclStr(
156 int , GetWidth(),
d07d2bc9 157 "", "");
4c42683a
RD
158
159 DocDeclStr(
160 int , GetHeight(),
d07d2bc9 161 "", "");
4c42683a
RD
162
163 DocDeclStr(
164 int , GetDepth(),
d07d2bc9 165 "", "");
4c42683a
RD
166
167 DocDeclStr(
168 void , SetWidth(int w),
d07d2bc9 169 "", "");
4c42683a
RD
170
171 DocDeclStr(
172 void , SetHeight(int h),
d07d2bc9 173 "", "");
4c42683a
RD
174
175 DocDeclStr(
176 void , SetDepth(int d),
d07d2bc9 177 "", "");
4c42683a
RD
178
179 DocDeclStr(
180 void , SetSize(const wxSize& size),
d07d2bc9 181 "", "");
4c42683a 182
d14a1e28
RD
183#endif
184
d14a1e28
RD
185};
186
187
188//---------------------------------------------------------------------------
189//---------------------------------------------------------------------------