]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/pen.tex
Added newline for PDF RTF
[wxWidgets.git] / docs / latex / wx / pen.tex
CommitLineData
46562151
WS
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: pen.tex
3%% Purpose: wxPen docs
4%% Author:
5%% Modified by:
6%% Created:
7%% RCS-ID: $Id$
8%% Copyright: (c) wxWidgets
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
a660d684
KB
12\section{\class{wxPen}}\label{wxpen}
13
14A pen is a drawing tool for drawing outlines. It is used for drawing
15lines and painting the outline of rectangles, ellipses, etc. It has a
46562151 16colour, a width and a style.
a660d684 17
954b8ae6
JS
18\wxheading{Derived from}
19
20\helpref{wxGDIObject}{wxgdiobject}\\
21\helpref{wxObject}{wxobject}
22
23\wxheading{Include files}
24
25<wx/pen.h>
26
20e85460
JS
27\wxheading{Predefined objects}
28
29Objects:
30
31{\bf wxNullPen}
32
33Pointers:
34
35{\bf wxRED\_PEN\\
36wxCYAN\_PEN\\
37wxGREEN\_PEN\\
38wxBLACK\_PEN\\
39wxWHITE\_PEN\\
40wxTRANSPARENT\_PEN\\
41wxBLACK\_DASHED\_PEN\\
42wxGREY\_PEN\\
43wxMEDIUM\_GREY\_PEN\\
44wxLIGHT\_GREY\_PEN}
45
a660d684
KB
46\wxheading{Remarks}
47
fc2171bd 48On a monochrome display, wxWidgets shows all non-white pens as black.
a660d684
KB
49
50Do not initialize objects on the stack before the program commences,
51since other required structures may not have been set up yet. Instead,
52define global pointers to objects and create them in {\it OnInit} or
53when required.
54
55An application may wish to dynamically create pens with different
56characteristics, and there is the consequent danger that a large number
57of duplicate pens will be created. Therefore an application may wish to
58get a pointer to a pen by using the global list of pens {\bf
59wxThePenList}, and calling the member function {\bf FindOrCreatePen}.
60See the entry for \helpref{wxPenList}{wxpenlist}.
61
12a44087
RR
62wxPen uses a reference counting system, so assignments between brushes are very
63cheap. You can therefore use actual wxPen objects instead of pointers without
64efficiency problems. Once one wxPen object changes its data it will create its
65own pen data internally so that other pens, which previously shared the
66data using the reference counting, are not affected.
67
5b6aa0ff 68%TODO: an overview for wxPen.
a660d684
KB
69\wxheading{See also}
70
71\helpref{wxPenList}{wxpenlist}, \helpref{wxDC}{wxdc}, \helpref{wxDC::SetPen}{wxdcsetpen}
72
73\latexignore{\rtfignore{\wxheading{Members}}}
74
dcbd177f 75\membersection{wxPen::wxPen}\label{wxpenctor}
a660d684
KB
76
77\func{}{wxPen}{\void}
78
b7cacb43 79Default constructor. The pen will be uninitialised, and \helpref{wxPen:IsOk}{wxpenisok} will
cc81d32f 80return false.
a660d684 81
4f535231 82\func{}{wxPen}{\param{const wxColour\&}{ colour}, \param{int}{ width = $1$}, \param{int}{ style = {\tt wxSOLID}}}
a660d684
KB
83
84Constructs a pen from a colour object, pen width and style.
85
eaaa6a06 86\func{}{wxPen}{\param{const wxString\& }{colourName}, \param{int}{ width}, \param{int}{ style}}
a660d684
KB
87
88Constructs a pen from a colour name, pen width and style.
89
eaaa6a06 90\func{}{wxPen}{\param{const wxBitmap\&}{ stipple}, \param{int}{ width}}
a660d684
KB
91
92Constructs a stippled pen from a stipple bitmap and a width.
93
94\func{}{wxPen}{\param{const wxPen\&}{ pen}}
95
a91225b2 96Copy constructor, uses \helpref{reference counting}{trefcount}.
a660d684 97
a660d684
KB
98\wxheading{Parameters}
99
100\docparam{colour}{A colour object.}
101
102\docparam{colourName}{A colour name.}
103
104\docparam{width}{Pen width. Under Windows, the pen width cannot be greater than 1 if
105the style is wxDOT, wxLONG\_DASH, wxSHORT\_DASH, wxDOT\_DASH, or wxUSER\_DASH.}
106
107\docparam{stipple}{A stipple bitmap.}
108
109\docparam{pen}{A pointer or reference to a pen to copy.}
110
a660d684
KB
111\docparam{style}{The style may be one of the following:
112
113\begin{twocollist}\itemsep=0pt
114\twocolitem{{\bf wxSOLID}}{Solid style.}
115\twocolitem{{\bf wxTRANSPARENT}}{No pen is used.}
116\twocolitem{{\bf wxDOT}}{Dotted style.}
117\twocolitem{{\bf wxLONG\_DASH}}{Long dashed style.}
118\twocolitem{{\bf wxSHORT\_DASH}}{Short dashed style.}
119\twocolitem{{\bf wxDOT\_DASH}}{Dot and dash style.}
120\twocolitem{{\bf wxSTIPPLE}}{Use the stipple bitmap.}
121\twocolitem{{\bf wxUSER\_DASH}}{Use the user dashes: see \helpref{wxPen::SetDashes}{wxpensetdashes}.}
122\twocolitem{{\bf wxBDIAGONAL\_HATCH}}{Backward diagonal hatch.}
123\twocolitem{{\bf wxCROSSDIAG\_HATCH}}{Cross-diagonal hatch.}
124\twocolitem{{\bf wxFDIAGONAL\_HATCH}}{Forward diagonal hatch.}
125\twocolitem{{\bf wxCROSS\_HATCH}}{Cross hatch.}
126\twocolitem{{\bf wxHORIZONTAL\_HATCH}}{Horizontal hatch.}
127\twocolitem{{\bf wxVERTICAL\_HATCH}}{Vertical hatch.}
128\end{twocollist}}
129
130\wxheading{Remarks}
131
2259e007
RR
132Different versions of Windows and different versions of other platforms
133support {\it very} different subsets of the styles above - there is no
134similarity even between Windows95 and Windows98 - so handle with care.
135
a660d684
KB
136If the named colour form is used, an appropriate {\bf wxColour} structure
137is found in the colour database.
138
a660d684
KB
139\wxheading{See also}
140
141\helpref{wxPen::SetStyle}{wxpensetstyle}, \helpref{wxPen::SetColour}{wxpensetcolour},\rtfsp
142\helpref{wxPen::SetWidth}{wxpensetwidth}, \helpref{wxPen::SetStipple}{wxpensetstipple}
143
5873607e
VZ
144\perlnote{Constructors supported by wxPerl are:\par
145\begin{itemize}
146\item{Wx::Pen->new( colour, width, style )}
147\item{Wx::Pen->new( colourName, width, style )}
148\item{Wx::Pen->new( stipple, width )}
149\end{itemize}
150}
151
dcbd177f 152\membersection{wxPen::\destruct{wxPen}}\label{wxpendtor}
a660d684
KB
153
154\func{}{\destruct{wxPen}}{\void}
155
156Destructor.
55ccdb93 157See \helpref{reference-counted object destruction}{refcountdestruct} for more info.
a660d684
KB
158
159\wxheading{Remarks}
160
a660d684
KB
161Although all remaining pens are deleted when the application exits,
162the application should try to clean up all pens itself. This is because
fc2171bd 163wxWidgets cannot know if a pointer to the pen object is stored in an
a660d684
KB
164application data structure, and there is a risk of double deletion.
165
166\membersection{wxPen::GetCap}\label{wxpengetcap}
167
168\constfunc{int}{GetCap}{\void}
169
170Returns the pen cap style, which may be one of {\bf wxCAP\_ROUND}, {\bf wxCAP\_PROJECTING} and
171\rtfsp{\bf wxCAP\_BUTT}. The default is {\bf wxCAP\_ROUND}.
172
173\wxheading{See also}
174
175\helpref{wxPen::SetCap}{wxpensetcap}
176
177\membersection{wxPen::GetColour}\label{wxpengetcolour}
178
179\constfunc{wxColour\&}{GetColour}{\void}
180
181Returns a reference to the pen colour.
182
183\wxheading{See also}
184
185\helpref{wxPen::SetColour}{wxpensetcolour}
186
187\membersection{wxPen::GetDashes}\label{wxpengetdashes}
188
189\constfunc{int}{GetDashes}{\param{wxDash**}{ dashes}}
190
191Gets an array of dashes (defined as char in X, DWORD under Windows).
192{\it dashes} is a pointer to the internal array. Do not deallocate or store this pointer.
193The function returns the number of dashes associated with this pen.
194
195\wxheading{See also}
196
197\helpref{wxPen::SetDashes}{wxpensetdashes}
198
199\membersection{wxPen::GetJoin}\label{wxpengetjoin}
200
201\constfunc{int}{GetJoin}{\void}
202
203Returns the pen join style, which may be one of {\bf wxJOIN\_BEVEL}, {\bf wxJOIN\_ROUND} and
204\rtfsp{\bf wxJOIN\_MITER}. The default is {\bf wxJOIN\_ROUND}.
205
206\wxheading{See also}
207
208\helpref{wxPen::SetJoin}{wxpensetjoin}
209
210\membersection{wxPen::GetStipple}\label{wxpengetstipple}
211
212\constfunc{wxBitmap* }{GetStipple}{\void}
213
214Gets a pointer to the stipple bitmap.
215
216\wxheading{See also}
217
218\helpref{wxPen::SetStipple}{wxpensetstipple}
219
220\membersection{wxPen::GetStyle}\label{wxpengetstyle}
221
222\constfunc{int}{GetStyle}{\void}
223
224Returns the pen style.
225
226\wxheading{See also}
227
dcbd177f 228\helpref{wxPen::wxPen}{wxpenctor}, \helpref{wxPen::SetStyle}{wxpensetstyle}
a660d684
KB
229
230\membersection{wxPen::GetWidth}\label{wxpengetwidth}
231
232\constfunc{int}{GetWidth}{\void}
233
234Returns the pen width.
235
236\wxheading{See also}
237
238\helpref{wxPen::SetWidth}{wxpensetwidth}
239
b7cacb43 240\membersection{wxPen::IsOk}\label{wxpenisok}
a660d684 241
b7cacb43 242\constfunc{bool}{IsOk}{\void}
a660d684 243
cc81d32f 244Returns true if the pen is initialised.
a660d684
KB
245
246\membersection{wxPen::SetCap}\label{wxpensetcap}
247
248\func{void}{SetCap}{\param{int}{ capStyle}}
249
250Sets the pen cap style, which may be one of {\bf wxCAP\_ROUND}, {\bf wxCAP\_PROJECTING} and
251\rtfsp{\bf wxCAP\_BUTT}. The default is {\bf wxCAP\_ROUND}.
252
253\wxheading{See also}
254
255\helpref{wxPen::GetCap}{wxpengetcap}
256
257\membersection{wxPen::SetColour}\label{wxpensetcolour}
258
259\func{void}{SetColour}{\param{wxColour\&}{ colour}}
260
261\func{void}{SetColour}{\param{const wxString\& }{colourName}}
262
1a1498c0 263\func{void}{SetColour}{\param{unsigned char}{ red}, \param{unsigned char}{ green}, \param{unsigned char}{ blue}}
a660d684
KB
264
265The pen's colour is changed to the given colour.
266
267\wxheading{See also}
268
269\helpref{wxPen::GetColour}{wxpengetcolour}
270
271\membersection{wxPen::SetDashes}\label{wxpensetdashes}
272
273\func{void}{SetDashes}{\param{int }{n}, \param{wxDash*}{ dashes}}
274
275Associates an array of pointers to dashes (defined as char in X, DWORD under Windows)
276with the pen. The array is not deallocated by wxPen, but neither must it be
277deallocated by the calling application until the pen is deleted or this
278function is called with a NULL array.
279
5b6aa0ff 280%TODO: describe in detail.
a660d684
KB
281\wxheading{See also}
282
283\helpref{wxPen::GetDashes}{wxpengetdashes}
284
285\membersection{wxPen::SetJoin}\label{wxpensetjoin}
286
03ca23b6 287\func{void}{SetJoin}{\param{int }{join\_style}}
a660d684
KB
288
289Sets the pen join style, which may be one of {\bf wxJOIN\_BEVEL}, {\bf wxJOIN\_ROUND} and
290\rtfsp{\bf wxJOIN\_MITER}. The default is {\bf wxJOIN\_ROUND}.
291
292\wxheading{See also}
293
294\helpref{wxPen::GetJoin}{wxpengetjoin}
295
296\membersection{wxPen::SetStipple}\label{wxpensetstipple}
297
298\func{void}{SetStipple}{\param{wxBitmap* }{stipple}}
299
300Sets the bitmap for stippling.
301
302\wxheading{See also}
303
304\helpref{wxPen::GetStipple}{wxpengetstipple}
305
306\membersection{wxPen::SetStyle}\label{wxpensetstyle}
307
308\func{void}{SetStyle}{\param{int}{ style}}
309
310Set the pen style.
311
312\wxheading{See also}
313
dcbd177f 314\helpref{wxPen::wxPen}{wxpenctor}
a660d684
KB
315
316\membersection{wxPen::SetWidth}\label{wxpensetwidth}
317
eaaa6a06 318\func{void}{SetWidth}{\param{int}{ width}}
a660d684
KB
319
320Sets the pen width.
321
322\wxheading{See also}
323
324\helpref{wxPen::GetWidth}{wxpengetwidth}
325
326\membersection{wxPen::operator $=$}\label{wxpenassignment}
327
328\func{wxPen\&}{operator $=$}{\param{const wxPen\& }{pen}}
329
a91225b2 330Assignment operator, using \helpref{reference counting}{trefcount}.
a660d684
KB
331
332\membersection{wxPen::operator $==$}\label{wxpenequals}
333
334\func{bool}{operator $==$}{\param{const wxPen\& }{pen}}
335
55ccdb93
VZ
336Equality operator.
337See \helpref{reference-counted object comparison}{refcountequality} for more info.
a660d684
KB
338
339\membersection{wxPen::operator $!=$}\label{wxpennotequals}
340
341\func{bool}{operator $!=$}{\param{const wxPen\& }{pen}}
342
55ccdb93
VZ
343Inequality operator.
344See \helpref{reference-counted object comparison}{refcountequality} for more info.
a660d684
KB
345
346\section{\class{wxPenList}}\label{wxpenlist}
347
348There is only one instance of this class: {\bf wxThePenList}. Use
349this object to search for a previously created pen of the desired
350type and create it if not already found. In some windowing systems,
351the pen may be a scarce resource, so it can pay to reuse old
352resources if possible. When an application finishes, all pens will
353be deleted and their resources freed, eliminating the possibility of
354`memory leaks'. However, it is best not to rely on this automatic
355cleanup because it can lead to double deletion in some circumstances.
356
fc2171bd 357There are two mechanisms in recent versions of wxWidgets which make the
a660d684
KB
358pen list less useful than it once was. Under Windows, scarce resources
359are cleaned up internally if they are not being used. Also, a referencing
360counting mechanism applied to all GDI objects means that some sharing
361of underlying resources is possible. You don't have to keep track of pointers,
362working out when it is safe delete a pen, because the referencing counting does
363it for you. For example, you can set a pen in a device context, and then
364immediately delete the pen you passed, because the pen is `copied'.
365
366So you may find it easier to ignore the pen list, and instead create
367and copy pens as you see fit. If your Windows resource meter suggests
368your application is using too many resources, you can resort to using
369GDI lists to share objects explicitly.
370
fc2171bd 371The only compelling use for the pen list is for wxWidgets to keep
a660d684 372track of pens in order to clean them up on exit. It is also kept for
fc2171bd 373backward compatibility with earlier versions of wxWidgets.
a660d684
KB
374
375\wxheading{See also}
376
377\helpref{wxPen}{wxpen}
378
379\latexignore{\rtfignore{\wxheading{Members}}}
380
39275175 381\membersection{wxPenList::wxPenList}\label{wxpenlistctor}
a660d684
KB
382
383\func{void}{wxPenList}{\void}
384
385Constructor. The application should not construct its own pen list:
386use the object pointer {\bf wxThePenList}.
387
a660d684
KB
388\membersection{wxPenList::FindOrCreatePen}\label{wxpenlistfindorcreatepen}
389
eaaa6a06 390\func{wxPen*}{FindOrCreatePen}{\param{const wxColour\& }{colour}, \param{int}{ width}, \param{int}{ style}}
a660d684
KB
391
392Finds a pen with the specified attributes and returns it, else creates a new pen, adds it
393to the pen list, and returns it.
394
eaaa6a06 395\func{wxPen*}{FindOrCreatePen}{\param{const wxString\& }{colourName}, \param{int}{ width}, \param{int}{ style}}
a660d684
KB
396
397Finds a pen with the specified attributes and returns it, else creates a new pen, adds it
398to the pen list, and returns it.
399
400\wxheading{Parameters}
401
402\docparam{colour}{Colour object.}
403
dbdb39b2
JS
404\docparam{colourName}{Colour name, which should be in the \helpref{colour database}{wxcolourdatabase}.}
405
406\docparam{width}{Width of pen.}
a660d684 407
dcbd177f 408\docparam{style}{Pen style. See \helpref{wxPen::wxPen}{wxpenctor} for a list of styles.}