]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/function.tex
Keep up the good work, people...
[wxWidgets.git] / docs / latex / wx / function.tex
1 \chapter{Functions}\label{functions}
2 \setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}%
3 \setfooter{\thepage}{}{}{}{}{\thepage}
4
5 The functions defined in wxWindows are described here.
6
7 \section{File functions}\label{filefunctions}
8
9 See also \helpref{wxPathList}{wxpathlist}.
10
11 \membersection{::wxDirExists}
12
13 \func{bool}{wxDirExists}{\param{const wxString\& }{dirname}}
14
15 Returns TRUE if the directory exists.
16
17 \membersection{::wxDos2UnixFilename}
18
19 \func{void}{Dos2UnixFilename}{\param{const wxString\& }{s}}
20
21 Converts a DOS to a Unix filename by replacing backslashes with forward
22 slashes.
23
24 \membersection{::wxFileExists}
25
26 \func{bool}{wxFileExists}{\param{const wxString\& }{filename}}
27
28 Returns TRUE if the file exists.
29
30 \membersection{::wxFileNameFromPath}
31
32 \func{wxString}{wxFileNameFromPath}{\param{const wxString\& }{path}}
33
34 Returns a temporary pointer to the filename for a full path.
35 Copy this pointer for long-term use.
36
37 \membersection{::wxFindFirstFile}\label{wxfindfirstfile}
38
39 \func{wxString}{wxFindFirstFile}{\param{const wxString\& }{spec}, \param{int}{ flags = 0}}
40
41 This function does directory searching; returns the first file
42 that matches the path {\it spec}, or NULL. Use \helpref{wxFindNextFile}{wxfindnextfile} to
43 get the next matching file.
44
45 {\it spec} may contain wildcards.
46
47 {\it flags} is reserved for future use.
48
49 The returned filename is a pointer to static memory so should
50 not be freed.
51
52 For example:
53
54 \begin{verbatim}
55 wxString f = wxFindFirstFile("/home/project/*.*");
56 while (f)
57 {
58 ...
59 f = wxFindNextFile();
60 }
61 \end{verbatim}
62
63 \membersection{::wxFindNextFile}\label{wxfindnextfile}
64
65 \func{wxString}{wxFindFirstFile}{\void}
66
67 Returns the next file that matches the path passed to \helpref{wxFindFirstFile}{wxfindfirstfile}.
68
69 \membersection{::wxGetOSDirectory}\label{wxgetosdirectory}
70
71 \func{wxString}{wxGetOSDirectory}{\void}
72
73 Returns the Windows directory under Windows; on other platforms returns the empty string.
74
75 \membersection{::wxIsAbsolutePath}
76
77 \func{bool}{wxIsAbsolutePath}{\param{const wxString\& }{filename}}
78
79 Returns TRUE if the argument is an absolute filename, i.e. with a slash
80 or drive name at the beginning.
81
82 \membersection{::wxPathOnly}
83
84 \func{wxString}{wxPathOnly}{\param{const wxString\& }{path}}
85
86 Returns a temporary pointer to the directory part of the filename. Copy this
87 pointer for long-term use.
88
89 \membersection{::wxUnix2DosFilename}
90
91 \func{void}{wxUnix2DosFilename}{\param{const wxString\& }{s}}
92
93 Converts a Unix to a DOS filename by replacing forward
94 slashes with backslashes.
95
96 \membersection{::wxConcatFiles}
97
98 \func{bool}{wxConcatFiles}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2},
99 \param{const wxString\& }{file3}}
100
101 Concatenates {\it file1} and {\it file2} to {\it file3}, returning
102 TRUE if successful.
103
104 \membersection{::wxCopyFile}
105
106 \func{bool}{wxCopyFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}}
107
108 Copies {\it file1} to {\it file2}, returning TRUE if successful.
109
110 \membersection{::wxGetHostName}\label{wxgethostname}
111
112 \func{bool}{wxGetHostName}{\param{const wxString\& }{buf}, \param{int }{sz}}
113
114 Copies the current host machine's name into the supplied buffer.
115
116 Under Windows or NT, this function first looks in the environment
117 variable SYSTEM\_NAME; if this is not found, the entry {\bf HostName}\rtfsp
118 in the {\bf wxWindows} section of the WIN.INI file is tried.
119
120 Returns TRUE if successful, FALSE otherwise.
121
122 \membersection{::wxGetEmailAddress}\label{wxgetemailaddress}
123
124 \func{bool}{wxGetEmailAddress}{\param{const wxString\& }{buf}, \param{int }{sz}}
125
126 Copies the user's email address into the supplied buffer, by
127 concatenating the values returned by \helpref{wxGetHostName}{wxgethostname}\rtfsp
128 and \helpref{wxGetUserId}{wxgetuserid}.
129
130 Returns TRUE if successful, FALSE otherwise.
131
132 \membersection{::wxGetUserId}\label{wxgetuserid}
133
134 \func{bool}{wxGetUserId}{\param{const wxString\& }{buf}, \param{int }{sz}}
135
136 Copies the current user id into the supplied buffer.
137
138 Under Windows or NT, this function first looks in the environment
139 variables USER and LOGNAME; if neither of these is found, the entry {\bf UserId}\rtfsp
140 in the {\bf wxWindows} section of the WIN.INI file is tried.
141
142 Returns TRUE if successful, FALSE otherwise.
143
144 \membersection{::wxGetUserName}\label{wxgetusername}
145
146 \func{bool}{wxGetUserName}{\param{const wxString\& }{buf}, \param{int }{sz}}
147
148 Copies the current user name into the supplied buffer.
149
150 Under Windows or NT, this function looks for the entry {\bf UserName}\rtfsp
151 in the {\bf wxWindows} section of the WIN.INI file. If PenWindows
152 is running, the entry {\bf Current} in the section {\bf User} of
153 the PENWIN.INI file is used.
154
155 Returns TRUE if successful, FALSE otherwise.
156
157 \membersection{::wxGetWorkingDirectory}
158
159 \func{wxString}{wxGetWorkingDirectory}{\param{const wxString\& }{buf=NULL}, \param{int }{sz=1000}}
160
161 Copies the current working directory into the buffer if supplied, or
162 copies the working directory into new storage (which you must delete yourself)
163 if the buffer is NULL.
164
165 {\it sz} is the size of the buffer if supplied.
166
167 \membersection{::wxGetTempFileName}
168
169 \func{wxString}{wxGetTempFileName}{\param{const wxString\& }{prefix}, \param{const wxString\& }{buf=NULL}}
170
171 Makes a temporary filename based on {\it prefix}, opens and closes the file,
172 and places the name in {\it buf}. If {\it buf} is NULL, new store
173 is allocated for the temporary filename using {\it new}.
174
175 Under Windows, the filename will include the drive and name of the
176 directory allocated for temporary files (usually the contents of the
177 TEMP variable). Under Unix, the {\tt /tmp} directory is used.
178
179 It is the application's responsibility to create and delete the file.
180
181 \membersection{::wxIsWild}\label{wxiswild}
182
183 \func{bool}{wxIsWild}{\param{const wxString\& }{pattern}}
184
185 Returns TRUE if the pattern contains wildcards. See \helpref{wxMatchWild}{wxmatchwild}.
186
187 \membersection{::wxMatchWild}\label{wxmatchwild}
188
189 \func{bool}{wxMatchWild}{\param{const wxString\& }{pattern}, \param{const wxString\& }{text}, \param{bool}{ dot\_special}}
190
191 Returns TRUE if the {\it pattern}\/ matches the {\it text}\/; if {\it
192 dot\_special}\/ is TRUE, filenames beginning with a dot are not matched
193 with wildcard characters. See \helpref{wxIsWild}{wxiswild}.
194
195 \membersection{::wxMkdir}
196
197 \func{bool}{wxMkdir}{\param{const wxString\& }{dir}}
198
199 Makes the directory {\it dir}, returning TRUE if successful.
200
201 \membersection{::wxRemoveFile}
202
203 \func{bool}{wxRemoveFile}{\param{const wxString\& }{file}}
204
205 Removes {\it file}, returning TRUE if successful.
206
207 \membersection{::wxRenameFile}
208
209 \func{bool}{wxRenameFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}}
210
211 Renames {\it file1} to {\it file2}, returning TRUE if successful.
212
213 \membersection{::wxRmdir}
214
215 \func{bool}{wxRmdir}{\param{const wxString\& }{dir}, \param{int}{ flags=0}}
216
217 Removes the directory {\it dir}, returning TRUE if successful. Does not work under VMS.
218
219 The {\it flags} parameter is reserved for future use.
220
221 \membersection{::wxSetWorkingDirectory}
222
223 \func{bool}{wxSetWorkingDirectory}{\param{const wxString\& }{dir}}
224
225 Sets the current working directory, returning TRUE if the operation succeeded.
226 Under MS Windows, the current drive is also changed if {\it dir} contains a drive specification.
227
228 \section{String functions}
229
230 \membersection{::copystring}
231
232 \func{char*}{copystring}{\param{const char* }{s}}
233
234 Makes a copy of the string {\it s} using the C++ new operator, so it can be
235 deleted with the {\it delete} operator.
236
237 \membersection{::wxStringMatch}
238
239 \func{bool}{wxStringMatch}{\param{const wxString\& }{s1}, \param{const wxString\& }{s2},\\
240 \param{bool}{ subString = TRUE}, \param{bool}{ exact = FALSE}}
241
242 Returns TRUE if the substring {\it s1} is found within {\it s2},
243 ignoring case if {\it exact} is FALSE. If {\it subString} is FALSE,
244 no substring matching is done.
245
246 \membersection{::wxStringEq}\label{wxstringeq}
247
248 \func{bool}{wxStringEq}{\param{const wxString\& }{s1}, \param{const wxString\& }{s2}}
249
250 A macro defined as:
251
252 \begin{verbatim}
253 #define wxStringEq(s1, s2) (s1 && s2 && (strcmp(s1, s2) == 0))
254 \end{verbatim}
255
256 \membersection{::wxTransferFileToStream}\label{wxtransferfiletostream}
257
258 \func{bool}{wxTransferFileToStream}{\param{const wxString\& }{filename}, \param{ostream\& }{stream}}
259
260 Copies the given file to {\it stream}. Useful when converting an old application to
261 use streams (within the document/view framework, for example).
262
263 Use of this function requires the file wx\_doc.h to be included.
264
265 \membersection{::wxTransferStreamToFile}\label{wxtransferstreamtofile}
266
267 \func{bool}{wxTransferStreamToFile}{\param{istream\& }{stream} \param{const wxString\& }{filename}}
268
269 Copies the given stream to the file {\it filename}. Useful when converting an old application to
270 use streams (within the document/view framework, for example).
271
272 Use of this function requires the file wx\_doc.h to be included.
273
274 \section{Dialog functions}\label{dialogfunctions}
275
276 Below are a number of convenience functions for getting input from the
277 user or displaying messages. Note that in these functions the last three
278 parameters are optional. However, it is recommended to pass a parent frame
279 parameter, or (in MS Windows or Motif) the wrong window frame may be brought to
280 the front when the dialog box is popped up.
281
282 \membersection{::wxFileSelector}\label{wxfileselector}
283
284 \func{wxString}{wxFileSelector}{\param{const wxString\& }{message}, \param{const wxString\& }{default\_path = NULL},\\
285 \param{const wxString\& }{default\_filename = NULL}, \param{const wxString\& }{default\_extension = NULL},\\
286 \param{const wxString\& }{wildcard = ``*.*''}, \param{int }{flags = 0}, \param{wxWindow *}{parent = NULL},\\
287 \param{int}{ x = -1}, \param{int}{ y = -1}}
288
289 Pops up a file selector box. In Windows, this is the common file selector
290 dialog. In X, this is a file selector box with somewhat less functionality.
291 The path and filename are distinct elements of a full file pathname.
292 If path is NULL, the current directory will be used. If filename is NULL,
293 no default filename will be supplied. The wildcard determines what files
294 are displayed in the file selector, and file extension supplies a type
295 extension for the required filename. Flags may be a combination of wxOPEN,
296 wxSAVE, wxOVERWRITE\_PROMPT, wxHIDE\_READONLY, or 0. They are only significant
297 at present in Windows.
298
299 Both the X and Windows versions implement a wildcard filter. Typing a
300 filename containing wildcards (*, ?) in the filename text item, and
301 clicking on Ok, will result in only those files matching the pattern being
302 displayed. In the X version, supplying no default name will result in the
303 wildcard filter being inserted in the filename text item; the filter is
304 ignored if a default name is supplied.
305
306 Under Windows (only), the wildcard may be a specification for multiple
307 types of file with a description for each, such as:
308
309 \begin{verbatim}
310 "BMP files (*.bmp) | *.bmp | GIF files (*.gif) | *.gif"
311 \end{verbatim}
312
313 The application must check for a NULL return value (the user pressed
314 Cancel). For example:
315
316 \begin{verbatim}
317 const wxString\& s = wxFileSelector("Choose a file to open");
318 if (s)
319 {
320 ...
321 }
322 \end{verbatim}
323
324 Remember that the returned pointer is temporary and should be copied
325 if other wxWindows calls will be made before the value is to be used.
326
327 \membersection{::wxGetTextFromUser}\label{wxgettextfromuser}
328
329 \func{wxString}{wxGetTextFromUser}{\param{const wxString\& }{message}, \param{const wxString\& }{caption = ``Input text"},\\
330 \param{const wxString\& }{default\_value = ``"}, \param{wxWindow *}{parent = NULL},\\
331 \param{int}{ x = -1}, \param{int}{ y = -1}, \param{bool}{ centre = TRUE}}
332
333 Pop up a dialog box with title set to {\it caption}, message {\it message}, and a
334 \rtfsp{\it default\_value}. The user may type in text and press OK to return this text,
335 or press Cancel to return NULL.
336
337 If {\it centre} is TRUE, the message text (which may include new line characters)
338 is centred; if FALSE, the message is left-justified.
339
340 \membersection{::wxGetMultipleChoice}\label{wxgetmultiplechoice}
341
342 \func{int}{wxGetMultipleChoice}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
343 \param{int }{nsel}, \param{int *}{selection},
344 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
345 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
346
347 Pops up a dialog box containing a message, OK/Cancel buttons and a multiple-selection
348 listbox. The user may choose one or more item(s) and press OK or Cancel.
349
350 The number of initially selected choices, and array of the selected indices,
351 are passed in; this array will contain the user selections on exit, with
352 the function returning the number of selections. {\it selection} must be
353 as big as the number of choices, in case all are selected.
354
355 If Cancel is pressed, -1 is returned.
356
357 {\it choices} is an array of {\it n} strings for the listbox.
358
359 If {\it centre} is TRUE, the message text (which may include new line characters)
360 is centred; if FALSE, the message is left-justified.
361
362 \membersection{::wxGetSingleChoice}\label{wxgetsinglechoice}
363
364 \func{wxString}{wxGetSingleChoice}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
365 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
366 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
367
368 Pops up a dialog box containing a message, OK/Cancel buttons and a single-selection
369 listbox. The user may choose an item and press OK to return a string or
370 Cancel to return NULL.
371
372 {\it choices} is an array of {\it n} strings for the listbox.
373
374 If {\it centre} is TRUE, the message text (which may include new line characters)
375 is centred; if FALSE, the message is left-justified.
376
377 \membersection{::wxGetSingleChoiceIndex}\label{wxgetsinglechoiceindex}
378
379 \func{int}{wxGetSingleChoiceIndex}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
380 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
381 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
382
383 As {\bf wxGetSingleChoice} but returns the index representing the selected string.
384 If the user pressed cancel, -1 is returned.
385
386 \membersection{::wxGetSingleChoiceData}\label{wxgetsinglechoicedata}
387
388 \func{wxString}{wxGetSingleChoiceData}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
389 \param{const wxString\& }{client\_data[]}, \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1},\\
390 \param{int}{ y = -1}, \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
391
392 As {\bf wxGetSingleChoice} but takes an array of client data pointers
393 corresponding to the strings, and returns one of these pointers.
394
395 \membersection{::wxMessageBox}\label{wxmessagebox}
396
397 \func{int}{wxMessageBox}{\param{const wxString\& }{message}, \param{const wxString\& }{caption = ``Message"}, \param{int}{ style = wxOK \pipe wxCENTRE},\\
398 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1}}
399
400 General purpose message dialog. {\it style} may be a bit list of the
401 following identifiers:
402
403 \begin{twocollist}\itemsep=0pt
404 \twocolitem{wxYES\_NO}{Puts Yes and No buttons on the message box. May be combined with
405 wxCANCEL.}
406 \twocolitem{wxCANCEL}{Puts a Cancel button on the message box. May be combined with
407 wxYES\_NO or wxOK.}
408 \twocolitem{wxOK}{Puts an Ok button on the message box. May be combined with wxCANCEL.}
409 \twocolitem{wxCENTRE}{Centres the text.}
410 \twocolitem{wxICON\_EXCLAMATION}{Under Windows, displays an exclamation mark symbol.}
411 \twocolitem{wxICON\_HAND}{Under Windows, displays a hand symbol.}
412 \twocolitem{wxICON\_QUESTION}{Under Windows, displays a question mark symbol.}
413 \twocolitem{wxICON\_INFORMATION}{Under Windows, displays an information symbol.}
414 \end{twocollist}
415
416 The return value is one of: wxYES, wxNO, wxCANCEL, wxOK.
417
418 For example:
419
420 \begin{verbatim}
421 ...
422 int answer = wxMessageBox("Quit program?", "Confirm",
423 wxYES_NO | wxCANCEL, main_frame);
424 if (answer == wxYES)
425 delete main_frame;
426 ...
427 \end{verbatim}
428
429 {\it message} may contain newline characters, in which case the
430 message will be split into separate lines, to cater for large messages.
431
432 Under Windows, the native MessageBox function is used unless wxCENTRE
433 is specified in the style, in which case a generic function is used.
434 This is because the native MessageBox function cannot centre text.
435 The symbols are not shown when the generic function is used.
436
437 \section{GDI functions}\label{gdifunctions}
438
439 The following are relevant to the GDI (Graphics Device Interface).
440
441 \membersection{::wxColourDisplay}
442
443 \func{bool}{wxColourDisplay}{\void}
444
445 Returns TRUE if the display is colour, FALSE otherwise.
446
447 \membersection{::wxDisplayDepth}
448
449 \func{int}{wxDisplayDepth}{\void}
450
451 Returns the depth of the display (a value of 1 denotes a monochrome display).
452
453 \membersection{::wxMakeMetafilePlaceable}\label{wxmakemetafileplaceable}
454
455 \func{bool}{wxMakeMetafilePlaceable}{\param{const wxString\& }{filename}, \param{int }{minX}, \param{int }{minY},
456 \param{int }{maxX}, \param{int }{maxY}, \param{float }{scale=1.0}}
457
458 Given a filename for an existing, valid metafile (as constructed using \helpref{wxMetafileDC}{wxmetafiledc})
459 makes it into a placeable metafile by prepending a header containing the given
460 bounding box. The bounding box may be obtained from a device context after drawing
461 into it, using the functions wxDC::MinX, wxDC::MinY, wxDC::MaxX and wxDC::MaxY.
462
463 In addition to adding the placeable metafile header, this function adds
464 the equivalent of the following code to the start of the metafile data:
465
466 \begin{verbatim}
467 SetMapMode(dc, MM_ANISOTROPIC);
468 SetWindowOrg(dc, minX, minY);
469 SetWindowExt(dc, maxX - minX, maxY - minY);
470 \end{verbatim}
471
472 This simulates the wxMM\_TEXT mapping mode, which wxWindows assumes.
473
474 Placeable metafiles may be imported by many Windows applications, and can be
475 used in RTF (Rich Text Format) files.
476
477 {\it scale} allows the specification of scale for the metafile.
478
479 This function is only available under Windows.
480
481 \membersection{::wxSetCursor}\label{wxsetcursor}
482
483 \func{void}{wxSetCursor}{\param{wxCursor *}{cursor}}
484
485 Globally sets the cursor; only has an effect in MS Windows.
486 See also \helpref{wxCursor}{wxcursor}, \helpref{wxWindow::SetCursor}{wxwindowsetcursor}.
487
488 \section{Printer settings}\label{printersettings}
489
490 The following functions are used to control PostScript printing. Under
491 Windows, PostScript output can only be sent to a file.
492
493 \membersection{::wxGetPrinterCommand}
494
495 \func{wxString}{wxGetPrinterCommand}{\void}
496
497 Gets the printer command used to print a file. The default is {\tt lpr}.
498
499 \membersection{::wxGetPrinterFile}
500
501 \func{wxString}{wxGetPrinterFile}{\void}
502
503 Gets the PostScript output filename.
504
505 \membersection{::wxGetPrinterMode}
506
507 \func{int}{wxGetPrinterMode}{\void}
508
509 Gets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
510 The default is PS\_PREVIEW.
511
512 \membersection{::wxGetPrinterOptions}
513
514 \func{wxString}{wxGetPrinterOptions}{\void}
515
516 Gets the additional options for the print command (e.g. specific printer). The default is nothing.
517
518 \membersection{::wxGetPrinterOrientation}
519
520 \func{int}{wxGetPrinterOrientation}{\void}
521
522 Gets the orientation (PS\_PORTRAIT or PS\_LANDSCAPE). The default is PS\_PORTRAIT.
523
524 \membersection{::wxGetPrinterPreviewCommand}
525
526 \func{wxString}{wxGetPrinterPreviewCommand}{\void}
527
528 Gets the command used to view a PostScript file. The default depends on the platform.
529
530 \membersection{::wxGetPrinterScaling}
531
532 \func{void}{wxGetPrinterScaling}{\param{float *}{x}, \param{float *}{y}}
533
534 Gets the scaling factor for PostScript output. The default is 1.0, 1.0.
535
536 \membersection{::wxGetPrinterTranslation}
537
538 \func{void}{wxGetPrinterTranslation}{\param{float *}{x}, \param{float *}{y}}
539
540 Gets the translation (from the top left corner) for PostScript output. The default is 0.0, 0.0.
541
542 \membersection{::wxSetPrinterCommand}
543
544 \func{void}{wxSetPrinterCommand}{\param{const wxString\& }{command}}
545
546 Sets the printer command used to print a file. The default is {\tt lpr}.
547
548 \membersection{::wxSetPrinterFile}
549
550 \func{void}{wxSetPrinterFile}{\param{const wxString\& }{filename}}
551
552 Sets the PostScript output filename.
553
554 \membersection{::wxSetPrinterMode}
555
556 \func{void}{wxSetPrinterMode}{\param{int }{mode}}
557
558 Sets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
559 The default is PS\_PREVIEW.
560
561 \membersection{::wxSetPrinterOptions}
562
563 \func{void}{wxSetPrinterOptions}{\param{const wxString\& }{options}}
564
565 Sets the additional options for the print command (e.g. specific printer). The default is nothing.
566
567 \membersection{::wxSetPrinterOrientation}
568
569 \func{void}{wxSetPrinterOrientation}{\param{int}{ orientation}}
570
571 Sets the orientation (PS\_PORTRAIT or PS\_LANDSCAPE). The default is PS\_PORTRAIT.
572
573 \membersection{::wxSetPrinterPreviewCommand}
574
575 \func{void}{wxSetPrinterPreviewCommand}{\param{const wxString\& }{command}}
576
577 Sets the command used to view a PostScript file. The default depends on the platform.
578
579 \membersection{::wxSetPrinterScaling}
580
581 \func{void}{wxSetPrinterScaling}{\param{float }{x}, \param{float }{y}}
582
583 Sets the scaling factor for PostScript output. The default is 1.0, 1.0.
584
585 \membersection{::wxSetPrinterTranslation}
586
587 \func{void}{wxSetPrinterTranslation}{\param{float }{x}, \param{float }{y}}
588
589 Sets the translation (from the top left corner) for PostScript output. The default is 0.0, 0.0.
590
591 \section{Clipboard functions}\label{clipsboard}
592
593 These clipboard functions are implemented for Windows only.
594
595 \membersection{::wxClipboardOpen}
596
597 \func{bool}{wxClipboardOpen}{\void}
598
599 Returns TRUE if this application has already opened the clipboard.
600
601 \membersection{::wxCloseClipboard}
602
603 \func{bool}{wxCloseClipboard}{\void}
604
605 Closes the clipboard to allow other applications to use it.
606
607 \membersection{::wxEmptyClipboard}
608
609 \func{bool}{wxEmptyClipboard}{\void}
610
611 Empties the clipboard.
612
613 \membersection{::wxEnumClipboardFormats}
614
615 \func{int}{wxEnumClipboardFormats}{\param{int}{dataFormat}}
616
617 Enumerates the formats found in a list of available formats that belong
618 to the clipboard. Each call to this function specifies a known
619 available format; the function returns the format that appears next in
620 the list.
621
622 {\it dataFormat} specifies a known format. If this parameter is zero,
623 the function returns the first format in the list.
624
625 The return value specifies the next known clipboard data format if the
626 function is successful. It is zero if the {\it dataFormat} parameter specifies
627 the last format in the list of available formats, or if the clipboard
628 is not open.
629
630 Before it enumerates the formats function, an application must open the clipboard by using the
631 wxOpenClipboard function.
632
633 \membersection{::wxGetClipboardData}
634
635 \func{wxObject *}{wxGetClipboardData}{\param{int}{dataFormat}}
636
637 Gets data from the clipboard.
638
639 {\it dataFormat} may be one of:
640
641 \begin{itemize}\itemsep=0pt
642 \item wxCF\_TEXT or wxCF\_OEMTEXT: returns a pointer to new memory containing a null-terminated text string.
643 \item wxCF\_BITMAP: returns a new wxBitmap.
644 \end{itemize}
645
646 The clipboard must have previously been opened for this call to succeed.
647
648 \membersection{::wxGetClipboardFormatName}
649
650 \func{bool}{wxGetClipboardFormatName}{\param{int}{dataFormat}, \param{const wxString\& }{formatName}, \param{int}{maxCount}}
651
652 Gets the name of a registered clipboard format, and puts it into the buffer {\it formatName} which is of maximum
653 length {\it maxCount}. {\it dataFormat} must not specify a predefined clipboard format.
654
655 \membersection{::wxIsClipboardFormatAvailable}
656
657 \func{bool}{wxIsClipboardFormatAvailable}{\param{int}{dataFormat}}
658
659 Returns TRUE if the given data format is available on the clipboard.
660
661 \membersection{::wxOpenClipboard}
662
663 \func{bool}{wxOpenClipboard}{\void}
664
665 Opens the clipboard for passing data to it or getting data from it.
666
667 \membersection{::wxRegisterClipboardFormat}
668
669 \func{int}{wxRegisterClipboardFormat}{\param{const wxString\& }{formatName}}
670
671 Registers the clipboard data format name and returns an identifier.
672
673 \membersection{::wxSetClipboardData}
674
675 \func{bool}{wxSetClipboardData}{\param{int}{dataFormat}, \param{wxObject *}{data}, \param{int}{width}, \param{int}{height}}
676
677 Passes data to the clipboard.
678
679 {\it dataFormat} may be one of:
680
681 \begin{itemize}\itemsep=0pt
682 \item wxCF\_TEXT or wxCF\_OEMTEXT: {\it data} is a null-terminated text string.
683 \item wxCF\_BITMAP: {\it data} is a wxBitmap.
684 \item wxCF\_DIB: {\it data} is a wxBitmap. The bitmap is converted to a DIB (device independent bitmap).
685 \item wxCF\_METAFILE: {\it data} is a wxMetafile. {\it width} and {\it height} are used to give recommended dimensions.
686 \end{itemize}
687
688 The clipboard must have previously been opened for this call to succeed.
689
690 \section{Miscellaneous functions}\label{miscellany}
691
692 \membersection{::NewId}
693
694 \func{long}{NewId}{\void}
695
696 Generates an integer identifier unique to this run of the program.
697
698 \membersection{::RegisterId}
699
700 \func{void}{RegisterId}{\param{long}{ id}}
701
702 Ensures that ids subsequently generated by {\bf NewId} do not clash with
703 the given {\bf id}.
704
705 \membersection{::wxBeginBusyCursor}\label{wxbeginbusycursor}
706
707 \func{void}{wxBeginBusyCursor}{\param{wxCursor *}{cursor = wxHOURGLASS\_CURSOR}}
708
709 Changes the cursor to the given cursor for all windows in the application.
710 Use \helpref{wxEndBusyCursor}{wxendbusycursor} to revert the cursor back
711 to its previous state. These two calls can be nested, and a counter
712 ensures that only the outer calls take effect.
713
714 See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
715
716 \membersection{::wxBell}
717
718 \func{void}{wxBell}{\void}
719
720 Ring the system bell.
721
722 \membersection{::wxCleanUp}\label{wxcleanup}
723
724 \func{void}{wxCleanUp}{\void}
725
726 Normally, wxWindows will call this cleanup function for you. However, if
727 you call \helpref{wxEntry}{wxentry} in order to initialize wxWindows
728 manually, then you should also call wxCleanUp before terminating wxWindows,
729 if wxWindows does not get a chance to do it.
730
731 \membersection{::wxCreateDynamicObject}\label{wxcreatedynamicobject}
732
733 \func{wxObject *}{wxCreateDynamicObject}{\param{const wxString\& }{className}}
734
735 Creates and returns an object of the given class, if the class has been
736 registered with the dynamic class system using DECLARE... and IMPLEMENT... macros.
737
738 \membersection{::wxDDECleanUp}\label{wxddecleanup}
739
740 \func{void}{wxDDECleanUp}{\void}
741
742 Called when wxWindows exits, to clean up the DDE system. This no longer needs to be
743 called by the application.
744
745 See also helpref{wxDDEInitialize}{wxddeinitialize}.
746
747 \membersection{::wxDDEInitialize}\label{wxddeinitialize}
748
749 \func{void}{wxDDEInitialize}{\void}
750
751 Initializes the DDE system. May be called multiple times without harm.
752
753 This no longer needs to be called by the application: it will be called
754 by wxWindows if necessary.
755
756 See also \helpref{wxDDEServer}{wxddeserver}, \helpref{wxDDEClient}{wxddeclient}, \helpref{wxDDEConnection}{wxddeconnection},
757 \helpref{wxDDECleanUp}{wxddecleanup}.
758
759 \membersection{::wxDebugMsg}\label{wxdebugmsg}
760
761 \func{void}{wxDebugMsg}{\param{const wxString\& }{fmt}, \param{...}{}}
762
763 Display a debugging message; under Windows, this will appear on the
764 debugger command window, and under Unix, it will be written to standard
765 error.
766
767 The syntax is identical to {\bf printf}: pass a format string and a
768 variable list of arguments.
769
770 Note that under Windows, you can see the debugging messages without a
771 debugger if you have the DBWIN debug log application that comes with
772 Microsoft C++.
773
774 {\bf Tip:} under Windows, if your application crashes before the
775 message appears in the debugging window, put a wxYield call after
776 each wxDebugMsg call. wxDebugMsg seems to be broken under WIN32s
777 (at least for Watcom C++): preformat your messages and use OutputDebugString
778 instead.
779
780 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
781
782 \membersection{::wxDisplaySize}
783
784 \func{void}{wxDisplaySize}{\param{int *}{width}, \param{int *}{height}}
785
786 Gets the physical size of the display in pixels.
787
788 \membersection{::wxEntry}\label{wxentry}
789
790 This initializes wxWindows in a platform-dependent way. Use this if you
791 are not using the default wxWindows entry code (e.g. main or WinMain). For example,
792 you can initialize wxWindows from an Microsoft Foundation Classes application using
793 this function. See also \helpref{wxCleanUp}{wxcleanup}.
794
795 \func{void}{wxEntry}{\param{HANDLE}{ hInstance}, \param{HANDLE}{ hPrevInstance},
796 \param{const wxString\& }{commandLine}, \param{int}{ cmdShow}, \param{bool}{ enterLoop = TRUE}}
797
798 wxWindows initialization under Windows (non-DLL). If {\it enterLoop} is FALSE, the
799 function will return immediately after calling wxApp::OnInit. Otherwise, the wxWindows
800 message loop will be entered.
801
802 \func{void}{wxEntry}{\param{HANDLE}{ hInstance}, \param{HANDLE}{ hPrevInstance},
803 \param{WORD}{ wDataSegment}, \param{WORD}{ wHeapSize}, \param{const wxString\& }{ commandLine}}
804
805 wxWindows initialization under Windows (for applications constructed as a DLL).
806
807 \func{int}{wxEntry}{\param{int}{ argc}, \param{const wxString\& *}{argv}}
808
809 wxWindows initialization under Unix.
810
811 \membersection{::wxError}\label{wxerror}
812
813 \func{void}{wxError}{\param{const wxString\& }{msg}, \param{const wxString\& }{title = "wxWindows Internal Error"}}
814
815 Displays {\it msg} and continues. This writes to standard error under
816 Unix, and pops up a message box under Windows. Used for internal
817 wxWindows errors. See also \helpref{wxFatalError}{wxfatalerror}.
818
819 \membersection{::wxEndBusyCursor}\label{wxendbusycursor}
820
821 \func{void}{wxEndBusyCursor}{\void}
822
823 Changes the cursor back to the original cursor, for all windows in the application.
824 Use with \helpref{wxBeginBusyCursor}{wxbeginbusycursor}.
825
826 See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
827
828 \membersection{::wxExecute}\label{wxexecute}
829
830 \func{long}{wxExecute}{\param{const wxString\& }{command}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
831
832 \func{long}{wxExecute}{\param{char **}{argv}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
833
834 Executes another program in Unix or Windows.
835
836 The first form takes a command string, such as {\tt "emacs file.txt"}.
837
838 The second form takes an array of values: a command, any number of
839 arguments, terminated by NULL.
840
841 If {\it sync} is FALSE (the default), flow of control immediately returns.
842 If TRUE, the current application waits until the other program has terminated.
843
844 If execution is asynchronous, the return value is the process id,
845 otherwise it is a status value. A zero value indicates that the command could not
846 be executed.
847
848 If callback isn't NULL and if execution is asynchronous,
849 \helpref{wxProcess::OnTerminate}{wxprocessonterminate} will be called when
850 the process finishes.
851
852 See also \helpref{wxShell}{wxshell}, \helpref{wxProcess}{wxprocess}.
853
854 \membersection{::wxExit}\label{wxexit}
855
856 \func{void}{wxExit}{\void}
857
858 Exits application after calling \helpref{wxApp::OnExit}{wxapponexit}.
859 Should only be used in an emergency: normally the top-level frame
860 should be deleted (after deleting all other frames) to terminate the
861 application. See \helpref{wxWindow::OnCloseWindow}{wxwindowonclosewindow} and \helpref{wxApp}{wxapp}.
862
863 \membersection{::wxFatalError}\label{wxfatalerror}
864
865 \func{void}{wxFatalError}{\param{const wxString\& }{msg}, \param{const wxString\& }{title = "wxWindows Fatal Error"}}
866
867 Displays {\it msg} and exits. This writes to standard error under Unix,
868 and pops up a message box under Windows. Used for fatal internal
869 wxWindows errors. See also \helpref{wxError}{wxerror}.
870
871 \membersection{::wxFindMenuItemId}
872
873 \func{int}{wxFindMenuItemId}{\param{wxFrame *}{frame}, \param{const wxString\& }{menuString}, \param{const wxString\& }{itemString}}
874
875 Find a menu item identifier associated with the given frame's menu bar.
876
877 \membersection{::wxFindWindowByLabel}
878
879 \func{wxWindow *}{wxFindWindowByLabel}{\param{const wxString\& }{label}, \param{wxWindow *}{parent=NULL}}
880
881 Find a window by its label. Depending on the type of window, the label may be a window title
882 or panel item label. If {\it parent} is NULL, the search will start from all top-level
883 frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
884 The search is recursive in both cases.
885
886 \membersection{::wxFindWindowByName}\label{wxfindwindowbyname}
887
888 \func{wxWindow *}{wxFindWindowByName}{\param{const wxString\& }{name}, \param{wxWindow *}{parent=NULL}}
889
890 Find a window by its name (as given in a window constructor or {\bf Create} function call).
891 If {\it parent} is NULL, the search will start from all top-level
892 frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
893 The search is recursive in both cases.
894
895 If no such named window is found, {\bf wxFindWindowByLabel} is called.
896
897 \membersection{::wxGetActiveWindow}\label{wxgetactivewindow}
898
899 \func{wxWindow *}{wxGetActiveWindow}{\void}
900
901 Gets the currently active window (Windows only).
902
903 \membersection{::wxGetDisplayName}\label{wxgetdisplayname}
904
905 \func{wxString}{wxGetDisplayName}{\void}
906
907 Under X only, returns the current display name. See also \helpref{wxSetDisplayName}{wxsetdisplayname}.
908
909 \membersection{::wxGetHomeDir}
910
911 \func{wxString}{wxGetHomeDir}{\param{const wxString\& }{buf}}
912
913 Fills the buffer with a string representing the user's home directory (Unix only).
914
915 \membersection{::wxGetHostName}
916
917 \func{bool}{wxGetHostName}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
918
919 Copies the host name of the machine the program is running on into the
920 buffer {\it buf}, of maximum size {\it bufSize}, returning TRUE if
921 successful. Under Unix, this will return a machine name. Under Windows,
922 this returns ``windows''.
923
924 \membersection{::wxGetElapsedTime}\label{wxgetelapsedtime}
925
926 \func{long}{wxGetElapsedTime}{\param{bool}{ resetTimer = TRUE}}
927
928 Gets the time in milliseconds since the last \helpref{::wxStartTimer}{wxstarttimer}.
929
930 If {\it resetTimer} is TRUE (the default), the timer is reset to zero
931 by this call.
932
933 See also \helpref{wxTimer}{wxtimer}.
934
935 \membersection{::wxGetFreeMemory}\label{wxgetfreememory}
936
937 \func{long}{wxGetFreeMemory}{\void}
938
939 Returns the amount of free memory in Kbytes under environments which
940 support it, and -1 if not supported. Currently, returns a positive value
941 under Windows, and -1 under Unix.
942
943 \membersection{::wxGetMousePosition}
944
945 \func{void}{wxGetMousePosition}{\param{int* }{x}, \param{int* }{y}}
946
947 Returns the mouse position in screen coordinates.
948
949 \membersection{::wxGetOsVersion}
950
951 \func{int}{wxGetOsVersion}{\param{int *}{major = NULL}, \param{int *}{minor = NULL}}
952
953 Gets operating system version information.
954
955 \begin{twocollist}\itemsep=0pt
956 \twocolitemruled{Platform}{Return tyes}
957 \twocolitem{Macintosh}{Return value is wxMACINTOSH.}
958 \twocolitem{GTK}{Return value is wxGTK, {\it major} is 1, {\it minor} is 0. (for GTK 1.0.X) }
959 \twocolitem{Motif}{Return value is wxMOTIF\_X, {\it major} is X version, {\it minor} is X revision.}
960 \twocolitem{OS/2}{Return value is wxOS2\_PM.}
961 \twocolitem{Windows 3.1}{Return value is wxWINDOWS, {\it major} is 3, {\it minor} is 1.}
962 \twocolitem{Windows NT}{Return value is wxWINDOWS\_NT, {\it major} is 3, {\it minor} is 1.}
963 \twocolitem{Windows 95}{Return value is wxWIN95, {\it major} is 3, {\it minor} is 1.}
964 \twocolitem{Win32s (Windows 3.1)}{Return value is wxWIN32S, {\it major} is 3, {\it minor} is 1.}
965 \twocolitem{Watcom C++ 386 supervisor mode (Windows 3.1)}{Return value is wxWIN386, {\it major} is 3, {\it minor} is 1.}
966 \end{twocollist}
967
968 \membersection{::wxGetResource}\label{wxgetresource}
969
970 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
971 \param{const wxString\& *}{value}, \param{const wxString\& }{file = NULL}}
972
973 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
974 \param{float *}{value}, \param{const wxString\& }{file = NULL}}
975
976 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
977 \param{long *}{value}, \param{const wxString\& }{file = NULL}}
978
979 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
980 \param{int *}{value}, \param{const wxString\& }{file = NULL}}
981
982 Gets a resource value from the resource database (for example, WIN.INI, or
983 .Xdefaults). If {\it file} is NULL, WIN.INI or .Xdefaults is used,
984 otherwise the specified file is used.
985
986 Under X, if an application class (wxApp::GetClassName) has been defined,
987 it is appended to the string /usr/lib/X11/app-defaults/ to try to find
988 an applications default file when merging all resource databases.
989
990 The reason for passing the result in an argument is that it
991 can be convenient to define a default value, which gets overridden
992 if the value exists in the resource file. It saves a separate
993 test for that resource's existence, and it also allows
994 the overloading of the function for different types.
995
996 See also \helpref{wxWriteResource}{wxwriteresource}, \helpref{wxConfigBase}{wxconfigbase}.
997
998 \membersection{::wxGetUserId}
999
1000 \func{bool}{wxGetUserId}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1001
1002 Copies the user's login identity (such as ``jacs'') into the buffer {\it
1003 buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1004 Under Windows, this returns ``user''.
1005
1006 \membersection{::wxGetUserName}
1007
1008 \func{bool}{wxGetUserName}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1009
1010 Copies the user's name (such as ``Julian Smart'') into the buffer {\it
1011 buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1012 Under Windows, this returns ``unknown''.
1013
1014 \membersection{::wxKill}\label{wxkill}
1015
1016 \func{int}{wxKill}{\param{long}{ pid}, \param{int}{ sig}}
1017
1018 Under Unix (the only supported platform), equivalent to the Unix kill function.
1019 Returns 0 on success, -1 on failure.
1020
1021 Tip: sending a signal of 0 to a process returns -1 if the process does not exist.
1022 It does not raise a signal in the receiving process.
1023
1024 \membersection{::wxInitClipboard}\label{wxinitclipboard}
1025
1026 \func{void}{wxInitClipboard}{\void}
1027
1028 Initializes the generic clipboard system by creating an instance of
1029 the class \helpref{wxClipboard}{wxclipboard}.
1030
1031 \membersection{::wxIsBusy}\label{wxisbusy}
1032
1033 \func{bool}{wxIsBusy}{\void}
1034
1035 Returns TRUE if between two \helpref{wxBeginBusyCursor}{wxbeginbusycursor} and\rtfsp
1036 \helpref{wxEndBusyCursor}{wxendbusycursor} calls.
1037
1038 See also \helpref{wxBusyCursor}{wxbusycursor}.
1039
1040 \membersection{::wxLoadUserResource}\label{wxloaduserresource}
1041
1042 \func{wxString}{wxLoadUserResource}{\param{const wxString\& }{resourceName}, \param{const wxString\& }{resourceType=``TEXT"}}
1043
1044 Loads a user-defined Windows resource as a string. If the resource is found, the function creates
1045 a new character array and copies the data into it. A pointer to this data is returned. If unsuccessful, NULL is returned.
1046
1047 The resource must be defined in the {\tt .rc} file using the following syntax:
1048
1049 \begin{verbatim}
1050 myResource TEXT file.ext
1051 \end{verbatim}
1052
1053 where {\tt file.ext} is a file that the resource compiler can find.
1054
1055 One use of this is to store {\tt .wxr} files instead of including the data in the C++ file; some compilers
1056 cannot cope with the long strings in a {\tt .wxr} file. The resource data can then be parsed
1057 using \helpref{wxResourceParseString}{wxresourceparsestring}.
1058
1059 This function is available under Windows only.
1060
1061 \membersection{::wxNow}\label{wxnow}
1062
1063 \func{wxString}{wxNow}{\void}
1064
1065 Returns a string representing the current date and time.
1066
1067 \membersection{::wxPostDelete}\label{wxpostdelete}
1068
1069 \func{void}{wxPostDelete}{\param{wxObject *}{object}}
1070
1071 Under X, tells the system to delete the specified object when
1072 all other events have been processed. In some environments, it is
1073 necessary to use this instead of deleting a frame directly with the
1074 delete operator, because X will still send events to the window.
1075
1076 Now obsolete: use \helpref{wxWindow::Close}{wxwindowclose} instead.
1077
1078 \membersection{::wxSetDisplayName}\label{wxsetdisplayname}
1079
1080 \func{void}{wxSetDisplayName}{\param{const wxString\& }{displayName}}
1081
1082 Under X only, sets the current display name. This is the X host and display name such
1083 as ``colonsay:0.0", and the function indicates which display should be used for creating
1084 windows from this point on. Setting the display within an application allows multiple
1085 displays to be used.
1086
1087 See also \helpref{wxGetDisplayName}{wxgetdisplayname}.
1088
1089 \membersection{::wxShell}\label{wxshell}
1090
1091 \func{bool}{wxShell}{\param{const wxString\& }{command = NULL}}
1092
1093 Executes a command in an interactive shell window. If no command is
1094 specified, then just the shell is spawned.
1095
1096 See also \helpref{wxExecute}{wxexecute}.
1097
1098 \membersection{::wxSleep}\label{wxsleep}
1099
1100 \func{void}{wxSleep}{\param{int}{ secs}}
1101
1102 Sleeps for the specified number of seconds.
1103
1104 \membersection{::wxStripMenuCodes}
1105
1106 \func{wxString}{wxStripMenuCodes}{\param{const wxString\& }{in}}
1107
1108 \func{void}{wxStripMenuCodes}{\param{char* }{in}, \param{char* }{out}}
1109
1110 Strips any menu codes from {\it in} and places the result
1111 in {\it out} (or returns the new string, in the first form).
1112
1113 Menu codes include \& (mark the next character with an underline
1114 as a keyboard shortkey in Windows and Motif) and $\backslash$t (tab in Windows).
1115
1116 \membersection{::wxStartTimer}\label{wxstarttimer}
1117
1118 \func{void}{wxStartTimer}{\void}
1119
1120 Starts a stopwatch; use \helpref{::wxGetElapsedTime}{wxgetelapsedtime} to get the elapsed time.
1121
1122 See also \helpref{wxTimer}{wxtimer}.
1123
1124 \membersection{::wxToLower}\label{wxtolower}
1125
1126 \func{char}{wxToLower}{\param{char }{ch}}
1127
1128 Converts the character to lower case. This is implemented as a macro for efficiency.
1129
1130 \membersection{::wxToUpper}\label{wxtoupper}
1131
1132 \func{char}{wxToUpper}{\param{char }{ch}}
1133
1134 Converts the character to upper case. This is implemented as a macro for efficiency.
1135
1136 \membersection{::wxTrace}\label{wxtrace}
1137
1138 \func{void}{wxTrace}{\param{const wxString\& }{fmt}, \param{...}{}}
1139
1140 Takes printf-style variable argument syntax. Output
1141 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1142
1143 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1144
1145 \membersection{::wxTraceLevel}\label{wxtracelevel}
1146
1147 \func{void}{wxTraceLevel}{\param{int}{ level}, \param{const wxString\& }{fmt}, \param{...}{}}
1148
1149 Takes printf-style variable argument syntax. Output
1150 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1151 The first argument should be the level at which this information is appropriate.
1152 It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
1153 this value.
1154
1155 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1156
1157 \membersection{::wxWriteResource}\label{wxwriteresource}
1158
1159 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1160 \param{const wxString\& }{value}, \param{const wxString\& }{file = NULL}}
1161
1162 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1163 \param{float }{value}, \param{const wxString\& }{file = NULL}}
1164
1165 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1166 \param{long }{value}, \param{const wxString\& }{file = NULL}}
1167
1168 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1169 \param{int }{value}, \param{const wxString\& }{file = NULL}}
1170
1171 Writes a resource value into the resource database (for example, WIN.INI, or
1172 .Xdefaults). If {\it file} is NULL, WIN.INI or .Xdefaults is used,
1173 otherwise the specified file is used.
1174
1175 Under X, the resource databases are cached until the internal function
1176 \rtfsp{\bf wxFlushResources} is called automatically on exit, when
1177 all updated resource databases are written to their files.
1178
1179 Note that it is considered bad manners to write to the .Xdefaults
1180 file under Unix, although the WIN.INI file is fair game under Windows.
1181
1182 See also \helpref{wxGetResource}{wxgetresource}, \helpref{wxConfigBase}{wxconfigbase}.
1183
1184 \membersection{::wxYield}
1185
1186 \func{bool}{wxYield}{\void}
1187
1188 Yields control to pending messages in the windowing system. This can be useful, for example, when a
1189 time-consuming process writes to a text window. Without an occasional
1190 yield, the text window will not be updated properly, and (since Windows
1191 multitasking is cooperative) other processes will not respond.
1192
1193 Caution should be exercised, however, since yielding may allow the
1194 user to perform actions which are not compatible with the current task.
1195 Disabling menu items or whole menus during processing can avoid unwanted
1196 reentrance of code.
1197
1198 \section{Macros}\label{macros}
1199
1200 These macros are defined in wxWindows.
1201
1202 \membersection{CLASSINFO}\label{classinfo}
1203
1204 \func{wxClassInfo *}{CLASSINFO}{className}
1205
1206 Returns a pointer to the wxClassInfo object associated with this class.
1207
1208 \membersection{WXDEBUG\_NEW}\label{debugnew}
1209
1210 \func{}{WXDEBUG\_NEW}{arg}
1211
1212 This is defined in debug mode to be call the redefined new operator
1213 with filename and line number arguments. The definition is:
1214
1215 \begin{verbatim}
1216 #define WXDEBUG_NEW new(__FILE__,__LINE__)
1217 \end{verbatim}
1218
1219 In non-debug mode, this is defined as the normal new operator.
1220
1221 \membersection{DECLARE\_ABSTRACT\_CLASS}
1222
1223 \func{}{DECLARE\_ABSTRACT\_CLASS}{className}
1224
1225 Used inside a class declaration to declare that the class should be
1226 made known to the class hierarchy, but objects of this class cannot be created
1227 dynamically. The same as DECLARE\_CLASS.
1228
1229 Example:
1230
1231 \begin{verbatim}
1232 class wxCommand: public wxObject
1233 {
1234 DECLARE_ABSTRACT_CLASS(wxCommand)
1235
1236 private:
1237 ...
1238 public:
1239 ...
1240 };
1241 \end{verbatim}
1242
1243 \membersection{DECLARE\_APP}\label{declareapp}
1244
1245 \func{}{DECLARE\_APP}{className}
1246
1247 This is used in headers to create a forward declaration of the wxGetApp function implemented
1248 by IMPLEMENT\_APP. It creates the declaration {\tt className\& wxGetApp(void)}.
1249
1250 Example:
1251
1252 \begin{verbatim}
1253 DECLARE_APP(MyApp)
1254 \end{verbatim}
1255
1256 \membersection{DECLARE\_CLASS}
1257
1258 \func{}{DECLARE\_CLASS}{className}
1259
1260 Used inside a class declaration to declare that the class should be
1261 made known to the class hierarchy, but objects of this class cannot be created
1262 dynamically. The same as DECLARE\_ABSTRACT\_CLASS.
1263
1264 \membersection{DECLARE\_DYNAMIC\_CLASS}
1265
1266 \func{}{DECLARE\_DYNAMIC\_CLASS}{className}
1267
1268 Used inside a class declaration to declare that the objects of this class should be dynamically
1269 createable from run-time type information.
1270
1271 Example:
1272
1273 \begin{verbatim}
1274 class wxFrame: public wxWindow
1275 {
1276 DECLARE_DYNAMIC_CLASS(wxFrame)
1277
1278 private:
1279 const wxString\& frameTitle;
1280 public:
1281 ...
1282 };
1283 \end{verbatim}
1284
1285 \membersection{IMPLEMENT\_ABSTRACT\_CLASS}
1286
1287 \func{}{IMPLEMENT\_ABSTRACT\_CLASS}{className, baseClassName}
1288
1289 Used in a C++ implementation file to complete the declaration of
1290 a class that has run-time type information. The same as IMPLEMENT\_CLASS.
1291
1292 Example:
1293
1294 \begin{verbatim}
1295 IMPLEMENT_ABSTRACT_CLASS(wxCommand, wxObject)
1296
1297 wxCommand::wxCommand(void)
1298 {
1299 ...
1300 }
1301 \end{verbatim}
1302
1303 \membersection{IMPLEMENT\_ABSTRACT\_CLASS2}
1304
1305 \func{}{IMPLEMENT\_ABSTRACT\_CLASS2}{className, baseClassName1, baseClassName2}
1306
1307 Used in a C++ implementation file to complete the declaration of
1308 a class that has run-time type information and two base classes. The same as IMPLEMENT\_CLASS2.
1309
1310 \membersection{IMPLEMENT\_APP}\label{implementapp}
1311
1312 \func{}{IMPLEMENT\_APP}{className}
1313
1314 This is used in the application class implementation file to make the application class known to
1315 wxWindows for dynamic construction. You use this instead of
1316
1317 Old form:
1318
1319 \begin{verbatim}
1320 MyApp myApp;
1321 \end{verbatim}
1322
1323 New form:
1324
1325 \begin{verbatim}
1326 IMPLEMENT_APP(MyApp)
1327 \end{verbatim}
1328
1329 See also \helpref{DECLARE\_APP}{declareapp}.
1330
1331 \membersection{IMPLEMENT\_CLASS}
1332
1333 \func{}{IMPLEMENT\_CLASS}{className, baseClassName}
1334
1335 Used in a C++ implementation file to complete the declaration of
1336 a class that has run-time type information. The same as IMPLEMENT\_ABSTRACT\_CLASS.
1337
1338 \membersection{IMPLEMENT\_CLASS2}
1339
1340 \func{}{IMPLEMENT\_CLASS2}{className, baseClassName1, baseClassName2}
1341
1342 Used in a C++ implementation file to complete the declaration of a
1343 class that has run-time type information and two base classes. The
1344 same as IMPLEMENT\_ABSTRACT\_CLASS2.
1345
1346 \membersection{IMPLEMENT\_DYNAMIC\_CLASS}
1347
1348 \func{}{IMPLEMENT\_DYNAMIC\_CLASS}{className, baseClassName}
1349
1350 Used in a C++ implementation file to complete the declaration of
1351 a class that has run-time type information, and whose instances
1352 can be created dynamically.
1353
1354 Example:
1355
1356 \begin{verbatim}
1357 IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
1358
1359 wxFrame::wxFrame(void)
1360 {
1361 ...
1362 }
1363 \end{verbatim}
1364
1365 \membersection{IMPLEMENT\_DYNAMIC\_CLASS2}
1366
1367 \func{}{IMPLEMENT\_DYNAMIC\_CLASS2}{className, baseClassName1, baseClassName2}
1368
1369 Used in a C++ implementation file to complete the declaration of
1370 a class that has run-time type information, and whose instances
1371 can be created dynamically. Use this for classes derived from two
1372 base classes.
1373
1374 \membersection{WXTRACE}\label{trace}
1375
1376 \func{}{WXTRACE}{formatString, ...}
1377
1378 Calls wxTrace with printf-style variable argument syntax. Output
1379 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1380
1381 This macro is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1382
1383 \membersection{WXTRACELEVEL}\label{tracelevel}
1384
1385 \func{}{WXTRACELEVEL}{level, formatString, ...}
1386
1387 Calls wxTraceLevel with printf-style variable argument syntax. Output
1388 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1389 The first argument should be the level at which this information is appropriate.
1390 It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
1391 this value.
1392
1393 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1394
1395 \section{wxWindows resource functions}\label{resourcefuncs}
1396
1397 \overview{wxWindows resource system}{resourceformats}
1398
1399 This section details functions for manipulating wxWindows (.WXR) resource
1400 files and loading user interface elements from resources.
1401
1402 \normalbox{Please note that this use of the word `resource' is different from that used when talking
1403 about initialisation file resource reading and writing, using such functions
1404 as wxWriteResource and wxGetResource. It's just an unfortunate clash of terminology.}
1405
1406 \helponly{For an overview of the wxWindows resource mechanism, see \helpref{the wxWindows resource system}{resourceformats}.}
1407
1408 See also \helpref{wxWindow::LoadFromResource}{wxwindowloadfromresource} for
1409 loading from resource data.
1410
1411 \membersection{::wxResourceAddIdentifier}\label{wxresourceaddidentifier}
1412
1413 \func{bool}{wxResourceAddIdentifier}{\param{const wxString\& }{name}, \param{int }{value}}
1414
1415 Used for associating a name with an integer identifier (equivalent to dynamically\rtfsp
1416 \verb$#$defining a name to an integer). Unlikely to be used by an application except
1417 perhaps for implementing resource functionality for interpreted languages.
1418
1419 \membersection{::wxResourceClear}
1420
1421 \func{void}{wxResourceClear}{\void}
1422
1423 Clears the wxWindows resource table.
1424
1425 \membersection{::wxResourceCreateBitmap}
1426
1427 \func{wxBitmap *}{wxResourceCreateBitmap}{\param{const wxString\& }{resource}}
1428
1429 Creates a new bitmap from a file, static data, or Windows resource, given a valid
1430 wxWindows bitmap resource identifier. For example, if the .WXR file contains
1431 the following:
1432
1433 \begin{verbatim}
1434 static const wxString\& aiai_resource = "bitmap(name = 'aiai_resource',\
1435 bitmap = ['aiai', wxBITMAP_TYPE_BMP_RESOURCE, 'WINDOWS'],\
1436 bitmap = ['aiai.xpm', wxBITMAP_TYPE_XPM, 'X']).";
1437 \end{verbatim}
1438
1439 then this function can be called as follows:
1440
1441 \begin{verbatim}
1442 wxBitmap *bitmap = wxResourceCreateBitmap("aiai_resource");
1443 \end{verbatim}
1444
1445 \membersection{::wxResourceCreateIcon}
1446
1447 \func{wxIcon *}{wxResourceCreateIcon}{\param{const wxString\& }{resource}}
1448
1449 Creates a new icon from a file, static data, or Windows resource, given a valid
1450 wxWindows icon resource identifier. For example, if the .WXR file contains
1451 the following:
1452
1453 \begin{verbatim}
1454 static const wxString\& aiai_resource = "icon(name = 'aiai_resource',\
1455 icon = ['aiai', wxBITMAP_TYPE_ICO_RESOURCE, 'WINDOWS'],\
1456 icon = ['aiai', wxBITMAP_TYPE_XBM_DATA, 'X']).";
1457 \end{verbatim}
1458
1459 then this function can be called as follows:
1460
1461 \begin{verbatim}
1462 wxIcon *icon = wxResourceCreateIcon("aiai_resource");
1463 \end{verbatim}
1464
1465 \membersection{::wxResourceCreateMenuBar}
1466
1467 \func{wxMenuBar *}{wxResourceCreateMenuBar}{\param{const wxString\& }{resource}}
1468
1469 Creates a new menu bar given a valid wxWindows menubar resource
1470 identifier. For example, if the .WXR file contains the following:
1471
1472 \begin{verbatim}
1473 static const wxString\& menuBar11 = "menu(name = 'menuBar11',\
1474 menu = \
1475 [\
1476 ['&File', 1, '', \
1477 ['&Open File', 2, 'Open a file'],\
1478 ['&Save File', 3, 'Save a file'],\
1479 [],\
1480 ['E&xit', 4, 'Exit program']\
1481 ],\
1482 ['&Help', 5, '', \
1483 ['&About', 6, 'About this program']\
1484 ]\
1485 ]).";
1486 \end{verbatim}
1487
1488 then this function can be called as follows:
1489
1490 \begin{verbatim}
1491 wxMenuBar *menuBar = wxResourceCreateMenuBar("menuBar11");
1492 \end{verbatim}
1493
1494
1495 \membersection{::wxResourceGetIdentifier}
1496
1497 \func{int}{wxResourceGetIdentifier}{\param{const wxString\& }{name}}
1498
1499 Used for retrieving the integer value associated with an identifier.
1500 A zero value indicates that the identifier was not found.
1501
1502 See \helpref{wxResourceAddIdentifier}{wxresourceaddidentifier}.
1503
1504 \membersection{::wxResourceParseData}\label{wxresourcedata}
1505
1506 \func{bool}{wxResourceParseData}{\param{const wxString\& }{resource}, \param{wxResourceTable *}{table = NULL}}
1507
1508 Parses a string containing one or more wxWindows resource objects. If
1509 the resource objects are global static data that are included into the
1510 C++ program, then this function must be called for each variable
1511 containing the resource data, to make it known to wxWindows.
1512
1513 {\it resource} should contain data in the following form:
1514
1515 \begin{verbatim}
1516 dialog(name = 'dialog1',
1517 style = 'wxCAPTION | wxDEFAULT_DIALOG_STYLE',
1518 title = 'Test dialog box',
1519 x = 312, y = 234, width = 400, height = 300,
1520 modal = 0,
1521 control = [wxGroupBox, 'Groupbox', '0', 'group6', 5, 4, 380, 262,
1522 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]],
1523 control = [wxMultiText, 'Multitext', 'wxVERTICAL_LABEL', 'multitext3',
1524 156, 126, 200, 70, 'wxWindows is a multi-platform, GUI toolkit.',
1525 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0],
1526 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]]).
1527 \end{verbatim}
1528
1529 This function will typically be used after including a {\tt .wxr} file into
1530 a C++ program as follows:
1531
1532 \begin{verbatim}
1533 #include "dialog1.wxr"
1534 \end{verbatim}
1535
1536 Each of the contained resources will declare a new C++ variable, and each
1537 of these variables should be passed to wxResourceParseData.
1538
1539 \membersection{::wxResourceParseFile}
1540
1541 \func{bool}{wxResourceParseFile}{\param{const wxString\& }{filename}, \param{wxResourceTable *}{table = NULL}}
1542
1543 Parses a file containing one or more wxWindows resource objects
1544 in C++-compatible syntax. Use this function to dynamically load
1545 wxWindows resource data.
1546
1547 \membersection{::wxResourceParseString}\label{wxresourceparsestring}
1548
1549 \func{bool}{wxResourceParseString}{\param{const wxString\& }{resource}, \param{wxResourceTable *}{table = NULL}}
1550
1551 Parses a string containing one or more wxWindows resource objects. If
1552 the resource objects are global static data that are included into the
1553 C++ program, then this function must be called for each variable
1554 containing the resource data, to make it known to wxWindows.
1555
1556 {\it resource} should contain data with the following form:
1557
1558 \begin{verbatim}
1559 static const wxString\& dialog1 = "dialog(name = 'dialog1',\
1560 style = 'wxCAPTION | wxDEFAULT_DIALOG_STYLE',\
1561 title = 'Test dialog box',\
1562 x = 312, y = 234, width = 400, height = 300,\
1563 modal = 0,\
1564 control = [wxGroupBox, 'Groupbox', '0', 'group6', 5, 4, 380, 262,\
1565 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]],\
1566 control = [wxMultiText, 'Multitext', 'wxVERTICAL_LABEL', 'multitext3',\
1567 156, 126, 200, 70, 'wxWindows is a multi-platform, GUI toolkit.',\
1568 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0],\
1569 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]]).";
1570 \end{verbatim}
1571
1572 This function will typically be used after calling \helpref{wxLoadUserResource}{wxloaduserresource} to
1573 load an entire {\tt .wxr file} into a string.
1574
1575 \membersection{::wxResourceRegisterBitmapData}\label{registerbitmapdata}
1576
1577 \func{bool}{wxResourceRegisterBitmapData}{\param{const wxString\& }{name}, \param{const wxString\& }{xbm\_data}, \param{int }{width},
1578 \param{int }{height}, \param{wxResourceTable *}{table = NULL}}
1579
1580 \func{bool}{wxResourceRegisterBitmapData}{\param{const wxString\& }{name}, \param{const wxString\& *}{xpm\_data}}
1581
1582 Makes \verb$#$included XBM or XPM bitmap data known to the wxWindows resource system.
1583 This is required if other resources will use the bitmap data, since otherwise there
1584 is no connection between names used in resources, and the global bitmap data.
1585
1586 \membersection{::wxResourceRegisterIconData}
1587
1588 Another name for \helpref{wxResourceRegisterBitmapData}{registerbitmapdata}.
1589
1590 \section{Log functions}\label{logfunctions}
1591
1592 These functions provide a variety of logging functions: see \helpref{Log classes overview}{wxlogoverview} for
1593 further information.
1594
1595 \membersection{::wxLogError}\label{wxlogerror}
1596
1597 \func{void}{wxLogError}{\param{const char*}{ formatString}, \param{...}{}}
1598
1599 The function to use for error messages, i.e. the
1600 messages that must be shown to the user. The default processing is to pop up a
1601 message box to inform the user about it.
1602
1603 \membersection{::wxLogFatalError}\label{wxlogfatalerror}
1604
1605 \func{void}{wxLogFatalError}{\param{const char*}{ formatString}, \param{...}{}}
1606
1607 Like \helpref{wxLogError}{wxlogerror}, but also
1608 terminates the program with the exit code 3. Using {\it abort()} standard
1609 function also terminates the program with this exit code.
1610
1611 \membersection{::wxLogWarning}\label{wxlogwarning}
1612
1613 \func{void}{wxLogWarning}{\param{const char*}{ formatString}, \param{...}{}}
1614
1615 For warnings - they are also normally shown to the
1616 user, but don't interrupt the program work.
1617
1618 \membersection{::wxLogMessage}\label{wxlogmessage}
1619
1620 \func{void}{wxLogMessage}{\param{const char*}{ formatString}, \param{...}{}}
1621
1622 for all normal, informational messages. They also
1623 appear in a message box by default (but it can be changed). Notice
1624 that the standard behaviour is to not show informational messages if there are
1625 any errors later - the logic being that the later error messages make the
1626 informational messages preceding them meaningless.
1627
1628 \membersection{::wxLogVerbose}\label{wxlogverbose}
1629
1630 \func{void}{wxLogVerbose}{\param{const char*}{ formatString}, \param{...}{}}
1631
1632 For verbose output. Normally, it's suppressed, but
1633 might be activated if the user wishes to know more details about the program
1634 progress (another, but possibly confusing name for the same function is {\bf wxLogInfo}).
1635
1636 \membersection{::wxLogStatus}\label{wxlogstatus}
1637
1638 \func{void}{wxLogStatus}{\param{const char*}{ formatString}, \param{...}{}}
1639
1640 For status messages - they will go into the status
1641 bar of the active or specified (as the first argument) \helpref{wxFrame}{wxframe} if it has one.
1642
1643 \membersection{::wxLogSysError}\label{wxlogsyserror}
1644
1645 \func{void}{wxLogSysError}{\param{const char*}{ formatString}, \param{...}{}}
1646
1647 Mostly used by wxWindows itself, but might be
1648 handy for logging errors after system call (API function) failure. It logs the
1649 specified message text as well as the last system error code ({\it errno} or {\it ::GetLastError()} depending
1650 on the platform) and the corresponding error
1651 message. The second form of this function takes the error code explitly as the
1652 first argument.
1653
1654 \membersection{::wxLogDebug}\label{wxlogdebug}
1655
1656 \func{void}{wxLogDebug}{\param{const char*}{ formatString}, \param{...}{}}
1657
1658 The right function for debug output. It only
1659 does anything at all in the debug mode (when the preprocessor symbol \_\_WXDEBUG\_\_ is defined)
1660 and expands to nothing in release mode (otherwise).
1661
1662 \membersection{::wxLogTrace}\label{wxlogtrace}
1663
1664 \func{void}{wxLogTrace}{\param{const char*}{ formatString}, \param{...}{}}
1665
1666 \func{void}{wxLogTrace}{\param{wxTraceMask}{ mask}, \param{const char*}{ formatString}, \param{...}{}}
1667
1668 As {\bf wxLogDebug}, only does something in debug
1669 build. The reason for making it a separate function from it is that usually
1670 there are a lot of trace messages, so it might make sense to separate them
1671 from other debug messages which would be flooded in them. Moreover, the second
1672 version of this function takes a trace mask as the first argument which allows
1673 to further restrict the amount of messages generated. The value of {\it mask} can be:
1674
1675 \begin{itemize}\itemsep=0pt
1676 \item wxTraceMemAlloc: trace memory allocation (new/delete)
1677 \item wxTraceMessages: trace window messages/X callbacks
1678 \item wxTraceResAlloc: trace GDI resource allocation
1679 \item wxTraceRefCount: trace various ref counting operations
1680 \end{itemize}
1681
1682 \section{Debugging macros and functions}\label{debugmacros}
1683
1684 Useful macros and functins for error checking and defensive programming. ASSERTs are only
1685 compiled if \_\_WXDEBUG\_\_ is defined, whereas CHECK macros stay in release
1686 builds.
1687
1688 \membersection{::wxOnAssert}\label{wxonassert}
1689
1690 \func{void}{wxOnAssert}{\param{const char*}{ fileName}, \param{int}{ lineNumber}, \param{const char*}{ msg = NULL}}
1691
1692 This function may be redefined to do something non trivial and is called
1693 whenever one of debugging macros fails (i.e. condition is false in an
1694 assertion). TODO: this should probably be an overridable in wxApp.
1695
1696 \membersection{wxASSERT}\label{wxassert}
1697
1698 \func{}{wxASSERT}{\param{}{condition}}
1699
1700 Assert macro. An error message will be generated if the condition is FALSE.
1701
1702 \membersection{wxASSERT\_MSG}\label{wxassertmsg}
1703
1704 \func{}{wxASSERT\_MSG}{\param{}{condition}, \param{}{msg}}
1705
1706 Assert macro with message. An error message will be generated if the condition is FALSE.
1707
1708 \membersection{wxFAIL}\label{wxfail}
1709
1710 \func{}{wxFAIL}{\param{}{condition}}
1711
1712 Will always generate an assert error if this code is reached (in debug mode).
1713
1714 \membersection{wxFAIL\_MSG}\label{wxfailmsg}
1715
1716 \func{}{wxFAIL\_MSG}{\param{}{condition}, \param{}{msg}}
1717
1718 Will always generate an assert error with specified message if this code is reached (in debug mode).
1719
1720 \membersection{wxCHECK}\label{wxcheck}
1721
1722 \func{}{wxCHECK}{\param{}{condition}, \param{}{retValue}}
1723
1724 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
1725 This check is done even in release mode.
1726
1727 \membersection{wxCHECK\_MSG}\label{wxcheckmsg}
1728
1729 \func{}{wxCHECK\_MSG}{\param{}{condition}, \param{}{retValue}, \param{}{msg}}
1730
1731 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
1732 This check is done even in release mode.
1733