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