]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/cursor.tex
fixed another return FALSE in a function returning a pointer (patch 545046)
[wxWidgets.git] / docs / latex / wx / cursor.tex
CommitLineData
a660d684
KB
1\section{\class{wxCursor}}\label{wxcursor}
2
3A cursor is a small bitmap usually used for denoting where the mouse
4pointer is, with a picture that might indicate the interpretation of a
5mouse click. As with icons, cursors in X and MS Windows are created
6in a different manner. Therefore, separate cursors will be created for the
7different environments. Platform-specific methods for creating a {\bf
8wxCursor} object are catered for, and this is an occasion where
9conditional compilation will probably be required (see \helpref{wxIcon}{wxicon} for
10an example).
11
12A single cursor object may be used in many windows (any subwindow type).
13The wxWindows convention is to set the cursor for a window, as in X,
14rather than to set it globally as in MS Windows, although a
15global \helpref{::wxSetCursor}{wxsetcursor} is also available for MS Windows use.
16
17\wxheading{Derived from}
18
19\helpref{wxBitmap}{wxbitmap}\\
20\helpref{wxGDIObject}{wxgdiobject}\\
21\helpref{wxObject}{wxobject}
22
954b8ae6
JS
23\wxheading{Include files}
24
25<wx/cursor.h>
26
20e85460
JS
27\wxheading{Predefined objects}
28
29Objects:
30
31{\bf wxNullCursor}
32
33Pointers:
34
35{\bf wxSTANDARD\_CURSOR\\
36wxHOURGLASS\_CURSOR\\
37wxCROSS\_CURSOR}
38
a660d684
KB
39\wxheading{See also}
40
41\helpref{wxBitmap}{wxbitmap}, \helpref{wxIcon}{wxicon}, \helpref{wxWindow::SetCursor}{wxwindowsetcursor},\rtfsp
42\helpref{::wxSetCursor}{wxsetcursor}
43
44\latexignore{\rtfignore{\wxheading{Members}}}
45
46\membersection{wxCursor::wxCursor}\label{wxcursorconstr}
47
48\func{}{wxCursor}{\void}
49
50Default constructor.
51
eaaa6a06
JS
52\func{}{wxCursor}{\param{const char}{ bits[]}, \param{int }{width},
53 \param{int }{ height}, \param{int }{hotSpotX=-1}, \param{int }{hotSpotY=-1}, \param{const char }{maskBits[]=NULL}}
a660d684
KB
54
55Constructs a cursor by passing an array of bits (Motif and Xt only). {\it maskBits} is used only under Motif.
56
57If either {\it hotSpotX} or {\it hotSpotY} is -1, the hotspot will be the centre of the cursor image (Motif only).
58
eaaa6a06 59\func{}{wxCursor}{\param{const wxString\& }{cursorName}, \param{long }{type}, \param{int }{hotSpotX=0}, \param{int }{hotSpotY=0}}
a660d684
KB
60
61Constructs a cursor by passing a string resource name or filename.
62
63{\it hotSpotX} and {\it hotSpotY} are currently only used under Windows when loading from an
64icon file, to specify the cursor hotspot relative to the top left of the image.
65
eaaa6a06 66\func{}{wxCursor}{\param{int}{ cursorId}}
a660d684
KB
67
68Constructs a cursor using a cursor identifier.
69
bff4ec63
VZ
70\func{}{wxCursor}{\param{const wxImage\&}{ image}}
71
72Constructs a cursor from a wxImage. The cursor is monochome, colors with the RGB elements all greater
73than 127 will be foreground, colors less than this background. The mask (if any) will be used as transparent.
74
75In MSW the foreground will be white and the background black. The cursor is resized to 32x32
76In GTK, the two most frequent colors will be used for foreground and background. The cursor will be displayed
77at the size of the image.
78
a660d684
KB
79\func{}{wxCursor}{\param{const wxCursor\&}{ cursor}}
80
81Copy constructor. This uses reference counting so is a cheap operation.
82
a660d684
KB
83\wxheading{Parameters}
84
85\docparam{bits}{An array of bits.}
86
87\docparam{maskBits}{Bits for a mask bitmap.}
88
89\docparam{width}{Cursor width.}
90
91\docparam{height}{Cursor height.}
92
93\docparam{hotSpotX}{Hotspot x coordinate.}
94
95\docparam{hotSpotY}{Hotspot y coordinate.}
96
97\docparam{type}{Icon type to load. Under Motif, {\it type} defaults to {\bf wxBITMAP\_TYPE\_XBM}. Under Windows,
98it defaults to {\bf wxBITMAP\_TYPE\_CUR\_RESOURCE}.
99
100Under X, the permitted cursor types are:
101
102\twocolwidtha{6cm}
103\begin{twocollist}\itemsep=0pt
104\twocolitem{\windowstyle{wxBITMAP\_TYPE\_XBM}}{Load an X bitmap file.}
105\end{twocollist}
106
107Under Windows, the permitted types are:
108
109\twocolwidtha{6cm}
110\begin{twocollist}\itemsep=0pt
111\twocolitem{\windowstyle{wxBITMAP\_TYPE\_CUR}}{Load a cursor from a .cur cursor file (only if USE\_RESOURCE\_LOADING\_IN\_MSW
9a05fd8d 112is enabled in setup.h).}
a660d684
KB
113\twocolitem{\windowstyle{wxBITMAP\_TYPE\_CUR\_RESOURCE}}{Load a Windows resource (as specified in the .rc file).}
114\twocolitem{\windowstyle{wxBITMAP\_TYPE\_ICO}}{Load a cursor from a .ico icon file (only if USE\_RESOURCE\_LOADING\_IN\_MSW
9a05fd8d 115is enabled in setup.h). Specify {\it hotSpotX} and {\it hotSpotY}.}
a660d684
KB
116\end{twocollist}}
117
118\docparam{cursorId}{A stock cursor identifier. May be one of:
119
120\twocolwidtha{6cm}
121\begin{twocollist}\itemsep=0pt
122\twocolitem{{\bf wxCURSOR\_ARROW}}{A standard arrow cursor.}
15dadf31
RD
123\twocolitem{{\bf wxCURSOR\_RIGHT\_ARROW}}{A standard arrow cursor
124pointing to the right.}
01e4ec19 125\twocolitem{{\bf wxCURSOR\_BLANK}}{Transparent cursor.}
a660d684
KB
126\twocolitem{{\bf wxCURSOR\_BULLSEYE}}{Bullseye cursor.}
127\twocolitem{{\bf wxCURSOR\_CHAR}}{Rectangular character cursor.}
128\twocolitem{{\bf wxCURSOR\_CROSS}}{A cross cursor.}
129\twocolitem{{\bf wxCURSOR\_HAND}}{A hand cursor.}
130\twocolitem{{\bf wxCURSOR\_IBEAM}}{An I-beam cursor (vertical line).}
131\twocolitem{{\bf wxCURSOR\_LEFT\_BUTTON}}{Represents a mouse with the left button depressed.}
132\twocolitem{{\bf wxCURSOR\_MAGNIFIER}}{A magnifier icon.}
133\twocolitem{{\bf wxCURSOR\_MIDDLE\_BUTTON}}{Represents a mouse with the middle button depressed.}
134\twocolitem{{\bf wxCURSOR\_NO\_ENTRY}}{A no-entry sign cursor.}
135\twocolitem{{\bf wxCURSOR\_PAINT\_BRUSH}}{A paintbrush cursor.}
136\twocolitem{{\bf wxCURSOR\_PENCIL}}{A pencil cursor.}
137\twocolitem{{\bf wxCURSOR\_POINT\_LEFT}}{A cursor that points left.}
138\twocolitem{{\bf wxCURSOR\_POINT\_RIGHT}}{A cursor that points right.}
139\twocolitem{{\bf wxCURSOR\_QUESTION\_ARROW}}{An arrow and question mark.}
140\twocolitem{{\bf wxCURSOR\_RIGHT\_BUTTON}}{Represents a mouse with the right button depressed.}
141\twocolitem{{\bf wxCURSOR\_SIZENESW}}{A sizing cursor pointing NE-SW.}
142\twocolitem{{\bf wxCURSOR\_SIZENS}}{A sizing cursor pointing N-S.}
143\twocolitem{{\bf wxCURSOR\_SIZENWSE}}{A sizing cursor pointing NW-SE.}
144\twocolitem{{\bf wxCURSOR\_SIZEWE}}{A sizing cursor pointing W-E.}
145\twocolitem{{\bf wxCURSOR\_SIZING}}{A general sizing cursor.}
146\twocolitem{{\bf wxCURSOR\_SPRAYCAN}}{A spraycan cursor.}
147\twocolitem{{\bf wxCURSOR\_WAIT}}{A wait cursor.}
148\twocolitem{{\bf wxCURSOR\_WATCH}}{A watch cursor.}
83f96286
RD
149\twocolitem{{\bf wxCURSOR\_ARROWWAIT}}{A cursor with both an arrow and
150an hourglass, (windows.)}
a660d684
KB
151\end{twocollist}\twocolwidtha{5cm}
152
153Note that not all cursors are available on all platforms.}
154
155\docparam{cursor}{Pointer or reference to a cursor to copy.}
156
06d20283
RD
157\pythonnote{Constructors supported by wxPython are:\par
158\indented{2cm}{\begin{twocollist}
c9110876 159\twocolitem{{\bf wxCursor(name, flags, hotSpotX=0,
06d20283 160hotSpotY=0)}}{Constructs a cursor from a filename}
c9110876 161\twocolitem{{\bf wxStockCursor(id)}}{Constructs a stock cursor }
06d20283
RD
162\end{twocollist}}
163}
164
5873607e
VZ
165\perlnote{Contructors supported by wxPerl are:\par
166\begin{itemize}
167\item{Wx::Cursor->new( name, type, hotSpotX = 0, hotSpotY = 0 )}
168\item{Wx::Cursor->new( id )}
169\end{itemize}
170}
171
a660d684
KB
172\membersection{wxCursor::\destruct{wxCursor}}
173
174\func{}{\destruct{wxCursor}}{\void}
175
176Destroys the cursor. A cursor can be reused for more
177than one window, and does not get destroyed when the window is
178destroyed. wxWindows destroys all cursors on application exit, although
f6bcfd97 179it is best to clean them up explicitly.
a660d684
KB
180
181\membersection{wxCursor::Ok}\label{wxcursorok}
182
183\constfunc{bool}{Ok}{\void}
184
185Returns TRUE if cursor data is present.
186
187\membersection{wxCursor::operator $=$}\label{wxcursorassignment}
188
189\func{wxCursor\&}{operator $=$}{\param{const wxCursor\& }{cursor}}
190
191Assignment operator, using reference counting. Returns a reference
192to `this'.
193
194\membersection{wxCursor::operator $==$}\label{wxcursorequals}
195
196\func{bool}{operator $==$}{\param{const wxCursor\& }{cursor}}
197
198Equality operator. Two cursors are equal if they contain pointers
199to the same underlying cursor data. It does not compare each attribute,
200so two independently-created cursors using the same parameters will
201fail the test.
202
203\membersection{wxCursor::operator $!=$}\label{wxcursornotequals}
204
205\func{bool}{operator $!=$}{\param{const wxCursor\& }{cursor}}
206
207Inequality operator. Two cursors are not equal if they contain pointers
208to different underlying cursor data. It does not compare each attribute.
209
210