]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/function.tex
wxArrayString::Sort() implemented
[wxWidgets.git] / docs / latex / wx / function.tex
CommitLineData
a660d684
KB
1\chapter{Functions}\label{functions}
2\setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}%
3\setfooter{\thepage}{}{}{}{}{\thepage}
4
5The functions defined in wxWindows are described here.
6
7\section{File functions}\label{filefunctions}
8
9See also \helpref{wxPathList}{wxpathlist}.
10
11\membersection{::wxDirExists}
12
13\func{bool}{wxDirExists}{\param{const wxString\& }{dirname}}
14
15Returns TRUE if the directory exists.
16
17\membersection{::wxDos2UnixFilename}
18
19\func{void}{Dos2UnixFilename}{\param{const wxString\& }{s}}
20
e2a6f233 21Converts a DOS to a Unix filename by replacing backslashes with forward
a660d684
KB
22slashes.
23
24\membersection{::wxFileExists}
25
26\func{bool}{wxFileExists}{\param{const wxString\& }{filename}}
27
28Returns TRUE if the file exists.
29
30\membersection{::wxFileNameFromPath}
31
32\func{wxString}{wxFileNameFromPath}{\param{const wxString\& }{path}}
33
34Returns a temporary pointer to the filename for a full path.
35Copy 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
41This function does directory searching; returns the first file
42that matches the path {\it spec}, or NULL. Use \helpref{wxFindNextFile}{wxfindnextfile} to
43get the next matching file.
44
45{\it spec} may contain wildcards.
46
47{\it flags} is reserved for future use.
48
49The returned filename is a pointer to static memory so should
50not be freed.
51
52For 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
67Returns the next file that matches the path passed to \helpref{wxFindFirstFile}{wxfindfirstfile}.
68
631f1bfe
JS
69\membersection{::wxGetOSDirectory}\label{wxgetosdirectory}
70
71\func{wxString}{wxGetOSDirectory}{\void}
72
73Returns the Windows directory under Windows; on other platforms returns the empty string.
74
a660d684
KB
75\membersection{::wxIsAbsolutePath}
76
77\func{bool}{wxIsAbsolutePath}{\param{const wxString\& }{filename}}
78
79Returns TRUE if the argument is an absolute filename, i.e. with a slash
80or drive name at the beginning.
81
82\membersection{::wxPathOnly}
83
84\func{wxString}{wxPathOnly}{\param{const wxString\& }{path}}
85
86Returns a temporary pointer to the directory part of the filename. Copy this
87pointer for long-term use.
88
89\membersection{::wxUnix2DosFilename}
90
91\func{void}{wxUnix2DosFilename}{\param{const wxString\& }{s}}
92
e2a6f233 93Converts a Unix to a DOS filename by replacing forward
a660d684
KB
94slashes 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
101Concatenates {\it file1} and {\it file2} to {\it file3}, returning
102TRUE if successful.
103
104\membersection{::wxCopyFile}
105
106\func{bool}{wxCopyFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}}
107
108Copies {\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
114Copies the current host machine's name into the supplied buffer.
115
116Under Windows or NT, this function first looks in the environment
117variable SYSTEM\_NAME; if this is not found, the entry {\bf HostName}\rtfsp
118in the {\bf wxWindows} section of the WIN.INI file is tried.
119
120Returns TRUE if successful, FALSE otherwise.
121
122\membersection{::wxGetEmailAddress}\label{wxgetemailaddress}
123
124\func{bool}{wxGetEmailAddress}{\param{const wxString\& }{buf}, \param{int }{sz}}
125
126Copies the user's email address into the supplied buffer, by
127concatenating the values returned by \helpref{wxGetHostName}{wxgethostname}\rtfsp
128and \helpref{wxGetUserId}{wxgetuserid}.
129
130Returns TRUE if successful, FALSE otherwise.
131
132\membersection{::wxGetUserId}\label{wxgetuserid}
133
134\func{bool}{wxGetUserId}{\param{const wxString\& }{buf}, \param{int }{sz}}
135
136Copies the current user id into the supplied buffer.
137
138Under Windows or NT, this function first looks in the environment
139variables USER and LOGNAME; if neither of these is found, the entry {\bf UserId}\rtfsp
140in the {\bf wxWindows} section of the WIN.INI file is tried.
141
142Returns TRUE if successful, FALSE otherwise.
143
144\membersection{::wxGetUserName}\label{wxgetusername}
145
146\func{bool}{wxGetUserName}{\param{const wxString\& }{buf}, \param{int }{sz}}
147
148Copies the current user name into the supplied buffer.
149
150Under Windows or NT, this function looks for the entry {\bf UserName}\rtfsp
151in the {\bf wxWindows} section of the WIN.INI file. If PenWindows
152is running, the entry {\bf Current} in the section {\bf User} of
153the PENWIN.INI file is used.
154
155Returns TRUE if successful, FALSE otherwise.
156
157\membersection{::wxGetWorkingDirectory}
158
159\func{wxString}{wxGetWorkingDirectory}{\param{const wxString\& }{buf=NULL}, \param{int }{sz=1000}}
160
161Copies the current working directory into the buffer if supplied, or
162copies the working directory into new storage (which you must delete yourself)
163if 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
171Makes a temporary filename based on {\it prefix}, opens and closes the file,
172and places the name in {\it buf}. If {\it buf} is NULL, new store
173is allocated for the temporary filename using {\it new}.
174
175Under Windows, the filename will include the drive and name of the
176directory allocated for temporary files (usually the contents of the
e2a6f233 177TEMP variable). Under Unix, the {\tt /tmp} directory is used.
a660d684
KB
178
179It 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
185Returns 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
191Returns TRUE if the {\it pattern}\/ matches the {\it text}\/; if {\it
192dot\_special}\/ is TRUE, filenames beginning with a dot are not matched
193with wildcard characters. See \helpref{wxIsWild}{wxiswild}.
194
195\membersection{::wxMkdir}
196
197\func{bool}{wxMkdir}{\param{const wxString\& }{dir}}
198
199Makes the directory {\it dir}, returning TRUE if successful.
200
201\membersection{::wxRemoveFile}
202
203\func{bool}{wxRemoveFile}{\param{const wxString\& }{file}}
204
205Removes {\it file}, returning TRUE if successful.
206
207\membersection{::wxRenameFile}
208
209\func{bool}{wxRenameFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}}
210
211Renames {\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
217Removes the directory {\it dir}, returning TRUE if successful. Does not work under VMS.
218
219The {\it flags} parameter is reserved for future use.
220
221\membersection{::wxSetWorkingDirectory}
222
223\func{bool}{wxSetWorkingDirectory}{\param{const wxString\& }{dir}}
224
225Sets the current working directory, returning TRUE if the operation succeeded.
226Under 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
234Makes a copy of the string {\it s} using the C++ new operator, so it can be
235deleted 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
242Returns TRUE if the substring {\it s1} is found within {\it s2},
243ignoring case if {\it exact} is FALSE. If {\it subString} is FALSE,
244no substring matching is done.
245
246\membersection{::wxStringEq}\label{wxstringeq}
247
248\func{bool}{wxStringEq}{\param{const wxString\& }{s1}, \param{const wxString\& }{s2}}
249
250A 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
260Copies the given file to {\it stream}. Useful when converting an old application to
261use streams (within the document/view framework, for example).
262
263Use 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
269Copies the given stream to the file {\it filename}. Useful when converting an old application to
270use streams (within the document/view framework, for example).
271
272Use of this function requires the file wx\_doc.h to be included.
273
274\section{Dialog functions}\label{dialogfunctions}
275
276Below are a number of convenience functions for getting input from the
277user or displaying messages. Note that in these functions the last three
278parameters are optional. However, it is recommended to pass a parent frame
279parameter, or (in MS Windows or Motif) the wrong window frame may be brought to
280the 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
289Pops up a file selector box. In Windows, this is the common file selector
290dialog. In X, this is a file selector box with somewhat less functionality.
291The path and filename are distinct elements of a full file pathname.
292If path is NULL, the current directory will be used. If filename is NULL,
293no default filename will be supplied. The wildcard determines what files
294are displayed in the file selector, and file extension supplies a type
295extension for the required filename. Flags may be a combination of wxOPEN,
296wxSAVE, wxOVERWRITE\_PROMPT, wxHIDE\_READONLY, or 0. They are only significant
297at present in Windows.
298
299Both the X and Windows versions implement a wildcard filter. Typing a
300filename containing wildcards (*, ?) in the filename text item, and
301clicking on Ok, will result in only those files matching the pattern being
302displayed. In the X version, supplying no default name will result in the
303wildcard filter being inserted in the filename text item; the filter is
304ignored if a default name is supplied.
305
306Under Windows (only), the wildcard may be a specification for multiple
307types 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
313The application must check for a NULL return value (the user pressed
314Cancel). For example:
315
316\begin{verbatim}
317const wxString\& s = wxFileSelector("Choose a file to open");
318if (s)
319{
320 ...
321}
322\end{verbatim}
323
324Remember that the returned pointer is temporary and should be copied
325if 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
333Pop 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,
335or press Cancel to return NULL.
336
337If {\it centre} is TRUE, the message text (which may include new line characters)
338is 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
347Pops up a dialog box containing a message, OK/Cancel buttons and a multiple-selection
348listbox. The user may choose one or more item(s) and press OK or Cancel.
349
350The number of initially selected choices, and array of the selected indices,
351are passed in; this array will contain the user selections on exit, with
352the function returning the number of selections. {\it selection} must be
353as big as the number of choices, in case all are selected.
354
355If Cancel is pressed, -1 is returned.
356
357{\it choices} is an array of {\it n} strings for the listbox.
358
359If {\it centre} is TRUE, the message text (which may include new line characters)
360is 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
368Pops up a dialog box containing a message, OK/Cancel buttons and a single-selection
369listbox. The user may choose an item and press OK to return a string or
370Cancel to return NULL.
371
372{\it choices} is an array of {\it n} strings for the listbox.
373
374If {\it centre} is TRUE, the message text (which may include new line characters)
375is 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
383As {\bf wxGetSingleChoice} but returns the index representing the selected string.
384If 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
392As {\bf wxGetSingleChoice} but takes an array of client data pointers
393corresponding 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
400General purpose message dialog. {\it style} may be a bit list of the
401following identifiers:
402
403\begin{twocollist}\itemsep=0pt
404\twocolitem{wxYES\_NO}{Puts Yes and No buttons on the message box. May be combined with
405wxCANCEL.}
406\twocolitem{wxCANCEL}{Puts a Cancel button on the message box. May be combined with
407wxYES\_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
416The return value is one of: wxYES, wxNO, wxCANCEL, wxOK.
417
418For 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
430message will be split into separate lines, to cater for large messages.
431
432Under Windows, the native MessageBox function is used unless wxCENTRE
433is specified in the style, in which case a generic function is used.
434This is because the native MessageBox function cannot centre text.
435The symbols are not shown when the generic function is used.
436
437\section{GDI functions}\label{gdifunctions}
438
439The following are relevant to the GDI (Graphics Device Interface).
440
441\membersection{::wxColourDisplay}
442
443\func{bool}{wxColourDisplay}{\void}
444
445Returns TRUE if the display is colour, FALSE otherwise.
446
447\membersection{::wxDisplayDepth}
448
449\func{int}{wxDisplayDepth}{\void}
450
451Returns the depth of the display (a value of 1 denotes a monochrome display).
452
e2a6f233 453\membersection{::wxMakeMetafilePlaceable}\label{wxmakemetafileplaceable}
a660d684 454
e2a6f233 455\func{bool}{wxMakeMetafilePlaceable}{\param{const wxString\& }{filename}, \param{int }{minX}, \param{int }{minY},
a660d684
KB
456 \param{int }{maxX}, \param{int }{maxY}, \param{float }{scale=1.0}}
457
e2a6f233 458Given a filename for an existing, valid metafile (as constructed using \helpref{wxMetafileDC}{wxmetafiledc})
a660d684
KB
459makes it into a placeable metafile by prepending a header containing the given
460bounding box. The bounding box may be obtained from a device context after drawing
461into it, using the functions wxDC::MinX, wxDC::MinY, wxDC::MaxX and wxDC::MaxY.
462
463In addition to adding the placeable metafile header, this function adds
464the 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
e3065973 472This simulates the wxMM\_TEXT mapping mode, which wxWindows assumes.
a660d684
KB
473
474Placeable metafiles may be imported by many Windows applications, and can be
475used in RTF (Rich Text Format) files.
476
477{\it scale} allows the specification of scale for the metafile.
478
479This function is only available under Windows.
480
481\membersection{::wxSetCursor}\label{wxsetcursor}
482
483\func{void}{wxSetCursor}{\param{wxCursor *}{cursor}}
484
485Globally sets the cursor; only has an effect in MS Windows.
486See also \helpref{wxCursor}{wxcursor}, \helpref{wxWindow::SetCursor}{wxwindowsetcursor}.
487
a660d684
KB
488\section{Printer settings}\label{printersettings}
489
490The following functions are used to control PostScript printing. Under
491Windows, PostScript output can only be sent to a file.
492
493\membersection{::wxGetPrinterCommand}
494
495\func{wxString}{wxGetPrinterCommand}{\void}
496
497Gets the printer command used to print a file. The default is {\tt lpr}.
498
499\membersection{::wxGetPrinterFile}
500
501\func{wxString}{wxGetPrinterFile}{\void}
502
503Gets the PostScript output filename.
504
505\membersection{::wxGetPrinterMode}
506
507\func{int}{wxGetPrinterMode}{\void}
508
509Gets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
510The default is PS\_PREVIEW.
511
512\membersection{::wxGetPrinterOptions}
513
514\func{wxString}{wxGetPrinterOptions}{\void}
515
516Gets 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
522Gets the orientation (PS\_PORTRAIT or PS\_LANDSCAPE). The default is PS\_PORTRAIT.
523
524\membersection{::wxGetPrinterPreviewCommand}
525
526\func{wxString}{wxGetPrinterPreviewCommand}{\void}
527
528Gets 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
534Gets 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
540Gets 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
546Sets 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
552Sets the PostScript output filename.
553
554\membersection{::wxSetPrinterMode}
555
556\func{void}{wxSetPrinterMode}{\param{int }{mode}}
557
558Sets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
559The default is PS\_PREVIEW.
560
561\membersection{::wxSetPrinterOptions}
562
563\func{void}{wxSetPrinterOptions}{\param{const wxString\& }{options}}
564
565Sets 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
571Sets 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
577Sets 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
583Sets 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
589Sets 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
593These clipboard functions are implemented for Windows only.
594
595\membersection{::wxClipboardOpen}
596
597\func{bool}{wxClipboardOpen}{\void}
598
599Returns TRUE if this application has already opened the clipboard.
600
601\membersection{::wxCloseClipboard}
602
603\func{bool}{wxCloseClipboard}{\void}
604
605Closes the clipboard to allow other applications to use it.
606
607\membersection{::wxEmptyClipboard}
608
609\func{bool}{wxEmptyClipboard}{\void}
610
611Empties the clipboard.
612
613\membersection{::wxEnumClipboardFormats}
614
615\func{int}{wxEnumClipboardFormats}{\param{int}{dataFormat}}
616
617Enumerates the formats found in a list of available formats that belong
618to the clipboard. Each call to this function specifies a known
619available format; the function returns the format that appears next in
620the list.
621
622{\it dataFormat} specifies a known format. If this parameter is zero,
623the function returns the first format in the list.
624
625The return value specifies the next known clipboard data format if the
626function is successful. It is zero if the {\it dataFormat} parameter specifies
627the last format in the list of available formats, or if the clipboard
628is not open.
629
630Before it enumerates the formats function, an application must open the clipboard by using the
631wxOpenClipboard function.
632
633\membersection{::wxGetClipboardData}
634
635\func{wxObject *}{wxGetClipboardData}{\param{int}{dataFormat}}
636
637Gets 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
646The 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
652Gets the name of a registered clipboard format, and puts it into the buffer {\it formatName} which is of maximum
653length {\it maxCount}. {\it dataFormat} must not specify a predefined clipboard format.
654
655\membersection{::wxIsClipboardFormatAvailable}
656
657\func{bool}{wxIsClipboardFormatAvailable}{\param{int}{dataFormat}}
658
659Returns TRUE if the given data format is available on the clipboard.
660
661\membersection{::wxOpenClipboard}
662
663\func{bool}{wxOpenClipboard}{\void}
664
665Opens 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
671Registers 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
677Passes 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).
e2a6f233 685\item wxCF\_METAFILE: {\it data} is a wxMetafile. {\it width} and {\it height} are used to give recommended dimensions.
a660d684
KB
686\end{itemize}
687
688The 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
696Generates an integer identifier unique to this run of the program.
697
698\membersection{::RegisterId}
699
700\func{void}{RegisterId}{\param{long}{ id}}
701
702Ensures that ids subsequently generated by {\bf NewId} do not clash with
703the given {\bf id}.
704
705\membersection{::wxBeginBusyCursor}\label{wxbeginbusycursor}
706
707\func{void}{wxBeginBusyCursor}{\param{wxCursor *}{cursor = wxHOURGLASS\_CURSOR}}
708
709Changes the cursor to the given cursor for all windows in the application.
710Use \helpref{wxEndBusyCursor}{wxendbusycursor} to revert the cursor back
711to its previous state. These two calls can be nested, and a counter
712ensures that only the outer calls take effect.
713
e2a6f233 714See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
a660d684
KB
715
716\membersection{::wxBell}
717
718\func{void}{wxBell}{\void}
719
720Ring the system bell.
721
722\membersection{::wxCleanUp}\label{wxcleanup}
723
724\func{void}{wxCleanUp}{\void}
725
726Normally, wxWindows will call this cleanup function for you. However, if
727you call \helpref{wxEntry}{wxentry} in order to initialize wxWindows
728manually, then you should also call wxCleanUp before terminating wxWindows,
729if 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
735Creates and returns an object of the given class, if the class has been
736registered with the dynamic class system using DECLARE... and IMPLEMENT... macros.
737
e2a6f233
JS
738\membersection{::wxDDECleanUp}\label{wxddecleanup}
739
740\func{void}{wxDDECleanUp}{\void}
741
742Called when wxWindows exits, to clean up the DDE system. This no longer needs to be
743called by the application.
744
745See also helpref{wxDDEInitialize}{wxddeinitialize}.
746
747\membersection{::wxDDEInitialize}\label{wxddeinitialize}
748
749\func{void}{wxDDEInitialize}{\void}
750
751Initializes the DDE system. May be called multiple times without harm.
752
753This no longer needs to be called by the application: it will be called
754by wxWindows if necessary.
755
756See also \helpref{wxDDEServer}{wxddeserver}, \helpref{wxDDEClient}{wxddeclient}, \helpref{wxDDEConnection}{wxddeconnection},
757\helpref{wxDDECleanUp}{wxddecleanup}.
758
759\membersection{::wxDebugMsg}\label{wxdebugmsg}
a660d684
KB
760
761\func{void}{wxDebugMsg}{\param{const wxString\& }{fmt}, \param{...}{}}
762
763Display a debugging message; under Windows, this will appear on the
e2a6f233 764debugger command window, and under Unix, it will be written to standard
a660d684
KB
765error.
766
767The syntax is identical to {\bf printf}: pass a format string and a
768variable list of arguments.
769
770Note that under Windows, you can see the debugging messages without a
771debugger if you have the DBWIN debug log application that comes with
772Microsoft C++.
773
774{\bf Tip:} under Windows, if your application crashes before the
775message appears in the debugging window, put a wxYield call after
776each wxDebugMsg call. wxDebugMsg seems to be broken under WIN32s
777(at least for Watcom C++): preformat your messages and use OutputDebugString
778instead.
779
6fb26ea3
JS
780This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
781
a660d684
KB
782\membersection{::wxDisplaySize}
783
784\func{void}{wxDisplaySize}{\param{int *}{width}, \param{int *}{height}}
785
786Gets the physical size of the display in pixels.
787
788\membersection{::wxEntry}\label{wxentry}
789
790This initializes wxWindows in a platform-dependent way. Use this if you
791are not using the default wxWindows entry code (e.g. main or WinMain). For example,
792you can initialize wxWindows from an Microsoft Foundation Classes application using
793this 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
798wxWindows initialization under Windows (non-DLL). If {\it enterLoop} is FALSE, the
799function will return immediately after calling wxApp::OnInit. Otherwise, the wxWindows
800message 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
805wxWindows initialization under Windows (for applications constructed as a DLL).
806
807\func{int}{wxEntry}{\param{int}{ argc}, \param{const wxString\& *}{argv}}
808
e2a6f233 809wxWindows initialization under Unix.
a660d684
KB
810
811\membersection{::wxError}\label{wxerror}
812
813\func{void}{wxError}{\param{const wxString\& }{msg}, \param{const wxString\& }{title = "wxWindows Internal Error"}}
814
815Displays {\it msg} and continues. This writes to standard error under
e2a6f233 816Unix, and pops up a message box under Windows. Used for internal
a660d684
KB
817wxWindows errors. See also \helpref{wxFatalError}{wxfatalerror}.
818
819\membersection{::wxEndBusyCursor}\label{wxendbusycursor}
820
821\func{void}{wxEndBusyCursor}{\void}
822
823Changes the cursor back to the original cursor, for all windows in the application.
824Use with \helpref{wxBeginBusyCursor}{wxbeginbusycursor}.
825
e2a6f233 826See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
a660d684
KB
827
828\membersection{::wxExecute}\label{wxexecute}
829
eafc087e 830\func{long}{wxExecute}{\param{const wxString\& }{command}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
a660d684 831
e2a6f233 832\func{long}{wxExecute}{\param{char **}{argv}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
a660d684 833
e2a6f233 834Executes another program in Unix or Windows.
a660d684
KB
835
836The first form takes a command string, such as {\tt "emacs file.txt"}.
837
838The second form takes an array of values: a command, any number of
839arguments, terminated by NULL.
840
841If {\it sync} is FALSE (the default), flow of control immediately returns.
842If TRUE, the current application waits until the other program has terminated.
843
844If execution is asynchronous, the return value is the process id,
845otherwise it is a status value. A zero value indicates that the command could not
846be executed.
847
acbd13a3 848If callback isn't NULL and if execution is asynchronous,
eafc087e
GL
849\helpref{wxProcess::OnTerminate}{wxprocessonterminate} will be called when
850the process finishes.
851
852See also \helpref{wxShell}{wxshell}, \helpref{wxProcess}{wxprocess}.
a660d684
KB
853
854\membersection{::wxExit}\label{wxexit}
855
856\func{void}{wxExit}{\void}
857
858Exits application after calling \helpref{wxApp::OnExit}{wxapponexit}.
859Should only be used in an emergency: normally the top-level frame
860should be deleted (after deleting all other frames) to terminate the
861application. 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
e2a6f233 867Displays {\it msg} and exits. This writes to standard error under Unix,
a660d684
KB
868and pops up a message box under Windows. Used for fatal internal
869wxWindows 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
875Find 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
881Find a window by its label. Depending on the type of window, the label may be a window title
882or panel item label. If {\it parent} is NULL, the search will start from all top-level
883frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
884The 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
890Find a window by its name (as given in a window constructor or {\bf Create} function call).
891If {\it parent} is NULL, the search will start from all top-level
892frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
893The search is recursive in both cases.
894
895If no such named window is found, {\bf wxFindWindowByLabel} is called.
896
897\membersection{::wxGetActiveWindow}\label{wxgetactivewindow}
898
899\func{wxWindow *}{wxGetActiveWindow}{\void}
900
901Gets the currently active window (Windows only).
902
903\membersection{::wxGetDisplayName}\label{wxgetdisplayname}
904
905\func{wxString}{wxGetDisplayName}{\void}
906
907Under 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
e2a6f233 913Fills the buffer with a string representing the user's home directory (Unix only).
a660d684
KB
914
915\membersection{::wxGetHostName}
916
917\func{bool}{wxGetHostName}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
918
919Copies the host name of the machine the program is running on into the
920buffer {\it buf}, of maximum size {\it bufSize}, returning TRUE if
e2a6f233 921successful. Under Unix, this will return a machine name. Under Windows,
a660d684
KB
922this returns ``windows''.
923
924\membersection{::wxGetElapsedTime}\label{wxgetelapsedtime}
925
926\func{long}{wxGetElapsedTime}{\param{bool}{ resetTimer = TRUE}}
927
928Gets the time in milliseconds since the last \helpref{::wxStartTimer}{wxstarttimer}.
929
930If {\it resetTimer} is TRUE (the default), the timer is reset to zero
931by this call.
932
933See also \helpref{wxTimer}{wxtimer}.
934
e2a6f233 935\membersection{::wxGetFreeMemory}\label{wxgetfreememory}
a660d684
KB
936
937\func{long}{wxGetFreeMemory}{\void}
938
939Returns the amount of free memory in Kbytes under environments which
940support it, and -1 if not supported. Currently, returns a positive value
e2a6f233 941under Windows, and -1 under Unix.
a660d684
KB
942
943\membersection{::wxGetMousePosition}
944
945\func{void}{wxGetMousePosition}{\param{int* }{x}, \param{int* }{y}}
946
947Returns the mouse position in screen coordinates.
948
949\membersection{::wxGetOsVersion}
950
951\func{int}{wxGetOsVersion}{\param{int *}{major = NULL}, \param{int *}{minor = NULL}}
952
953Gets operating system version information.
954
955\begin{twocollist}\itemsep=0pt
956\twocolitemruled{Platform}{Return tyes}
957\twocolitem{Macintosh}{Return value is wxMACINTOSH.}
12a44087 958\twocolitem{GTK}{Return value is wxGTK, {\it major} is 1, {\it minor} is 0. (for GTK 1.0.X) }
a660d684
KB
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
982Gets 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,
984otherwise the specified file is used.
985
e2a6f233 986Under X, if an application class (wxApp::GetClassName) has been defined,
a660d684
KB
987it is appended to the string /usr/lib/X11/app-defaults/ to try to find
988an applications default file when merging all resource databases.
989
990The reason for passing the result in an argument is that it
991can be convenient to define a default value, which gets overridden
992if the value exists in the resource file. It saves a separate
993test for that resource's existence, and it also allows
994the overloading of the function for different types.
995
e2a6f233 996See also \helpref{wxWriteResource}{wxwriteresource}, \helpref{wxConfigBase}{wxconfigbase}.
a660d684
KB
997
998\membersection{::wxGetUserId}
999
1000\func{bool}{wxGetUserId}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1001
1002Copies the user's login identity (such as ``jacs'') into the buffer {\it
1003buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1004Under Windows, this returns ``user''.
1005
1006\membersection{::wxGetUserName}
1007
1008\func{bool}{wxGetUserName}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1009
1010Copies the user's name (such as ``Julian Smart'') into the buffer {\it
1011buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1012Under Windows, this returns ``unknown''.
1013
1014\membersection{::wxKill}\label{wxkill}
1015
1016\func{int}{wxKill}{\param{long}{ pid}, \param{int}{ sig}}
1017
e2a6f233 1018Under Unix (the only supported platform), equivalent to the Unix kill function.
a660d684
KB
1019Returns 0 on success, -1 on failure.
1020
1021Tip: sending a signal of 0 to a process returns -1 if the process does not exist.
1022It does not raise a signal in the receiving process.
1023
1024\membersection{::wxInitClipboard}\label{wxinitclipboard}
1025
1026\func{void}{wxInitClipboard}{\void}
1027
1028Initializes the generic clipboard system by creating an instance of
1029the class \helpref{wxClipboard}{wxclipboard}.
1030
a660d684
KB
1031\membersection{::wxIsBusy}\label{wxisbusy}
1032
1033\func{bool}{wxIsBusy}{\void}
1034
1035Returns TRUE if between two \helpref{wxBeginBusyCursor}{wxbeginbusycursor} and\rtfsp
1036\helpref{wxEndBusyCursor}{wxendbusycursor} calls.
1037
e2a6f233
JS
1038See also \helpref{wxBusyCursor}{wxbusycursor}.
1039
a660d684
KB
1040\membersection{::wxLoadUserResource}\label{wxloaduserresource}
1041
1042\func{wxString}{wxLoadUserResource}{\param{const wxString\& }{resourceName}, \param{const wxString\& }{resourceType=``TEXT"}}
1043
1044Loads a user-defined Windows resource as a string. If the resource is found, the function creates
1045a new character array and copies the data into it. A pointer to this data is returned. If unsuccessful, NULL is returned.
1046
1047The resource must be defined in the {\tt .rc} file using the following syntax:
1048
1049\begin{verbatim}
1050myResource TEXT file.ext
1051\end{verbatim}
1052
1053where {\tt file.ext} is a file that the resource compiler can find.
1054
1055One use of this is to store {\tt .wxr} files instead of including the data in the C++ file; some compilers
1056cannot cope with the long strings in a {\tt .wxr} file. The resource data can then be parsed
1057using \helpref{wxResourceParseString}{wxresourceparsestring}.
1058
1059This function is available under Windows only.
1060
1061\membersection{::wxNow}\label{wxnow}
1062
1063\func{wxString}{wxNow}{\void}
1064
1065Returns a string representing the current date and time.
1066
1067\membersection{::wxPostDelete}\label{wxpostdelete}
1068
1069\func{void}{wxPostDelete}{\param{wxObject *}{object}}
1070
1071Under X, tells the system to delete the specified object when
1072all other events have been processed. In some environments, it is
1073necessary to use this instead of deleting a frame directly with the
1074delete operator, because X will still send events to the window.
1075
1076Now obsolete: use \helpref{wxWindow::Close}{wxwindowclose} instead.
1077
1078\membersection{::wxSetDisplayName}\label{wxsetdisplayname}
1079
1080\func{void}{wxSetDisplayName}{\param{const wxString\& }{displayName}}
1081
1082Under X only, sets the current display name. This is the X host and display name such
1083as ``colonsay:0.0", and the function indicates which display should be used for creating
1084windows from this point on. Setting the display within an application allows multiple
1085displays to be used.
1086
1087See also \helpref{wxGetDisplayName}{wxgetdisplayname}.
1088
1089\membersection{::wxShell}\label{wxshell}
1090
1091\func{bool}{wxShell}{\param{const wxString\& }{command = NULL}}
1092
1093Executes a command in an interactive shell window. If no command is
1094specified, then just the shell is spawned.
1095
1096See also \helpref{wxExecute}{wxexecute}.
1097
e2a6f233 1098\membersection{::wxSleep}\label{wxsleep}
a660d684
KB
1099
1100\func{void}{wxSleep}{\param{int}{ secs}}
1101
e2a6f233 1102Sleeps for the specified number of seconds.
a660d684
KB
1103
1104\membersection{::wxStripMenuCodes}
1105
8a2c6ef8
JS
1106\func{wxString}{wxStripMenuCodes}{\param{const wxString\& }{in}}
1107
1108\func{void}{wxStripMenuCodes}{\param{char* }{in}, \param{char* }{out}}
a660d684
KB
1109
1110Strips any menu codes from {\it in} and places the result
8a2c6ef8
JS
1111in {\it out} (or returns the new string, in the first form).
1112
1113Menu codes include \& (mark the next character with an underline
a660d684
KB
1114as 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
1120Starts a stopwatch; use \helpref{::wxGetElapsedTime}{wxgetelapsedtime} to get the elapsed time.
1121
1122See also \helpref{wxTimer}{wxtimer}.
1123
1124\membersection{::wxToLower}\label{wxtolower}
1125
1126\func{char}{wxToLower}{\param{char }{ch}}
1127
1128Converts 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
1134Converts 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
1140Takes printf-style variable argument syntax. Output
1141is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1142
6fb26ea3
JS
1143This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1144
a660d684
KB
1145\membersection{::wxTraceLevel}\label{wxtracelevel}
1146
1147\func{void}{wxTraceLevel}{\param{int}{ level}, \param{const wxString\& }{fmt}, \param{...}{}}
1148
1149Takes printf-style variable argument syntax. Output
1150is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1151The first argument should be the level at which this information is appropriate.
1152It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
1153this value.
1154
6fb26ea3
JS
1155This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1156
a660d684
KB
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
1171Writes 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,
1173otherwise the specified file is used.
1174
1175Under X, the resource databases are cached until the internal function
1176\rtfsp{\bf wxFlushResources} is called automatically on exit, when
1177all updated resource databases are written to their files.
1178
1179Note that it is considered bad manners to write to the .Xdefaults
e2a6f233 1180file under Unix, although the WIN.INI file is fair game under Windows.
a660d684 1181
e2a6f233 1182See also \helpref{wxGetResource}{wxgetresource}, \helpref{wxConfigBase}{wxconfigbase}.
a660d684
KB
1183
1184\membersection{::wxYield}
1185
1186\func{bool}{wxYield}{\void}
1187
1188Yields control to pending messages in the windowing system. This can be useful, for example, when a
1189time-consuming process writes to a text window. Without an occasional
1190yield, the text window will not be updated properly, and (since Windows
1191multitasking is cooperative) other processes will not respond.
1192
1193Caution should be exercised, however, since yielding may allow the
1194user to perform actions which are not compatible with the current task.
1195Disabling menu items or whole menus during processing can avoid unwanted
1196reentrance of code.
1197
1198\section{Macros}\label{macros}
1199
1200These macros are defined in wxWindows.
1201
1202\membersection{CLASSINFO}\label{classinfo}
1203
1204\func{wxClassInfo *}{CLASSINFO}{className}
1205
1206Returns a pointer to the wxClassInfo object associated with this class.
1207
1208\membersection{WXDEBUG\_NEW}\label{debugnew}
1209
1210\func{}{WXDEBUG\_NEW}{arg}
1211
1212This is defined in debug mode to be call the redefined new operator
1213with filename and line number arguments. The definition is:
1214
1215\begin{verbatim}
1216#define WXDEBUG_NEW new(__FILE__,__LINE__)
1217\end{verbatim}
1218
1219In 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
1225Used inside a class declaration to declare that the class should be
1226made known to the class hierarchy, but objects of this class cannot be created
1227dynamically. The same as DECLARE\_CLASS.
1228
1229Example:
1230
1231\begin{verbatim}
1232class 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
1247This is used in headers to create a forward declaration of the wxGetApp function implemented
1248by IMPLEMENT\_APP. It creates the declaration {\tt className\& wxGetApp(void)}.
1249
1250Example:
1251
1252\begin{verbatim}
1253 DECLARE_APP(MyApp)
1254\end{verbatim}
1255
1256\membersection{DECLARE\_CLASS}
1257
1258\func{}{DECLARE\_CLASS}{className}
1259
1260Used inside a class declaration to declare that the class should be
1261made known to the class hierarchy, but objects of this class cannot be created
1262dynamically. The same as DECLARE\_ABSTRACT\_CLASS.
1263
1264\membersection{DECLARE\_DYNAMIC\_CLASS}
1265
1266\func{}{DECLARE\_DYNAMIC\_CLASS}{className}
1267
1268Used inside a class declaration to declare that the objects of this class should be dynamically
1269createable from run-time type information.
1270
1271Example:
1272
1273\begin{verbatim}
1274class 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
1289Used in a C++ implementation file to complete the declaration of
1290a class that has run-time type information. The same as IMPLEMENT\_CLASS.
1291
1292Example:
1293
1294\begin{verbatim}
1295IMPLEMENT_ABSTRACT_CLASS(wxCommand, wxObject)
1296
1297wxCommand::wxCommand(void)
1298{
1299...
1300}
1301\end{verbatim}
1302
1303\membersection{IMPLEMENT\_ABSTRACT\_CLASS2}
1304
1305\func{}{IMPLEMENT\_ABSTRACT\_CLASS2}{className, baseClassName1, baseClassName2}
1306
1307Used in a C++ implementation file to complete the declaration of
1308a 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
1314This is used in the application class implementation file to make the application class known to
1315wxWindows for dynamic construction. You use this instead of
1316
1317Old form:
1318
1319\begin{verbatim}
1320 MyApp myApp;
1321\end{verbatim}
1322
1323New form:
1324
1325\begin{verbatim}
1326 IMPLEMENT_APP(MyApp)
1327\end{verbatim}
1328
1329See also \helpref{DECLARE\_APP}{declareapp}.
1330
1331\membersection{IMPLEMENT\_CLASS}
1332
1333\func{}{IMPLEMENT\_CLASS}{className, baseClassName}
1334
1335Used in a C++ implementation file to complete the declaration of
1336a 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
1342Used in a C++ implementation file to complete the declaration of a
1343class that has run-time type information and two base classes. The
1344same as IMPLEMENT\_ABSTRACT\_CLASS2.
1345
1346\membersection{IMPLEMENT\_DYNAMIC\_CLASS}
1347
1348\func{}{IMPLEMENT\_DYNAMIC\_CLASS}{className, baseClassName}
1349
1350Used in a C++ implementation file to complete the declaration of
1351a class that has run-time type information, and whose instances
1352can be created dynamically.
1353
1354Example:
1355
1356\begin{verbatim}
1357IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
1358
1359wxFrame::wxFrame(void)
1360{
1361...
1362}
1363\end{verbatim}
1364
1365\membersection{IMPLEMENT\_DYNAMIC\_CLASS2}
1366
1367\func{}{IMPLEMENT\_DYNAMIC\_CLASS2}{className, baseClassName1, baseClassName2}
1368
1369Used in a C++ implementation file to complete the declaration of
1370a class that has run-time type information, and whose instances
1371can be created dynamically. Use this for classes derived from two
1372base classes.
1373
1374\membersection{WXTRACE}\label{trace}
1375
1376\func{}{WXTRACE}{formatString, ...}
1377
1378Calls wxTrace with printf-style variable argument syntax. Output
1379is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1380
6fb26ea3
JS
1381This macro is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1382
a660d684
KB
1383\membersection{WXTRACELEVEL}\label{tracelevel}
1384
1385\func{}{WXTRACELEVEL}{level, formatString, ...}
1386
1387Calls wxTraceLevel with printf-style variable argument syntax. Output
1388is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1389The first argument should be the level at which this information is appropriate.
1390It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
1391this value.
1392
6fb26ea3
JS
1393This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1394
a660d684
KB
1395\section{wxWindows resource functions}\label{resourcefuncs}
1396
1397\overview{wxWindows resource system}{resourceformats}
1398
1399This section details functions for manipulating wxWindows (.WXR) resource
1400files 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
1403about initialisation file resource reading and writing, using such functions
1404as 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
1408See also \helpref{wxWindow::LoadFromResource}{wxwindowloadfromresource} for
1409loading from resource data.
1410
1411\membersection{::wxResourceAddIdentifier}\label{wxresourceaddidentifier}
1412
1413\func{bool}{wxResourceAddIdentifier}{\param{const wxString\& }{name}, \param{int }{value}}
1414
1415Used 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
1417perhaps for implementing resource functionality for interpreted languages.
1418
1419\membersection{::wxResourceClear}
1420
1421\func{void}{wxResourceClear}{\void}
1422
1423Clears the wxWindows resource table.
1424
1425\membersection{::wxResourceCreateBitmap}
1426
1427\func{wxBitmap *}{wxResourceCreateBitmap}{\param{const wxString\& }{resource}}
1428
1429Creates a new bitmap from a file, static data, or Windows resource, given a valid
1430wxWindows bitmap resource identifier. For example, if the .WXR file contains
1431the following:
1432
1433\begin{verbatim}
1434static 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
1439then 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
1449Creates a new icon from a file, static data, or Windows resource, given a valid
1450wxWindows icon resource identifier. For example, if the .WXR file contains
1451the following:
1452
1453\begin{verbatim}
1454static 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
1459then 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
1469Creates a new menu bar given a valid wxWindows menubar resource
1470identifier. For example, if the .WXR file contains the following:
1471
1472\begin{verbatim}
1473static 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
1488then 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
1499Used for retrieving the integer value associated with an identifier.
1500A zero value indicates that the identifier was not found.
1501
1502See \helpref{wxResourceAddIdentifier}{wxresourceaddidentifier}.
1503
1504\membersection{::wxResourceParseData}\label{wxresourcedata}
1505
1506\func{bool}{wxResourceParseData}{\param{const wxString\& }{resource}, \param{wxResourceTable *}{table = NULL}}
1507
1508Parses a string containing one or more wxWindows resource objects. If
1509the resource objects are global static data that are included into the
1510C++ program, then this function must be called for each variable
1511containing the resource data, to make it known to wxWindows.
1512
1513{\it resource} should contain data in the following form:
1514
1515\begin{verbatim}
1516dialog(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
1529This function will typically be used after including a {\tt .wxr} file into
1530a C++ program as follows:
1531
1532\begin{verbatim}
1533#include "dialog1.wxr"
1534\end{verbatim}
1535
1536Each of the contained resources will declare a new C++ variable, and each
1537of 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
1543Parses a file containing one or more wxWindows resource objects
1544in C++-compatible syntax. Use this function to dynamically load
1545wxWindows resource data.
1546
1547\membersection{::wxResourceParseString}\label{wxresourceparsestring}
1548
1549\func{bool}{wxResourceParseString}{\param{const wxString\& }{resource}, \param{wxResourceTable *}{table = NULL}}
1550
1551Parses a string containing one or more wxWindows resource objects. If
1552the resource objects are global static data that are included into the
1553C++ program, then this function must be called for each variable
1554containing the resource data, to make it known to wxWindows.
1555
1556{\it resource} should contain data with the following form:
1557
1558\begin{verbatim}
1559static 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
1572This function will typically be used after calling \helpref{wxLoadUserResource}{wxloaduserresource} to
1573load 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
1582Makes \verb$#$included XBM or XPM bitmap data known to the wxWindows resource system.
1583This is required if other resources will use the bitmap data, since otherwise there
1584is no connection between names used in resources, and the global bitmap data.
1585
1586\membersection{::wxResourceRegisterIconData}
1587
1588Another name for \helpref{wxResourceRegisterBitmapData}{registerbitmapdata}.
1589
6fb26ea3
JS
1590\section{Log functions}\label{logfunctions}
1591
1592These functions provide a variety of logging functions: see \helpref{Log classes overview}{wxlogoverview} for
1593further information.
1594
1595\membersection{::wxLogError}\label{wxlogerror}
1596
1597\func{void}{wxLogError}{\param{const char*}{ formatString}, \param{...}{}}
1598
1599The function to use for error messages, i.e. the
1600messages that must be shown to the user. The default processing is to pop up a
1601message box to inform the user about it.
1602
1603\membersection{::wxLogFatalError}\label{wxlogfatalerror}
1604
1605\func{void}{wxLogFatalError}{\param{const char*}{ formatString}, \param{...}{}}
1606
1607Like \helpref{wxLogError}{wxlogerror}, but also
1608terminates the program with the exit code 3. Using {\it abort()} standard
1609function 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
1615For warnings - they are also normally shown to the
1616user, but don't interrupt the program work.
1617
1618\membersection{::wxLogMessage}\label{wxlogmessage}
1619
1620\func{void}{wxLogMessage}{\param{const char*}{ formatString}, \param{...}{}}
1621
1622for all normal, informational messages. They also
1623appear in a message box by default (but it can be changed). Notice
1624that the standard behaviour is to not show informational messages if there are
1625any errors later - the logic being that the later error messages make the
1626informational messages preceding them meaningless.
1627
1628\membersection{::wxLogVerbose}\label{wxlogverbose}
1629
1630\func{void}{wxLogVerbose}{\param{const char*}{ formatString}, \param{...}{}}
1631
1632For verbose output. Normally, it's suppressed, but
1633might be activated if the user wishes to know more details about the program
1634progress (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
1640For status messages - they will go into the status
1641bar 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
1647Mostly used by wxWindows itself, but might be
1648handy for logging errors after system call (API function) failure. It logs the
1649specified message text as well as the last system error code ({\it errno} or {\it ::GetLastError()} depending
1650on the platform) and the corresponding error
1651message. The second form of this function takes the error code explitly as the
1652first argument.
1653
1654\membersection{::wxLogDebug}\label{wxlogdebug}
1655
1656\func{void}{wxLogDebug}{\param{const char*}{ formatString}, \param{...}{}}
1657
1658The right function for debug output. It only
1659does anything at all in the debug mode (when the preprocessor symbol \_\_WXDEBUG\_\_ is defined)
1660and 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
1668As {\bf wxLogDebug}, only does something in debug
1669build. The reason for making it a separate function from it is that usually
1670there are a lot of trace messages, so it might make sense to separate them
1671from other debug messages which would be flooded in them. Moreover, the second
1672version of this function takes a trace mask as the first argument which allows
1673to 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
1684Useful macros and functins for error checking and defensive programming. ASSERTs are only
1685compiled if \_\_WXDEBUG\_\_ is defined, whereas CHECK macros stay in release
1686builds.
1687
1688\membersection{::wxOnAssert}\label{wxonassert}
1689
1690\func{void}{wxOnAssert}{\param{const char*}{ fileName}, \param{int}{ lineNumber}, \param{const char*}{ msg = NULL}}
1691
1692This function may be redefined to do something non trivial and is called
1693whenever one of debugging macros fails (i.e. condition is false in an
1694assertion). TODO: this should probably be an overridable in wxApp.
1695
1696\membersection{wxASSERT}\label{wxassert}
1697
1698\func{}{wxASSERT}{\param{}{condition}}
1699
1700Assert 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
1706Assert 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
1712Will 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
1718Will 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
1724Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
1725This 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
1731Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
1732This check is done even in release mode.
1733