fixed wxDos2UnixFilename description
[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 and macros defined in wxWindows are described here.
6
7 \section{Version macros}\label{versionfunctions}
8
9 The following constants are defined in wxWindows:
10
11 \begin{itemize}\itemsep=0pt
12 \item {\tt wxMAJOR\_VERSION} is the major version of wxWindows
13 \item {\tt wxMINOR\_VERSION} is the minor version of wxWindows
14 \item {\tt wxRELASE\_NUMBER} is the release number
15 \end{itemize}
16
17 For example, the values or these constants for wxWindows 2.1.15 are 2, 1 and
18 15.
19
20 Additionally, {\tt wxVERSION\_STRING} is a user-readable string containing
21 the full wxWindows version and {\tt wxVERSION\_NUMBER} is a combination of the
22 three version numbers above: for 2.1.15, it is 2115 and it is 2200 for
23 wxWindows 2.2.
24
25 \wxheading{Include files}
26
27 <wx/version.h> or <wx/defs.h>
28
29 \membersection{wxCHECK\_VERSION}\label{wxcheckversion}
30
31 \func{bool}{wxCHECK\_VERSION}{\param{}{major, minor, release}}
32
33 This is a macro which evaluates to true if the current wxWindows version is at
34 least major.minor.release.
35
36 For example, to test if the program is compiled with wxWindows 2.2 or higher,
37 the following can be done:
38
39 \begin{verbatim}
40 wxString s;
41 #if wxCHECK_VERSION(2, 2, 0)
42 if ( s.StartsWith("foo") )
43 #else // replacement code for old version
44 if ( strncmp(s, "foo", 3) == 0 )
45 #endif
46 {
47 ...
48 }
49 \end{verbatim}
50
51 \section{Thread functions}\label{threadfunctions}
52
53 \wxheading{Include files}
54
55 <wx/thread.h>
56
57 \wxheading{See also}
58
59 \helpref{wxThread}{wxthread}, \helpref{wxMutex}{wxmutex}, \helpref{Multithreading overview}{wxthreadoverview}
60
61 \membersection{::wxMutexGuiEnter}\label{wxmutexguienter}
62
63 \func{void}{wxMutexGuiEnter}{\void}
64
65 This function must be called when any thread other than the main GUI thread
66 wants to get access to the GUI library. This function will block the execution
67 of the calling thread until the main thread (or any other thread holding the
68 main GUI lock) leaves the GUI library and no other thread will enter the GUI
69 library until the calling thread calls \helpref{::wxMutexGuiLeave()}{wxmutexguileave}.
70
71 Typically, these functions are used like this:
72
73 \begin{verbatim}
74 void MyThread::Foo(void)
75 {
76 // before doing any GUI calls we must ensure that this thread is the only
77 // one doing it!
78
79 wxMutexGuiEnter();
80
81 // Call GUI here:
82 my_window->DrawSomething();
83
84 wxMutexGuiLeave();
85 }
86 \end{verbatim}
87
88 Note that under GTK, no creation of top-level windows is allowed in any
89 thread but the main one.
90
91 This function is only defined on platforms which support preemptive
92 threads.
93
94 \membersection{::wxMutexGuiLeave}\label{wxmutexguileave}
95
96 \func{void}{wxMutexGuiLeave}{\void}
97
98 See \helpref{::wxMutexGuiEnter()}{wxmutexguienter}.
99
100 This function is only defined on platforms which support preemptive
101 threads.
102
103 \section{File functions}\label{filefunctions}
104
105 \wxheading{Include files}
106
107 <wx/utils.h>
108
109 \wxheading{See also}
110
111 \helpref{wxPathList}{wxpathlist}, \helpref{wxDir}{wxdir}, \helpref{wxFile}{wxfile}
112
113 \membersection{::wxDirExists}
114
115 \func{bool}{wxDirExists}{\param{const wxString\& }{dirname}}
116
117 Returns TRUE if the directory exists.
118
119 \membersection{::wxDos2UnixFilename}
120
121 \func{void}{wxDos2UnixFilename}{\param{wxChar *}{s}}
122
123 Converts a DOS to a Unix filename by replacing backslashes with forward
124 slashes.
125
126 \membersection{::wxFileExists}
127
128 \func{bool}{wxFileExists}{\param{const wxString\& }{filename}}
129
130 Returns TRUE if the file exists. It also returns TRUE if the file is
131 a directory.
132
133 \membersection{::wxFileModificationTime}\label{wxfilemodificationtime}
134
135 \func{time\_t}{wxFileModificationTime}{\param{const wxString\& }{filename}}
136
137 Returns time of last modification of given file.
138
139 \membersection{::wxFileNameFromPath}
140
141 \func{wxString}{wxFileNameFromPath}{\param{const wxString\& }{path}}
142
143 \func{char*}{wxFileNameFromPath}{\param{char* }{path}}
144
145 Returns the filename for a full path. The second form returns a pointer to
146 temporary storage that should not be deallocated.
147
148 \membersection{::wxFindFirstFile}\label{wxfindfirstfile}
149
150 \func{wxString}{wxFindFirstFile}{\param{const char*}{spec}, \param{int}{ flags = 0}}
151
152 This function does directory searching; returns the first file
153 that matches the path {\it spec}, or the empty string. Use \helpref{wxFindNextFile}{wxfindnextfile} to
154 get the next matching file. Neither will report the current directory "." or the
155 parent directory "..".
156
157 {\it spec} may contain wildcards.
158
159 {\it flags} may be wxDIR for restricting the query to directories, wxFILE for files or zero for either.
160
161 For example:
162
163 \begin{verbatim}
164 wxString f = wxFindFirstFile("/home/project/*.*");
165 while ( !f.IsEmpty() )
166 {
167 ...
168 f = wxFindNextFile();
169 }
170 \end{verbatim}
171
172 \membersection{::wxFindNextFile}\label{wxfindnextfile}
173
174 \func{wxString}{wxFindNextFile}{\void}
175
176 Returns the next file that matches the path passed to \helpref{wxFindFirstFile}{wxfindfirstfile}.
177
178 See \helpref{wxFindFirstFile}{wxfindfirstfile} for an example.
179
180 \membersection{::wxGetOSDirectory}\label{wxgetosdirectory}
181
182 \func{wxString}{wxGetOSDirectory}{\void}
183
184 Returns the Windows directory under Windows; on other platforms returns the empty string.
185
186 \membersection{::wxIsAbsolutePath}
187
188 \func{bool}{wxIsAbsolutePath}{\param{const wxString\& }{filename}}
189
190 Returns TRUE if the argument is an absolute filename, i.e. with a slash
191 or drive name at the beginning.
192
193 \membersection{::wxPathOnly}
194
195 \func{wxString}{wxPathOnly}{\param{const wxString\& }{path}}
196
197 Returns the directory part of the filename.
198
199 \membersection{::wxUnix2DosFilename}
200
201 \func{void}{wxUnix2DosFilename}{\param{const wxString\& }{s}}
202
203 Converts a Unix to a DOS filename by replacing forward
204 slashes with backslashes.
205
206 \membersection{::wxConcatFiles}
207
208 \func{bool}{wxConcatFiles}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2},
209 \param{const wxString\& }{file3}}
210
211 Concatenates {\it file1} and {\it file2} to {\it file3}, returning
212 TRUE if successful.
213
214 \membersection{::wxCopyFile}
215
216 \func{bool}{wxCopyFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}}
217
218 Copies {\it file1} to {\it file2}, returning TRUE if successful.
219
220 \membersection{::wxGetCwd}\label{wxgetcwd}
221
222 \func{wxString}{wxGetCwd}{\void}
223
224 Returns a string containing the current (or working) directory.
225
226 \membersection{::wxGetWorkingDirectory}
227
228 \func{wxString}{wxGetWorkingDirectory}{\param{char*}{buf=NULL}, \param{int }{sz=1000}}
229
230 This function is obsolete: use \helpref{wxGetCwd}{wxgetcwd} instead.
231
232 Copies the current working directory into the buffer if supplied, or
233 copies the working directory into new storage (which you must delete yourself)
234 if the buffer is NULL.
235
236 {\it sz} is the size of the buffer if supplied.
237
238 \membersection{::wxGetTempFileName}
239
240 \func{char*}{wxGetTempFileName}{\param{const wxString\& }{prefix}, \param{char* }{buf=NULL}}
241
242 \func{bool}{wxGetTempFileName}{\param{const wxString\& }{prefix}, \param{wxString\& }{buf}}
243
244 Makes a temporary filename based on {\it prefix}, opens and closes the file,
245 and places the name in {\it buf}. If {\it buf} is NULL, new store
246 is allocated for the temporary filename using {\it new}.
247
248 Under Windows, the filename will include the drive and name of the
249 directory allocated for temporary files (usually the contents of the
250 TEMP variable). Under Unix, the {\tt /tmp} directory is used.
251
252 It is the application's responsibility to create and delete the file.
253
254 \membersection{::wxIsWild}\label{wxiswild}
255
256 \func{bool}{wxIsWild}{\param{const wxString\& }{pattern}}
257
258 Returns TRUE if the pattern contains wildcards. See \helpref{wxMatchWild}{wxmatchwild}.
259
260 \membersection{::wxMatchWild}\label{wxmatchwild}
261
262 \func{bool}{wxMatchWild}{\param{const wxString\& }{pattern}, \param{const wxString\& }{text}, \param{bool}{ dot\_special}}
263
264 Returns TRUE if the {\it pattern}\/ matches the {\it text}\/; if {\it
265 dot\_special}\/ is TRUE, filenames beginning with a dot are not matched
266 with wildcard characters. See \helpref{wxIsWild}{wxiswild}.
267
268 \membersection{::wxMkdir}
269
270 \func{bool}{wxMkdir}{\param{const wxString\& }{dir}, \param{int }{perm = 0777}}
271
272 Makes the directory {\it dir}, returning TRUE if successful.
273
274 {\it perm} is the access mask for the directory for the systems on which it is
275 supported (Unix) and doesn't have effect for the other ones.
276
277 \membersection{::wxRemoveFile}
278
279 \func{bool}{wxRemoveFile}{\param{const wxString\& }{file}}
280
281 Removes {\it file}, returning TRUE if successful.
282
283 \membersection{::wxRenameFile}
284
285 \func{bool}{wxRenameFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}}
286
287 Renames {\it file1} to {\it file2}, returning TRUE if successful.
288
289 \membersection{::wxRmdir}
290
291 \func{bool}{wxRmdir}{\param{const wxString\& }{dir}, \param{int}{ flags=0}}
292
293 Removes the directory {\it dir}, returning TRUE if successful. Does not work under VMS.
294
295 The {\it flags} parameter is reserved for future use.
296
297 \membersection{::wxSetWorkingDirectory}
298
299 \func{bool}{wxSetWorkingDirectory}{\param{const wxString\& }{dir}}
300
301 Sets the current working directory, returning TRUE if the operation succeeded.
302 Under MS Windows, the current drive is also changed if {\it dir} contains a drive specification.
303
304 \membersection{::wxSplitPath}\label{wxsplitfunction}
305
306 \func{void}{wxSplitPath}{\param{const char *}{ fullname}, \param{wxString *}{ path}, \param{wxString *}{ name}, \param{wxString *}{ ext}}
307
308 This function splits a full file name into components: the path (including possible disk/drive
309 specification under Windows), the base name and the extension. Any of the output parameters
310 ({\it path}, {\it name} or {\it ext}) may be NULL if you are not interested in the value of
311 a particular component.
312
313 wxSplitPath() will correctly handle filenames with both DOS and Unix path separators under
314 Windows, however it will not consider backslashes as path separators under Unix (where backslash
315 is a valid character in a filename).
316
317 On entry, {\it fullname} should be non-NULL (it may be empty though).
318
319 On return, {\it path} contains the file path (without the trailing separator), {\it name}
320 contains the file name and {\it ext} contains the file extension without leading dot. All
321 three of them may be empty if the corresponding component is. The old contents of the
322 strings pointed to by these parameters will be overwritten in any case (if the pointers
323 are not NULL).
324
325 \membersection{::wxTransferFileToStream}\label{wxtransferfiletostream}
326
327 \func{bool}{wxTransferFileToStream}{\param{const wxString\& }{filename}, \param{ostream\& }{stream}}
328
329 Copies the given file to {\it stream}. Useful when converting an old application to
330 use streams (within the document/view framework, for example).
331
332 Use of this function requires the file wx\_doc.h to be included.
333
334 \membersection{::wxTransferStreamToFile}\label{wxtransferstreamtofile}
335
336 \func{bool}{wxTransferStreamToFile}{\param{istream\& }{stream} \param{const wxString\& }{filename}}
337
338 Copies the given stream to the file {\it filename}. Useful when converting an old application to
339 use streams (within the document/view framework, for example).
340
341 Use of this function requires the file wx\_doc.h to be included.
342
343 \section{Network functions}\label{networkfunctions}
344
345 \membersection{::wxGetFullHostName}\label{wxgetfullhostname}
346
347 \func{wxString}{wxGetFullHostName}{\void}
348
349 Returns the FQDN (fully qualified domain host name) or an empty string on
350 error.
351
352 \wxheading{See also}
353
354 \helpref{wxGetHostName}{wxgethostname}
355
356 \wxheading{Include files}
357
358 <wx/utils.h>
359
360 \membersection{::wxGetEmailAddress}\label{wxgetemailaddress}
361
362 \func{bool}{wxGetEmailAddress}{\param{const wxString\& }{buf}, \param{int }{sz}}
363
364 Copies the user's email address into the supplied buffer, by
365 concatenating the values returned by \helpref{wxGetFullHostName}{wxgetfullhostname}\rtfsp
366 and \helpref{wxGetUserId}{wxgetuserid}.
367
368 Returns TRUE if successful, FALSE otherwise.
369
370 \wxheading{Include files}
371
372 <wx/utils.h>
373
374 \membersection{::wxGetHostName}\label{wxgethostname}
375
376 \func{wxString}{wxGetHostName}{\void}
377
378 \func{bool}{wxGetHostName}{\param{char * }{buf}, \param{int }{sz}}
379
380 Copies the current host machine's name into the supplied buffer. Please note
381 that the returned name is {\it not} fully qualified, i.e. it does not include
382 the domain name.
383
384 Under Windows or NT, this function first looks in the environment
385 variable SYSTEM\_NAME; if this is not found, the entry {\bf HostName}\rtfsp
386 in the {\bf wxWindows} section of the WIN.INI file is tried.
387
388 The first variant of this function returns the hostname if successful or an
389 empty string otherwise. The second (deprecated) function returns TRUE
390 if successful, FALSE otherwise.
391
392 \wxheading{See also}
393
394 \helpref{wxGetFullHostName}{wxgetfullhostname}
395
396 \wxheading{Include files}
397
398 <wx/utils.h>
399
400 \section{User identification}\label{useridfunctions}
401
402 \membersection{::wxGetUserId}\label{wxgetuserid}
403
404 \func{wxString}{wxGetUserId}{\void}
405
406 \func{bool}{wxGetUserId}{\param{char * }{buf}, \param{int }{sz}}
407
408 This function returns the "user id" also known as "login name" under Unix i.e.
409 something like "jsmith". It uniquely identifies the current user (on this system).
410
411 Under Windows or NT, this function first looks in the environment
412 variables USER and LOGNAME; if neither of these is found, the entry {\bf UserId}\rtfsp
413 in the {\bf wxWindows} section of the WIN.INI file is tried.
414
415 The first variant of this function returns the login name if successful or an
416 empty string otherwise. The second (deprecated) function returns TRUE
417 if successful, FALSE otherwise.
418
419 \wxheading{See also}
420
421 \helpref{wxGetUserName}{wxgetusername}
422
423 \wxheading{Include files}
424
425 <wx/utils.h>
426
427 \membersection{::wxGetUserName}\label{wxgetusername}
428
429 \func{wxString}{wxGetUserName}{\void}
430
431 \func{bool}{wxGetUserName}{\param{char * }{buf}, \param{int }{sz}}
432
433 This function returns the full user name (something like "Mr. John Smith").
434
435 Under Windows or NT, this function looks for the entry {\bf UserName}\rtfsp
436 in the {\bf wxWindows} section of the WIN.INI file. If PenWindows
437 is running, the entry {\bf Current} in the section {\bf User} of
438 the PENWIN.INI file is used.
439
440 The first variant of this function returns the user name if successful or an
441 empty string otherwise. The second (deprecated) function returns TRUE
442 if successful, FALSE otherwise.
443
444 \wxheading{See also}
445
446 \helpref{wxGetUserId}{wxgetuserid}
447
448 \wxheading{Include files}
449
450 <wx/utils.h>
451
452 \section{String functions}
453
454 \membersection{::copystring}
455
456 \func{char*}{copystring}{\param{const char* }{s}}
457
458 Makes a copy of the string {\it s} using the C++ new operator, so it can be
459 deleted with the {\it delete} operator.
460
461 \membersection{::wxStringMatch}
462
463 \func{bool}{wxStringMatch}{\param{const wxString\& }{s1}, \param{const wxString\& }{s2},\\
464 \param{bool}{ subString = TRUE}, \param{bool}{ exact = FALSE}}
465
466 Returns TRUE if the substring {\it s1} is found within {\it s2},
467 ignoring case if {\it exact} is FALSE. If {\it subString} is FALSE,
468 no substring matching is done.
469
470 \membersection{::wxStringEq}\label{wxstringeq}
471
472 \func{bool}{wxStringEq}{\param{const wxString\& }{s1}, \param{const wxString\& }{s2}}
473
474 A macro defined as:
475
476 \begin{verbatim}
477 #define wxStringEq(s1, s2) (s1 && s2 && (strcmp(s1, s2) == 0))
478 \end{verbatim}
479
480 \membersection{::IsEmpty}\label{isempty}
481
482 \func{bool}{IsEmpty}{\param{const char *}{ p}}
483
484 Returns TRUE if the string is empty, FALSE otherwise. It is safe to pass NULL
485 pointer to this function and it will return TRUE for it.
486
487 \membersection{::Stricmp}\label{stricmp}
488
489 \func{int}{Stricmp}{\param{const char *}{p1}, \param{const char *}{p2}}
490
491 Returns a negative value, 0, or positive value if {\it p1} is less than, equal
492 to or greater than {\it p2}. The comparison is case-insensitive.
493
494 This function complements the standard C function {\it strcmp()} which performs
495 case-sensitive comparison.
496
497 \membersection{::Strlen}\label{strlen}
498
499 \func{size\_t}{Strlen}{\param{const char *}{ p}}
500
501 This is a safe version of standard function {\it strlen()}: it does exactly the
502 same thing (i.e. returns the length of the string) except that it returns 0 if
503 {\it p} is the NULL pointer.
504
505 \membersection{::wxGetTranslation}\label{wxgettranslation}
506
507 \func{const char *}{wxGetTranslation}{\param{const char * }{str}}
508
509 This function returns the translation of string {\it str} in the current
510 \helpref{locale}{wxlocale}. If the string is not found in any of the loaded
511 message catalogs (see \helpref{internationalization overview}{internationalization}), the
512 original string is returned. In debug build, an error message is logged - this
513 should help to find the strings which were not yet translated. As this function
514 is used very often, an alternative syntax is provided: the \_() macro is
515 defined as wxGetTranslation().
516
517 \membersection{::wxSnprintf}\label{wxsnprintf}
518
519 \func{int}{wxSnprintf}{\param{wxChar *}{buf}, \param{size\_t }{len}, \param{const wxChar *}{format}, \param{}{...}}
520
521 This function replaces the dangerous standard function {\tt sprintf()} and is
522 like {\tt snprintf()} available on some platforms. The only difference with
523 sprintf() is that an additional argument - buffer size - is taken and the
524 buffer is never overflowed.
525
526 Returns the number of characters copied to the buffer or -1 if there is not
527 enough space.
528
529 \wxheading{See also}
530
531 \helpref{wxVsnprintf}{wxvsnprintf}, \helpref{wxString::Printf}{wxstringprintf}
532
533 \membersection{::wxVsnprintf}\label{wxvsnprintf}
534
535 \func{int}{wxVsnprintf}{\param{wxChar *}{buf}, \param{size\_t }{len}, \param{const wxChar *}{format}, \param{va\_list }{argptr}}
536
537 The same as \helpref{wxSnprintf}{wxsnprintf} but takes a {\tt va\_list}
538 argument instead of arbitrary number of parameters.
539
540 \wxheading{See also}
541
542 \helpref{wxSnprintf}{wxsnprintf}, \helpref{wxString::PrintfV}{wxstringprintfv}
543
544 \section{Dialog functions}\label{dialogfunctions}
545
546 Below are a number of convenience functions for getting input from the
547 user or displaying messages. Note that in these functions the last three
548 parameters are optional. However, it is recommended to pass a parent frame
549 parameter, or (in MS Windows or Motif) the wrong window frame may be brought to
550 the front when the dialog box is popped up.
551
552 \membersection{::wxCreateFileTipProvider}\label{wxcreatefiletipprovider}
553
554 \func{wxTipProvider *}{wxCreateFileTipProvider}{\param{const wxString\& }{filename},
555 \param{size\_t }{currentTip}}
556
557 This function creates a \helpref{wxTipProvider}{wxtipprovider} which may be
558 used with \helpref{wxShowTip}{wxshowtip}.
559
560 \docparam{filename}{The name of the file containing the tips, one per line}
561 \docparam{currentTip}{The index of the first tip to show - normally this index
562 is remembered between the 2 program runs.}
563
564 \wxheading{See also}
565
566 \helpref{Tips overview}{tipsoverview}
567
568 \wxheading{Include files}
569
570 <wx/tipdlg.h>
571
572 \membersection{::wxFileSelector}\label{wxfileselector}
573
574 \func{wxString}{wxFileSelector}{\param{const wxString\& }{message}, \param{const wxString\& }{default\_path = ""},\\
575 \param{const wxString\& }{default\_filename = ""}, \param{const wxString\& }{default\_extension = ""},\\
576 \param{const wxString\& }{wildcard = ``*.*''}, \param{int }{flags = 0}, \param{wxWindow *}{parent = ""},\\
577 \param{int}{ x = -1}, \param{int}{ y = -1}}
578
579 Pops up a file selector box. In Windows, this is the common file selector
580 dialog. In X, this is a file selector box with the same functionality.
581 The path and filename are distinct elements of a full file pathname.
582 If path is empty, the current directory will be used. If filename is empty,
583 no default filename will be supplied. The wildcard determines what files
584 are displayed in the file selector, and file extension supplies a type
585 extension for the required filename. Flags may be a combination of wxOPEN,
586 wxSAVE, wxOVERWRITE\_PROMPT, wxHIDE\_READONLY, wxFILE\_MUST\_EXIST, wxMULTIPLE or 0.
587
588 Both the Unix and Windows versions implement a wildcard filter. Typing a
589 filename containing wildcards (*, ?) in the filename text item, and
590 clicking on Ok, will result in only those files matching the pattern being
591 displayed.
592
593 The wildcard may be a specification for multiple types of file
594 with a description for each, such as:
595
596 \begin{verbatim}
597 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
598 \end{verbatim}
599
600 The application must check for an empty return value (the user pressed
601 Cancel). For example:
602
603 \begin{verbatim}
604 const wxString& s = wxFileSelector("Choose a file to open");
605 if (s)
606 {
607 ...
608 }
609 \end{verbatim}
610
611 \wxheading{Include files}
612
613 <wx/filedlg.h>
614
615 \membersection{::wxGetColourFromUser}\label{wxgetcolourfromuser}
616
617 \func{wxColour}{wxGetColourFromUser}{\param{wxWindow *}{parent}, \param{const wxColour\& }{colInit}}
618
619 Shows the colour selection dialog and returns the colour selected by user or
620 invalid colour (use \helpref{wxColour::Ok}{wxcolourok} to test whether a colour
621 is valid) if the dialog was cancelled.
622
623 \wxheading{Parameters}
624
625 \docparam{parent}{The parent window for the colour selection dialog}
626
627 \docparam{colInit}{If given, this will be the colour initially selected in the dialog.}
628
629 \wxheading{Include files}
630
631 <wx/colordlg.h>
632
633 \membersection{::wxGetMultipleChoices}\label{wxgetmultiplechoices}
634
635 \func{size\_t}{wxGetMultipleChoices}{\\
636 \param{wxArrayInt\& }{selections},\\
637 \param{const wxString\& }{message},\\
638 \param{const wxString\& }{caption},\\
639 \param{const wxArrayString\& }{aChoices},\\
640 \param{wxWindow *}{parent = NULL},\\
641 \param{int}{ x = -1}, \param{int}{ y = -1},\\
642 \param{bool}{ centre = TRUE},\\
643 \param{int }{width=150}, \param{int }{height=200}}
644
645 \func{size\_t}{wxGetMultipleChoices}{\\
646 \param{wxArrayInt\& }{selections},\\
647 \param{const wxString\& }{message},\\
648 \param{const wxString\& }{caption},\\
649 \param{int}{ n}, \param{const wxString\& }{choices[]},\\
650 \param{wxWindow *}{parent = NULL},\\
651 \param{int}{ x = -1}, \param{int}{ y = -1},\\
652 \param{bool}{ centre = TRUE},\\
653 \param{int }{width=150}, \param{int }{height=200}}
654
655 Pops up a dialog box containing a message, OK/Cancel buttons and a
656 multiple-selection listbox. The user may choose an arbitrary (including 0)
657 number of items in the listbox whose indices will be returned in
658 {\it selection} array. The initial contents of this array will be used to
659 select the items when the dialog is shown.
660
661 You may pass the list of strings to choose from either using {\it choices}
662 which is an array of {\it n} strings for the listbox or by using a single
663 {\it aChoices} parameter of type \helpref{wxArrayString}{wxarraystring}.
664
665 If {\it centre} is TRUE, the message text (which may include new line
666 characters) is centred; if FALSE, the message is left-justified.
667
668 \wxheading{Include files}
669
670 <wx/choicdlg.h>
671
672 \membersection{::wxGetNumberFromUser}\label{wxgetnumberfromuser}
673
674 \func{long}{wxGetNumberFromUser}{
675 \param{const wxString\& }{message},
676 \param{const wxString\& }{prompt},
677 \param{const wxString\& }{caption},
678 \param{long }{value},
679 \param{long }{min = 0},
680 \param{long }{max = 100},
681 \param{wxWindow *}{parent = NULL},
682 \param{const wxPoint\& }{pos = wxDefaultPosition}}
683
684 Shows a dialog asking the user for numeric input. The dialogs title is set to
685 {\it caption}, it contains a (possibly) multiline {\it message} above the
686 single line {\it prompt} and the zone for entering the number.
687
688 The number entered must be in the range {\it min}..{\it max} (both of which
689 should be positive) and {\it value} is the initial value of it. If the user
690 enters an invalid value or cancels the dialog, the function will return -1.
691
692 Dialog is centered on its {\it parent} unless an explicit position is given in
693 {\it pos}.
694
695 \wxheading{Include files}
696
697 <wx/textdlg.h>
698
699 \membersection{::wxGetPasswordFromUser}\label{wxgetpasswordfromuser}
700
701 \func{wxString}{wxGetTextFromUser}{\param{const wxString\& }{message}, \param{const wxString\& }{caption = ``Input text"},\\
702 \param{const wxString\& }{default\_value = ``"}, \param{wxWindow *}{parent = NULL}}
703
704 Similar to \helpref{wxGetTextFromUser}{wxgettextfromuser} but the text entered
705 in the dialog is not shown on screen but replaced with stars. This is intended
706 to be used for entering passwords as the function name implies.
707
708 \wxheading{Include files}
709
710 <wx/textdlg.h>
711
712 \membersection{::wxGetTextFromUser}\label{wxgettextfromuser}
713
714 \func{wxString}{wxGetTextFromUser}{\param{const wxString\& }{message}, \param{const wxString\& }{caption = ``Input text"},\\
715 \param{const wxString\& }{default\_value = ``"}, \param{wxWindow *}{parent = NULL},\\
716 \param{int}{ x = -1}, \param{int}{ y = -1}, \param{bool}{ centre = TRUE}}
717
718 Pop up a dialog box with title set to {\it caption}, {\it message}, and a
719 \rtfsp{\it default\_value}. The user may type in text and press OK to return this text,
720 or press Cancel to return the empty string.
721
722 If {\it centre} is TRUE, the message text (which may include new line characters)
723 is centred; if FALSE, the message is left-justified.
724
725 \wxheading{Include files}
726
727 <wx/textdlg.h>
728
729 \membersection{::wxGetMultipleChoice}\label{wxgetmultiplechoice}
730
731 \func{int}{wxGetMultipleChoice}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
732 \param{int }{nsel}, \param{int *}{selection},
733 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
734 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
735
736 Pops up a dialog box containing a message, OK/Cancel buttons and a multiple-selection
737 listbox. The user may choose one or more item(s) and press OK or Cancel.
738
739 The number of initially selected choices, and array of the selected indices,
740 are passed in; this array will contain the user selections on exit, with
741 the function returning the number of selections. {\it selection} must be
742 as big as the number of choices, in case all are selected.
743
744 If Cancel is pressed, -1 is returned.
745
746 {\it choices} is an array of {\it n} strings for the listbox.
747
748 If {\it centre} is TRUE, the message text (which may include new line characters)
749 is centred; if FALSE, the message is left-justified.
750
751 \wxheading{Include files}
752
753 <wx/choicdlg.h>
754
755 \membersection{::wxGetSingleChoice}\label{wxgetsinglechoice}
756
757 \func{wxString}{wxGetSingleChoice}{\param{const wxString\& }{message},\\
758 \param{const wxString\& }{caption},\\
759 \param{const wxArrayString\& }{aChoices},\\
760 \param{wxWindow *}{parent = NULL},\\
761 \param{int}{ x = -1}, \param{int}{ y = -1},\\
762 \param{bool}{ centre = TRUE},\\
763 \param{int }{width=150}, \param{int }{height=200}}
764
765 \func{wxString}{wxGetSingleChoice}{\param{const wxString\& }{message},\\
766 \param{const wxString\& }{caption},\\
767 \param{int}{ n}, \param{const wxString\& }{choices[]},\\
768 \param{wxWindow *}{parent = NULL},\\
769 \param{int}{ x = -1}, \param{int}{ y = -1},\\
770 \param{bool}{ centre = TRUE},\\
771 \param{int }{width=150}, \param{int }{height=200}}
772
773 Pops up a dialog box containing a message, OK/Cancel buttons and a
774 single-selection listbox. The user may choose an item and press OK to return a
775 string or Cancel to return the empty string. Use
776 \helpref{wxGetSingleChoiceIndex}{wxgetsinglechoiceindex} if empty string is a
777 valid choice and if you want to be able to detect pressing Cancel reliably.
778
779 You may pass the list of strings to choose from either using {\it choices}
780 which is an array of {\it n} strings for the listbox or by using a single
781 {\it aChoices} parameter of type \helpref{wxArrayString}{wxarraystring}.
782
783 If {\it centre} is TRUE, the message text (which may include new line
784 characters) is centred; if FALSE, the message is left-justified.
785
786 \wxheading{Include files}
787
788 <wx/choicdlg.h>
789
790 \membersection{::wxGetSingleChoiceIndex}\label{wxgetsinglechoiceindex}
791
792 \func{int}{wxGetSingleChoiceIndex}{\param{const wxString\& }{message},\\
793 \param{const wxString\& }{caption},\\
794 \param{const wxArrayString\& }{aChoices},\\
795 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
796 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
797
798 \func{int}{wxGetSingleChoiceIndex}{\param{const wxString\& }{message},\\
799 \param{const wxString\& }{caption},\\
800 \param{int}{ n}, \param{const wxString\& }{choices[]},\\
801 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
802 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
803
804 As {\bf wxGetSingleChoice} but returns the index representing the selected
805 string. If the user pressed cancel, -1 is returned.
806
807 \wxheading{Include files}
808
809 <wx/choicdlg.h>
810
811 \membersection{::wxGetSingleChoiceData}\label{wxgetsinglechoicedata}
812
813 \func{wxString}{wxGetSingleChoiceData}{\param{const wxString\& }{message},\\
814 \param{const wxString\& }{caption},\\
815 \param{const wxArrayString\& }{aChoices},\\
816 \param{const wxString\& }{client\_data[]},\\
817 \param{wxWindow *}{parent = NULL},\\
818 \param{int}{ x = -1}, \param{int}{ y = -1},\\
819 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
820
821 \func{wxString}{wxGetSingleChoiceData}{\param{const wxString\& }{message},\\
822 \param{const wxString\& }{caption},\\
823 \param{int}{ n}, \param{const wxString\& }{choices[]},\\
824 \param{const wxString\& }{client\_data[]},\\
825 \param{wxWindow *}{parent = NULL},\\
826 \param{int}{ x = -1}, \param{int}{ y = -1},\\
827 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
828
829 As {\bf wxGetSingleChoice} but takes an array of client data pointers
830 corresponding to the strings, and returns one of these pointers or NULL if
831 Cancel was pressed. The {\it client\_data} array must have the same number of
832 elements as {\it choices} or {\it aChoices}!
833
834 \wxheading{Include files}
835
836 <wx/choicdlg.h>
837
838 \membersection{::wxMessageBox}\label{wxmessagebox}
839
840 \func{int}{wxMessageBox}{\param{const wxString\& }{message}, \param{const wxString\& }{caption = ``Message"}, \param{int}{ style = wxOK \pipe wxCENTRE},\\
841 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1}}
842
843 General purpose message dialog. {\it style} may be a bit list of the
844 following identifiers:
845
846 \begin{twocollist}\itemsep=0pt
847 \twocolitem{wxYES\_NO}{Puts Yes and No buttons on the message box. May be combined with
848 wxCANCEL.}
849 \twocolitem{wxCANCEL}{Puts a Cancel button on the message box. May be combined with
850 wxYES\_NO or wxOK.}
851 \twocolitem{wxOK}{Puts an Ok button on the message box. May be combined with wxCANCEL.}
852 \twocolitem{wxCENTRE}{Centres the text.}
853 \twocolitem{wxICON\_EXCLAMATION}{Displays an exclamation mark symbol.}
854 \twocolitem{wxICON\_HAND}{Displays a hand symbol.}
855 \twocolitem{wxICON\_QUESTION}{Displays a question mark symbol.}
856 \twocolitem{wxICON\_INFORMATION}{Displays an information symbol.}
857 \end{twocollist}
858
859 The return value is one of: wxYES, wxNO, wxCANCEL, wxOK.
860
861 For example:
862
863 \begin{verbatim}
864 ...
865 int answer = wxMessageBox("Quit program?", "Confirm",
866 wxYES_NO | wxCANCEL, main_frame);
867 if (answer == wxYES)
868 delete main_frame;
869 ...
870 \end{verbatim}
871
872 {\it message} may contain newline characters, in which case the
873 message will be split into separate lines, to cater for large messages.
874
875 Under Windows, the native MessageBox function is used unless wxCENTRE
876 is specified in the style, in which case a generic function is used.
877 This is because the native MessageBox function cannot centre text.
878 The symbols are not shown when the generic function is used.
879
880 \wxheading{Include files}
881
882 <wx/msgdlg.h>
883
884 \membersection{::wxShowTip}\label{wxshowtip}
885
886 \func{bool}{wxShowTip}{\param{wxWindow *}{parent},
887 \param{wxTipProvider *}{tipProvider},
888 \param{bool }{showAtStartup = TRUE}}
889
890 This function shows a "startup tip" to the user.
891
892 \docparam{parent}{The parent window for the modal dialog}
893
894 \docparam{tipProvider}{An object which is used to get the text of the tips.
895 It may be created with the \helpref{wxCreateFileTipProvider}{wxcreatefiletipprovider} function.}
896
897 \docparam{showAtStartup}{Should be TRUE if startup tips are shown, FALSE
898 otherwise. This is used as the initial value for "Show tips at startup"
899 checkbox which is shown in the tips dialog.}
900
901 \wxheading{See also}
902
903 \helpref{Tips overview}{tipsoverview}
904
905 \wxheading{Include files}
906
907 <wx/tipdlg.h>
908
909 \section{GDI functions}\label{gdifunctions}
910
911 The following are relevant to the GDI (Graphics Device Interface).
912
913 \wxheading{Include files}
914
915 <wx/gdicmn.h>
916
917 \membersection{::wxColourDisplay}
918
919 \func{bool}{wxColourDisplay}{\void}
920
921 Returns TRUE if the display is colour, FALSE otherwise.
922
923 \membersection{::wxDisplayDepth}
924
925 \func{int}{wxDisplayDepth}{\void}
926
927 Returns the depth of the display (a value of 1 denotes a monochrome display).
928
929 \membersection{::wxDisplaySize}
930
931 \func{void}{wxDisplaySize}{\param{int *}{width}, \param{int *}{height}}
932
933 \func{wxSize}{wxGetDisplaySize}{\void}
934
935 Returns the display size in pixels.
936
937 \membersection{::wxDisplaySizeMM}
938
939 \func{void}{wxDisplaySizeMM}{\param{int *}{width}, \param{int *}{height}}
940
941 \func{wxSize}{wxGetDisplaySizeMM}{\void}
942
943 Returns the display size in millimeters.
944
945 \membersection{::wxMakeMetafilePlaceable}\label{wxmakemetafileplaceable}
946
947 \func{bool}{wxMakeMetafilePlaceable}{\param{const wxString\& }{filename}, \param{int }{minX}, \param{int }{minY},
948 \param{int }{maxX}, \param{int }{maxY}, \param{float }{scale=1.0}}
949
950 Given a filename for an existing, valid metafile (as constructed using \helpref{wxMetafileDC}{wxmetafiledc})
951 makes it into a placeable metafile by prepending a header containing the given
952 bounding box. The bounding box may be obtained from a device context after drawing
953 into it, using the functions wxDC::MinX, wxDC::MinY, wxDC::MaxX and wxDC::MaxY.
954
955 In addition to adding the placeable metafile header, this function adds
956 the equivalent of the following code to the start of the metafile data:
957
958 \begin{verbatim}
959 SetMapMode(dc, MM_ANISOTROPIC);
960 SetWindowOrg(dc, minX, minY);
961 SetWindowExt(dc, maxX - minX, maxY - minY);
962 \end{verbatim}
963
964 This simulates the wxMM\_TEXT mapping mode, which wxWindows assumes.
965
966 Placeable metafiles may be imported by many Windows applications, and can be
967 used in RTF (Rich Text Format) files.
968
969 {\it scale} allows the specification of scale for the metafile.
970
971 This function is only available under Windows.
972
973 \membersection{::wxSetCursor}\label{wxsetcursor}
974
975 \func{void}{wxSetCursor}{\param{wxCursor *}{cursor}}
976
977 Globally sets the cursor; only has an effect in Windows and GTK.
978 See also \helpref{wxCursor}{wxcursor}, \helpref{wxWindow::SetCursor}{wxwindowsetcursor}.
979
980 \section{Printer settings}\label{printersettings}
981
982 These routines are obsolete and should no longer be used!
983
984 The following functions are used to control PostScript printing. Under
985 Windows, PostScript output can only be sent to a file.
986
987 \wxheading{Include files}
988
989 <wx/dcps.h>
990
991 \membersection{::wxGetPrinterCommand}
992
993 \func{wxString}{wxGetPrinterCommand}{\void}
994
995 Gets the printer command used to print a file. The default is {\tt lpr}.
996
997 \membersection{::wxGetPrinterFile}
998
999 \func{wxString}{wxGetPrinterFile}{\void}
1000
1001 Gets the PostScript output filename.
1002
1003 \membersection{::wxGetPrinterMode}
1004
1005 \func{int}{wxGetPrinterMode}{\void}
1006
1007 Gets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
1008 The default is PS\_PREVIEW.
1009
1010 \membersection{::wxGetPrinterOptions}
1011
1012 \func{wxString}{wxGetPrinterOptions}{\void}
1013
1014 Gets the additional options for the print command (e.g. specific printer). The default is nothing.
1015
1016 \membersection{::wxGetPrinterOrientation}
1017
1018 \func{int}{wxGetPrinterOrientation}{\void}
1019
1020 Gets the orientation (PS\_PORTRAIT or PS\_LANDSCAPE). The default is PS\_PORTRAIT.
1021
1022 \membersection{::wxGetPrinterPreviewCommand}
1023
1024 \func{wxString}{wxGetPrinterPreviewCommand}{\void}
1025
1026 Gets the command used to view a PostScript file. The default depends on the platform.
1027
1028 \membersection{::wxGetPrinterScaling}
1029
1030 \func{void}{wxGetPrinterScaling}{\param{float *}{x}, \param{float *}{y}}
1031
1032 Gets the scaling factor for PostScript output. The default is 1.0, 1.0.
1033
1034 \membersection{::wxGetPrinterTranslation}
1035
1036 \func{void}{wxGetPrinterTranslation}{\param{float *}{x}, \param{float *}{y}}
1037
1038 Gets the translation (from the top left corner) for PostScript output. The default is 0.0, 0.0.
1039
1040 \membersection{::wxSetPrinterCommand}
1041
1042 \func{void}{wxSetPrinterCommand}{\param{const wxString\& }{command}}
1043
1044 Sets the printer command used to print a file. The default is {\tt lpr}.
1045
1046 \membersection{::wxSetPrinterFile}
1047
1048 \func{void}{wxSetPrinterFile}{\param{const wxString\& }{filename}}
1049
1050 Sets the PostScript output filename.
1051
1052 \membersection{::wxSetPrinterMode}
1053
1054 \func{void}{wxSetPrinterMode}{\param{int }{mode}}
1055
1056 Sets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
1057 The default is PS\_PREVIEW.
1058
1059 \membersection{::wxSetPrinterOptions}
1060
1061 \func{void}{wxSetPrinterOptions}{\param{const wxString\& }{options}}
1062
1063 Sets the additional options for the print command (e.g. specific printer). The default is nothing.
1064
1065 \membersection{::wxSetPrinterOrientation}
1066
1067 \func{void}{wxSetPrinterOrientation}{\param{int}{ orientation}}
1068
1069 Sets the orientation (PS\_PORTRAIT or PS\_LANDSCAPE). The default is PS\_PORTRAIT.
1070
1071 \membersection{::wxSetPrinterPreviewCommand}
1072
1073 \func{void}{wxSetPrinterPreviewCommand}{\param{const wxString\& }{command}}
1074
1075 Sets the command used to view a PostScript file. The default depends on the platform.
1076
1077 \membersection{::wxSetPrinterScaling}
1078
1079 \func{void}{wxSetPrinterScaling}{\param{float }{x}, \param{float }{y}}
1080
1081 Sets the scaling factor for PostScript output. The default is 1.0, 1.0.
1082
1083 \membersection{::wxSetPrinterTranslation}
1084
1085 \func{void}{wxSetPrinterTranslation}{\param{float }{x}, \param{float }{y}}
1086
1087 Sets the translation (from the top left corner) for PostScript output. The default is 0.0, 0.0.
1088
1089 \section{Clipboard functions}\label{clipsboard}
1090
1091 These clipboard functions are implemented for Windows only. The use of these functions
1092 is deprecated and the code is no longer maintained. Use the \helpref{wxClipboard}{wxclipboard}
1093 class instead.
1094
1095 \wxheading{Include files}
1096
1097 <wx/clipbrd.h>
1098
1099 \membersection{::wxClipboardOpen}
1100
1101 \func{bool}{wxClipboardOpen}{\void}
1102
1103 Returns TRUE if this application has already opened the clipboard.
1104
1105 \membersection{::wxCloseClipboard}
1106
1107 \func{bool}{wxCloseClipboard}{\void}
1108
1109 Closes the clipboard to allow other applications to use it.
1110
1111 \membersection{::wxEmptyClipboard}
1112
1113 \func{bool}{wxEmptyClipboard}{\void}
1114
1115 Empties the clipboard.
1116
1117 \membersection{::wxEnumClipboardFormats}
1118
1119 \func{int}{wxEnumClipboardFormats}{\param{int}{dataFormat}}
1120
1121 Enumerates the formats found in a list of available formats that belong
1122 to the clipboard. Each call to this function specifies a known
1123 available format; the function returns the format that appears next in
1124 the list.
1125
1126 {\it dataFormat} specifies a known format. If this parameter is zero,
1127 the function returns the first format in the list.
1128
1129 The return value specifies the next known clipboard data format if the
1130 function is successful. It is zero if the {\it dataFormat} parameter specifies
1131 the last format in the list of available formats, or if the clipboard
1132 is not open.
1133
1134 Before it enumerates the formats function, an application must open the clipboard by using the
1135 wxOpenClipboard function.
1136
1137 \membersection{::wxGetClipboardData}
1138
1139 \func{wxObject *}{wxGetClipboardData}{\param{int}{dataFormat}}
1140
1141 Gets data from the clipboard.
1142
1143 {\it dataFormat} may be one of:
1144
1145 \begin{itemize}\itemsep=0pt
1146 \item wxCF\_TEXT or wxCF\_OEMTEXT: returns a pointer to new memory containing a null-terminated text string.
1147 \item wxCF\_BITMAP: returns a new wxBitmap.
1148 \end{itemize}
1149
1150 The clipboard must have previously been opened for this call to succeed.
1151
1152 \membersection{::wxGetClipboardFormatName}
1153
1154 \func{bool}{wxGetClipboardFormatName}{\param{int}{dataFormat}, \param{const wxString\& }{formatName}, \param{int}{maxCount}}
1155
1156 Gets the name of a registered clipboard format, and puts it into the buffer {\it formatName} which is of maximum
1157 length {\it maxCount}. {\it dataFormat} must not specify a predefined clipboard format.
1158
1159 \membersection{::wxIsClipboardFormatAvailable}
1160
1161 \func{bool}{wxIsClipboardFormatAvailable}{\param{int}{dataFormat}}
1162
1163 Returns TRUE if the given data format is available on the clipboard.
1164
1165 \membersection{::wxOpenClipboard}
1166
1167 \func{bool}{wxOpenClipboard}{\void}
1168
1169 Opens the clipboard for passing data to it or getting data from it.
1170
1171 \membersection{::wxRegisterClipboardFormat}
1172
1173 \func{int}{wxRegisterClipboardFormat}{\param{const wxString\& }{formatName}}
1174
1175 Registers the clipboard data format name and returns an identifier.
1176
1177 \membersection{::wxSetClipboardData}
1178
1179 \func{bool}{wxSetClipboardData}{\param{int}{dataFormat}, \param{wxObject *}{data}, \param{int}{width}, \param{int}{height}}
1180
1181 Passes data to the clipboard.
1182
1183 {\it dataFormat} may be one of:
1184
1185 \begin{itemize}\itemsep=0pt
1186 \item wxCF\_TEXT or wxCF\_OEMTEXT: {\it data} is a null-terminated text string.
1187 \item wxCF\_BITMAP: {\it data} is a wxBitmap.
1188 \item wxCF\_DIB: {\it data} is a wxBitmap. The bitmap is converted to a DIB (device independent bitmap).
1189 \item wxCF\_METAFILE: {\it data} is a wxMetafile. {\it width} and {\it height} are used to give recommended dimensions.
1190 \end{itemize}
1191
1192 The clipboard must have previously been opened for this call to succeed.
1193
1194 \section{Miscellaneous functions}\label{miscellany}
1195
1196 \membersection{::wxDROP\_ICON}\label{wxdropicon}
1197
1198 \func{wxIconOrCursor}{wxDROP\_ICON}{\param{const char *}{name}}
1199
1200 This macro creates either a cursor (MSW) or an icon (elsewhere) with the given
1201 name. Under MSW, the cursor is loaded from the resource file and the icon is
1202 loaded from XPM file under other platforms.
1203
1204 This macro should be used with
1205 \helpref{wxDropSource constructor}{wxdropsourcewxdropsource}.
1206
1207 \wxheading{Include files}
1208
1209 <wx/dnd.h>
1210
1211 \membersection{::wxNewId}
1212
1213 \func{long}{wxNewId}{\void}
1214
1215 Generates an integer identifier unique to this run of the program.
1216
1217 \wxheading{Include files}
1218
1219 <wx/utils.h>
1220
1221 \membersection{::wxRegisterId}
1222
1223 \func{void}{wxRegisterId}{\param{long}{ id}}
1224
1225 Ensures that ids subsequently generated by {\bf NewId} do not clash with
1226 the given {\bf id}.
1227
1228 \wxheading{Include files}
1229
1230 <wx/utils.h>
1231
1232 \membersection{::wxBeginBusyCursor}\label{wxbeginbusycursor}
1233
1234 \func{void}{wxBeginBusyCursor}{\param{wxCursor *}{cursor = wxHOURGLASS\_CURSOR}}
1235
1236 Changes the cursor to the given cursor for all windows in the application.
1237 Use \helpref{wxEndBusyCursor}{wxendbusycursor} to revert the cursor back
1238 to its previous state. These two calls can be nested, and a counter
1239 ensures that only the outer calls take effect.
1240
1241 See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
1242
1243 \wxheading{Include files}
1244
1245 <wx/utils.h>
1246
1247 \membersection{::wxBell}
1248
1249 \func{void}{wxBell}{\void}
1250
1251 Ring the system bell.
1252
1253 \wxheading{Include files}
1254
1255 <wx/utils.h>
1256
1257 \membersection{::wxCreateDynamicObject}\label{wxcreatedynamicobject}
1258
1259 \func{wxObject *}{wxCreateDynamicObject}{\param{const wxString\& }{className}}
1260
1261 Creates and returns an object of the given class, if the class has been
1262 registered with the dynamic class system using DECLARE... and IMPLEMENT... macros.
1263
1264 \membersection{::wxDDECleanUp}\label{wxddecleanup}
1265
1266 \func{void}{wxDDECleanUp}{\void}
1267
1268 Called when wxWindows exits, to clean up the DDE system. This no longer needs to be
1269 called by the application.
1270
1271 See also \helpref{wxDDEInitialize}{wxddeinitialize}.
1272
1273 \wxheading{Include files}
1274
1275 <wx/dde.h>
1276
1277 \membersection{::wxDDEInitialize}\label{wxddeinitialize}
1278
1279 \func{void}{wxDDEInitialize}{\void}
1280
1281 Initializes the DDE system. May be called multiple times without harm.
1282
1283 This no longer needs to be called by the application: it will be called
1284 by wxWindows if necessary.
1285
1286 See also \helpref{wxDDEServer}{wxddeserver}, \helpref{wxDDEClient}{wxddeclient}, \helpref{wxDDEConnection}{wxddeconnection},
1287 \helpref{wxDDECleanUp}{wxddecleanup}.
1288
1289 \wxheading{Include files}
1290
1291 <wx/dde.h>
1292
1293 \membersection{::wxDebugMsg}\label{wxdebugmsg}
1294
1295 \func{void}{wxDebugMsg}{\param{const wxString\& }{fmt}, \param{...}{}}
1296
1297 {\bf This function is deprecated, use \helpref{wxLogDebug}{wxlogdebug} instead!}
1298
1299 Display a debugging message; under Windows, this will appear on the
1300 debugger command window, and under Unix, it will be written to standard
1301 error.
1302
1303 The syntax is identical to {\bf printf}: pass a format string and a
1304 variable list of arguments.
1305
1306 {\bf Tip:} under Windows, if your application crashes before the
1307 message appears in the debugging window, put a wxYield call after
1308 each wxDebugMsg call. wxDebugMsg seems to be broken under WIN32s
1309 (at least for Watcom C++): preformat your messages and use OutputDebugString
1310 instead.
1311
1312 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1313
1314 \wxheading{Include files}
1315
1316 <wx/utils.h>
1317
1318 \membersection{::wxDisplaySize}
1319
1320 \func{void}{wxDisplaySize}{\param{int *}{width}, \param{int *}{height}}
1321
1322 Gets the physical size of the display in pixels.
1323
1324 \wxheading{Include files}
1325
1326 <wx/gdicmn.h>
1327
1328 \membersection{::wxEnableTopLevelWindows}\label{wxenabletoplevelwindows}
1329
1330 \func{void}{wxEnableTopLevelWindow}{\param{bool}{ enable = TRUE}}
1331
1332 This function enables or disables all top level windows. It is used by
1333 \helpref{::wxSafeYield}{wxsafeyield}.
1334
1335 \wxheading{Include files}
1336
1337 <wx/utils.h>
1338
1339 \membersection{::wxEntry}\label{wxentry}
1340
1341 This initializes wxWindows in a platform-dependent way. Use this if you
1342 are not using the default wxWindows entry code (e.g. main or WinMain). For example,
1343 you can initialize wxWindows from an Microsoft Foundation Classes application using
1344 this function.
1345
1346 \func{void}{wxEntry}{\param{HANDLE}{ hInstance}, \param{HANDLE}{ hPrevInstance},
1347 \param{const wxString\& }{commandLine}, \param{int}{ cmdShow}, \param{bool}{ enterLoop = TRUE}}
1348
1349 wxWindows initialization under Windows (non-DLL). If {\it enterLoop} is FALSE, the
1350 function will return immediately after calling wxApp::OnInit. Otherwise, the wxWindows
1351 message loop will be entered.
1352
1353 \func{void}{wxEntry}{\param{HANDLE}{ hInstance}, \param{HANDLE}{ hPrevInstance},
1354 \param{WORD}{ wDataSegment}, \param{WORD}{ wHeapSize}, \param{const wxString\& }{ commandLine}}
1355
1356 wxWindows initialization under Windows (for applications constructed as a DLL).
1357
1358 \func{int}{wxEntry}{\param{int}{ argc}, \param{const wxString\& *}{argv}}
1359
1360 wxWindows initialization under Unix.
1361
1362 \wxheading{Remarks}
1363
1364 To clean up wxWindows, call wxApp::OnExit followed by the static function
1365 wxApp::CleanUp. For example, if exiting from an MFC application that also uses wxWindows:
1366
1367 \begin{verbatim}
1368 int CTheApp::ExitInstance()
1369 {
1370 // OnExit isn't called by CleanUp so must be called explicitly.
1371 wxTheApp->OnExit();
1372 wxApp::CleanUp();
1373
1374 return CWinApp::ExitInstance();
1375 }
1376 \end{verbatim}
1377
1378 \wxheading{Include files}
1379
1380 <wx/app.h>
1381
1382 \membersection{::wxEndBusyCursor}\label{wxendbusycursor}
1383
1384 \func{void}{wxEndBusyCursor}{\void}
1385
1386 Changes the cursor back to the original cursor, for all windows in the application.
1387 Use with \helpref{wxBeginBusyCursor}{wxbeginbusycursor}.
1388
1389 See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
1390
1391 \wxheading{Include files}
1392
1393 <wx/utils.h>
1394
1395 \membersection{::wxError}\label{wxerror}
1396
1397 \func{void}{wxError}{\param{const wxString\& }{msg}, \param{const wxString\& }{title = "wxWindows Internal Error"}}
1398
1399 Displays {\it msg} and continues. This writes to standard error under
1400 Unix, and pops up a message box under Windows. Used for internal
1401 wxWindows errors. See also \helpref{wxFatalError}{wxfatalerror}.
1402
1403 \wxheading{Include files}
1404
1405 <wx/utils.h>
1406
1407 \membersection{::wxExecute}\label{wxexecute}
1408
1409 \func{long}{wxExecute}{\param{const wxString\& }{command}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
1410
1411 \func{long}{wxExecute}{\param{char **}{argv}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
1412
1413 \func{long}{wxExecute}{\param{const wxString\& }{command}, \param{wxArrayString\& }{output}}
1414
1415 \func{long}{wxExecute}{\param{const wxString\& }{command}, \param{wxArrayString\& }{output}, \param{wxArrayString\& }{errors}}
1416
1417 Executes another program in Unix or Windows.
1418
1419 The first form takes a command string, such as {\tt "emacs file.txt"}.
1420
1421 The second form takes an array of values: a command, any number of
1422 arguments, terminated by NULL.
1423
1424 The semantics of the third and fourth versions is different from the first two
1425 and is described in more details below.
1426
1427 If {\it sync} is FALSE (the default), flow of control immediately returns.
1428 If TRUE, the current application waits until the other program has terminated.
1429
1430 In the case of synchronous execution, the return value is the exit code of
1431 the process (which terminates by the moment the function returns) and will be
1432 $-1$ if the process couldn't be started and typically 0 if the process
1433 terminated successfully. Also, while waiting for the process to
1434 terminate, wxExecute will call \helpref{wxYield}{wxyield}. The caller
1435 should ensure that this can cause no recursion, in the simplest case by
1436 calling \helpref{wxEnableTopLevelWindows(FALSE)}{wxenabletoplevelwindows}.
1437
1438 For asynchronous execution, however, the return value is the process id and
1439 zero value indicates that the command could not be executed.
1440
1441 If callback isn't NULL and if execution is asynchronous (note that callback
1442 parameter can not be non-NULL for synchronous execution),
1443 \helpref{wxProcess::OnTerminate}{wxprocessonterminate} will be called when
1444 the process finishes.
1445
1446 Finally, you may use the third overloaded version of this function to execute
1447 a process (always synchronously) and capture its output in the array
1448 {\it output}. The fourth version adds the possibility to additionally capture
1449 the messages from standard error output in the {\it errors} array.
1450
1451 See also \helpref{wxShell}{wxshell}, \helpref{wxProcess}{wxprocess},
1452 \helpref{Exec sample}{sampleexec}.
1453
1454 \wxheading{Include files}
1455
1456 <wx/utils.h>
1457
1458 \membersection{::wxExit}\label{wxexit}
1459
1460 \func{void}{wxExit}{\void}
1461
1462 Exits application after calling \helpref{wxApp::OnExit}{wxapponexit}.
1463 Should only be used in an emergency: normally the top-level frame
1464 should be deleted (after deleting all other frames) to terminate the
1465 application. See \helpref{wxWindow::OnCloseWindow}{wxwindowonclosewindow} and \helpref{wxApp}{wxapp}.
1466
1467 \wxheading{Include files}
1468
1469 <wx/app.h>
1470
1471 \membersection{::wxFatalError}\label{wxfatalerror}
1472
1473 \func{void}{wxFatalError}{\param{const wxString\& }{msg}, \param{const wxString\& }{title = "wxWindows Fatal Error"}}
1474
1475 Displays {\it msg} and exits. This writes to standard error under Unix,
1476 and pops up a message box under Windows. Used for fatal internal
1477 wxWindows errors. See also \helpref{wxError}{wxerror}.
1478
1479 \wxheading{Include files}
1480
1481 <wx/utils.h>
1482
1483 \membersection{::wxFindMenuItemId}
1484
1485 \func{int}{wxFindMenuItemId}{\param{wxFrame *}{frame}, \param{const wxString\& }{menuString}, \param{const wxString\& }{itemString}}
1486
1487 Find a menu item identifier associated with the given frame's menu bar.
1488
1489 \wxheading{Include files}
1490
1491 <wx/utils.h>
1492
1493 \membersection{::wxFindWindowByLabel}\label{wxfindwindowbylabel}
1494
1495 \func{wxWindow *}{wxFindWindowByLabel}{\param{const wxString\& }{label}, \param{wxWindow *}{parent=NULL}}
1496
1497 Find a window by its label. Depending on the type of window, the label may be a window title
1498 or panel item label. If {\it parent} is NULL, the search will start from all top-level
1499 frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
1500 The search is recursive in both cases.
1501
1502 \wxheading{Include files}
1503
1504 <wx/utils.h>
1505
1506 \membersection{::wxFindWindowByName}\label{wxfindwindowbyname}
1507
1508 \func{wxWindow *}{wxFindWindowByName}{\param{const wxString\& }{name}, \param{wxWindow *}{parent=NULL}}
1509
1510 Find a window by its name (as given in a window constructor or {\bf Create} function call).
1511 If {\it parent} is NULL, the search will start from all top-level
1512 frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
1513 The search is recursive in both cases.
1514
1515 If no such named window is found, {\bf wxFindWindowByLabel} is called.
1516
1517 \wxheading{Include files}
1518
1519 <wx/utils.h>
1520
1521 \membersection{::wxFindWindowAtPoint}\label{wxfindwindowatpoint}
1522
1523 \func{wxWindow *}{wxFindWindowAtPoint}{\param{const wxPoint\& }{pt}}
1524
1525 Find the deepest window at the given mouse position in screen coordinates,
1526 returning the window if found, or NULL if not.
1527
1528 \membersection{::wxFindWindowAtPointer}\label{wxfindwindowatpointer}
1529
1530 \func{wxWindow *}{wxFindWindowAtPointer}{\param{wxPoint\& }{pt}}
1531
1532 Find the deepest window at the mouse pointer position, returning the window
1533 and current pointer position in screen coordinates.
1534
1535 \membersection{::wxGetActiveWindow}\label{wxgetactivewindow}
1536
1537 \func{wxWindow *}{wxGetActiveWindow}{\void}
1538
1539 Gets the currently active window (Windows only).
1540
1541 \wxheading{Include files}
1542
1543 <wx/windows.h>
1544
1545 \membersection{::wxGetDisplayName}\label{wxgetdisplayname}
1546
1547 \func{wxString}{wxGetDisplayName}{\void}
1548
1549 Under X only, returns the current display name. See also \helpref{wxSetDisplayName}{wxsetdisplayname}.
1550
1551 \wxheading{Include files}
1552
1553 <wx/utils.h>
1554
1555 \membersection{::wxGetHomeDir}\label{wxgethomedir}
1556
1557 \func{wxString}{wxGetHomeDir}{\void}
1558
1559 Return the (current) user's home directory.
1560
1561 \wxheading{See also}
1562
1563 \helpref{wxGetUserHome}{wxgetuserhome}
1564
1565 \wxheading{Include files}
1566
1567 <wx/utils.h>
1568
1569 \membersection{::wxGetFreeMemory}\label{wxgetfreememory}
1570
1571 \func{long}{wxGetFreeMemory}{\void}
1572
1573 Returns the amount of free memory in bytes under environments which
1574 support it, and -1 if not supported. Currently, it is supported only
1575 under Windows, Linux and Solaris.
1576
1577 \wxheading{Include files}
1578
1579 <wx/utils.h>
1580
1581 \membersection{::wxGetMousePosition}\label{wxgetmouseposition}
1582
1583 \func{wxPoint}{wxGetMousePosition}{\void}
1584
1585 Returns the mouse position in screen coordinates.
1586
1587 \wxheading{Include files}
1588
1589 <wx/utils.h>
1590
1591 \membersection{::wxGetOsDescription}\label{wxgetosdescription}
1592
1593 \func{wxString}{wxGetOsDescription}{\void}
1594
1595 Returns the string containing the description of the current platform in a
1596 user-readable form. For example, this function may return strings like
1597 {\tt Windows NT Version 4.0} or {\tt Linux 2.2.2 i386}.
1598
1599 \wxheading{See also}
1600
1601 \helpref{::wxGetOsVersion}{wxgetosversion}
1602
1603 \wxheading{Include files}
1604
1605 <wx/utils.h>
1606
1607 \membersection{::wxGetOsVersion}\label{wxgetosversion}
1608
1609 \func{int}{wxGetOsVersion}{\param{int *}{major = NULL}, \param{int *}{minor = NULL}}
1610
1611 Gets operating system version information.
1612
1613 \begin{twocollist}\itemsep=0pt
1614 \twocolitemruled{Platform}{Return types}
1615 \twocolitem{Macintosh}{Return value is wxMACINTOSH.}
1616 \twocolitem{GTK}{Return value is wxGTK, For GTK 1.0, {\it major} is 1, {\it minor} is 0. }
1617 \twocolitem{Motif}{Return value is wxMOTIF\_X, {\it major} is X version, {\it minor} is X revision.}
1618 \twocolitem{OS/2}{Return value is wxOS2\_PM.}
1619 \twocolitem{Windows 3.1}{Return value is wxWINDOWS, {\it major} is 3, {\it minor} is 1.}
1620 \twocolitem{Windows NT/2000}{Return value is wxWINDOWS\_NT, version is returned in {\it major} and {\it minor}}
1621 \twocolitem{Windows 98}{Return value is wxWIN95, {\it major} is 4, {\it minor} is 1 or greater.}
1622 \twocolitem{Windows 95}{Return value is wxWIN95, {\it major} is 4, {\it minor} is 0.}
1623 \twocolitem{Win32s (Windows 3.1)}{Return value is wxWIN32S, {\it major} is 3, {\it minor} is 1.}
1624 \twocolitem{Watcom C++ 386 supervisor mode (Windows 3.1)}{Return value is wxWIN386, {\it major} is 3, {\it minor} is 1.}
1625 \end{twocollist}
1626
1627 \wxheading{See also}
1628
1629 \helpref{::wxGetOsDescription}{wxgetosdescription}
1630
1631 \wxheading{Include files}
1632
1633 <wx/utils.h>
1634
1635 \membersection{::wxGetResource}\label{wxgetresource}
1636
1637 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1638 \param{const wxString\& *}{value}, \param{const wxString\& }{file = NULL}}
1639
1640 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1641 \param{float *}{value}, \param{const wxString\& }{file = NULL}}
1642
1643 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1644 \param{long *}{value}, \param{const wxString\& }{file = NULL}}
1645
1646 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1647 \param{int *}{value}, \param{const wxString\& }{file = NULL}}
1648
1649 Gets a resource value from the resource database (for example, WIN.INI, or
1650 .Xdefaults). If {\it file} is NULL, WIN.INI or .Xdefaults is used,
1651 otherwise the specified file is used.
1652
1653 Under X, if an application class (wxApp::GetClassName) has been defined,
1654 it is appended to the string /usr/lib/X11/app-defaults/ to try to find
1655 an applications default file when merging all resource databases.
1656
1657 The reason for passing the result in an argument is that it
1658 can be convenient to define a default value, which gets overridden
1659 if the value exists in the resource file. It saves a separate
1660 test for that resource's existence, and it also allows
1661 the overloading of the function for different types.
1662
1663 See also \helpref{wxWriteResource}{wxwriteresource}, \helpref{wxConfigBase}{wxconfigbase}.
1664
1665 \wxheading{Include files}
1666
1667 <wx/utils.h>
1668
1669 \membersection{::wxGetUserId}
1670
1671 \func{bool}{wxGetUserId}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1672
1673 Copies the user's login identity (such as ``jacs'') into the buffer {\it
1674 buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1675 Under Windows, this returns ``user''.
1676
1677 \wxheading{Include files}
1678
1679 <wx/utils.h>
1680
1681 \membersection{::wxGetUserHome}\label{wxgetuserhome}
1682
1683 \func{const wxChar *}{wxGetUserHome}{\param{const wxString\& }{user = ""}}
1684
1685 Returns the home directory for the given user. If the username is empty
1686 (default value), this function behaves like
1687 \helpref{wxGetHomeDir}{wxgethomedir}.
1688
1689 \wxheading{Include files}
1690
1691 <wx/utils.h>
1692
1693 \membersection{::wxGetUserName}
1694
1695 \func{bool}{wxGetUserName}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1696
1697 Copies the user's name (such as ``Julian Smart'') into the buffer {\it
1698 buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1699 Under Windows, this returns ``unknown''.
1700
1701 \wxheading{Include files}
1702
1703 <wx/utils.h>
1704
1705 \membersection{::wxHandleFatalExceptions}\label{wxhandlefatalexceptions}
1706
1707 \func{bool}{wxHandleFatalExceptions}{\param{bool}{ doIt = TRUE}}
1708
1709 If {\it doIt} is TRUE, the fatal exceptions (also known as general protection
1710 faults under Windows or segmentation violations in the Unix world) will be
1711 caught and passed to \helpref{wxApp::OnFatalException}{wxapponfatalexception}.
1712 By default, i.e. before this function is called, they will be handled in the
1713 normal way which usually just means that the application will be terminated.
1714 Calling wxHandleFatalExceptions() with {\it doIt} equal to FALSE will restore
1715 this default behaviour.
1716
1717 \membersection{::wxKill}\label{wxkill}
1718
1719 \func{int}{wxKill}{\param{long}{ pid}, \param{int}{ sig}}
1720
1721 Under Unix (the only supported platform), equivalent to the Unix kill function.
1722 Returns 0 on success, -1 on failure.
1723
1724 Tip: sending a signal of 0 to a process returns -1 if the process does not exist.
1725 It does not raise a signal in the receiving process.
1726
1727 \wxheading{Include files}
1728
1729 <wx/utils.h>
1730
1731 \membersection{::wxInitAllImageHandlers}\label{wxinitallimagehandlers}
1732
1733 \func{void}{wxInitAllImageHandlers}{\void}
1734
1735 Initializes all available image handlers. For a list of available handlers,
1736 see \helpref{wxImage}{wximage}.
1737
1738 \wxheading{See also}
1739
1740 \helpref{wxImage}{wximage}, \helpref{wxImageHandler}{wximagehandler}
1741
1742 \membersection{::wxIsBusy}\label{wxisbusy}
1743
1744 \func{bool}{wxIsBusy}{\void}
1745
1746 Returns TRUE if between two \helpref{wxBeginBusyCursor}{wxbeginbusycursor} and\rtfsp
1747 \helpref{wxEndBusyCursor}{wxendbusycursor} calls.
1748
1749 See also \helpref{wxBusyCursor}{wxbusycursor}.
1750
1751 \wxheading{Include files}
1752
1753 <wx/utils.h>
1754
1755 \membersection{::wxLoadUserResource}\label{wxloaduserresource}
1756
1757 \func{wxString}{wxLoadUserResource}{\param{const wxString\& }{resourceName}, \param{const wxString\& }{resourceType=``TEXT"}}
1758
1759 Loads a user-defined Windows resource as a string. If the resource is found, the function creates
1760 a new character array and copies the data into it. A pointer to this data is returned. If unsuccessful, NULL is returned.
1761
1762 The resource must be defined in the {\tt .rc} file using the following syntax:
1763
1764 \begin{verbatim}
1765 myResource TEXT file.ext
1766 \end{verbatim}
1767
1768 where {\tt file.ext} is a file that the resource compiler can find.
1769
1770 One use of this is to store {\tt .wxr} files instead of including the data in the C++ file; some compilers
1771 cannot cope with the long strings in a {\tt .wxr} file. The resource data can then be parsed
1772 using \helpref{wxResourceParseString}{wxresourceparsestring}.
1773
1774 This function is available under Windows only.
1775
1776 \wxheading{Include files}
1777
1778 <wx/utils.h>
1779
1780 \membersection{::wxNow}\label{wxnow}
1781
1782 \func{wxString}{wxNow}{\void}
1783
1784 Returns a string representing the current date and time.
1785
1786 \wxheading{Include files}
1787
1788 <wx/utils.h>
1789
1790 \membersection{::wxPostDelete}\label{wxpostdelete}
1791
1792 \func{void}{wxPostDelete}{\param{wxObject *}{object}}
1793
1794 Tells the system to delete the specified object when
1795 all other events have been processed. In some environments, it is
1796 necessary to use this instead of deleting a frame directly with the
1797 delete operator, because some GUIs will still send events to a deleted window.
1798
1799 Now obsolete: use \helpref{wxWindow::Close}{wxwindowclose} instead.
1800
1801 \wxheading{Include files}
1802
1803 <wx/utils.h>
1804
1805 \membersection{::wxPostEvent}\label{wxpostevent}
1806
1807 \func{void}{wxPostEvent}{\param{wxEvtHandler *}{dest}, \param{wxEvent\& }{event}}
1808
1809 This function posts the event to the specified {\it dest} object. The
1810 difference between sending an event and posting it is that in the first case
1811 the event is processed before the function returns (in wxWindows, event sending
1812 is done with \helpref{ProcessEvent}{wxevthandlerprocessevent} function), but in
1813 the second, the function returns immediately and the event will be processed
1814 sometime later - usually during the next even loop iteration.
1815
1816 Note that a copy of the {\it event} is made by the function, so the original
1817 copy can be deleted as soon as function returns. This function can also be used
1818 to send events between different threads safely. As this function makes a
1819 copy of the event, the event needs to have a fully implemented Clone() method,
1820 which may not be the case for all event in wxWindows.
1821
1822 See also \helpref{AddPendingEvent}{wxevthandleraddpendingevent} (which this function
1823 uses internally).
1824
1825 \wxheading{Include files}
1826
1827 <wx/app.h>
1828
1829 \membersection{::wxSafeYield}\label{wxsafeyield}
1830
1831 \func{bool}{wxSafeYield}{\param{wxWindow*}{ win = NULL}}
1832
1833 This function is similar to wxYield, except that it disables the user input to
1834 all program windows before calling wxYield and re-enables it again
1835 afterwards. If {\it win} is not NULL, this window will remain enabled,
1836 allowing the implementation of some limited user interaction.
1837
1838 Returns the result of the call to \helpref{::wxYield}{wxyield}.
1839
1840 \wxheading{Include files}
1841
1842 <wx/utils.h>
1843
1844 \membersection{::wxSetDisplayName}\label{wxsetdisplayname}
1845
1846 \func{void}{wxSetDisplayName}{\param{const wxString\& }{displayName}}
1847
1848 Under X only, sets the current display name. This is the X host and display name such
1849 as ``colonsay:0.0", and the function indicates which display should be used for creating
1850 windows from this point on. Setting the display within an application allows multiple
1851 displays to be used.
1852
1853 See also \helpref{wxGetDisplayName}{wxgetdisplayname}.
1854
1855 \wxheading{Include files}
1856
1857 <wx/utils.h>
1858
1859 \membersection{::wxShell}\label{wxshell}
1860
1861 \func{bool}{wxShell}{\param{const wxString\& }{command = NULL}}
1862
1863 Executes a command in an interactive shell window. If no command is
1864 specified, then just the shell is spawned.
1865
1866 See also \helpref{wxExecute}{wxexecute}, \helpref{Exec sample}{sampleexec}.
1867
1868 \wxheading{Include files}
1869
1870 <wx/utils.h>
1871
1872 \membersection{::wxSleep}\label{wxsleep}
1873
1874 \func{void}{wxSleep}{\param{int}{ secs}}
1875
1876 Sleeps for the specified number of seconds.
1877
1878 \wxheading{Include files}
1879
1880 <wx/utils.h>
1881
1882 \membersection{::wxStripMenuCodes}
1883
1884 \func{wxString}{wxStripMenuCodes}{\param{const wxString\& }{in}}
1885
1886 \func{void}{wxStripMenuCodes}{\param{char* }{in}, \param{char* }{out}}
1887
1888 Strips any menu codes from {\it in} and places the result
1889 in {\it out} (or returns the new string, in the first form).
1890
1891 Menu codes include \& (mark the next character with an underline
1892 as a keyboard shortkey in Windows and Motif) and $\backslash$t (tab in Windows).
1893
1894 \wxheading{Include files}
1895
1896 <wx/utils.h>
1897
1898 \membersection{::wxToLower}\label{wxtolower}
1899
1900 \func{char}{wxToLower}{\param{char }{ch}}
1901
1902 Converts the character to lower case. This is implemented as a macro for efficiency.
1903
1904 \wxheading{Include files}
1905
1906 <wx/utils.h>
1907
1908 \membersection{::wxToUpper}\label{wxtoupper}
1909
1910 \func{char}{wxToUpper}{\param{char }{ch}}
1911
1912 Converts the character to upper case. This is implemented as a macro for efficiency.
1913
1914 \wxheading{Include files}
1915
1916 <wx/utils.h>
1917
1918 \membersection{::wxTrace}\label{wxtrace}
1919
1920 \func{void}{wxTrace}{\param{const wxString\& }{fmt}, \param{...}{}}
1921
1922 Takes printf-style variable argument syntax. Output
1923 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1924
1925 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1926
1927 \wxheading{Include files}
1928
1929 <wx/memory.h>
1930
1931 \membersection{::wxTraceLevel}\label{wxtracelevel}
1932
1933 \func{void}{wxTraceLevel}{\param{int}{ level}, \param{const wxString\& }{fmt}, \param{...}{}}
1934
1935 Takes printf-style variable argument syntax. Output
1936 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1937 The first argument should be the level at which this information is appropriate.
1938 It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
1939 this value.
1940
1941 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1942
1943 \wxheading{Include files}
1944
1945 <wx/memory.h>
1946
1947 \membersection{::wxUsleep}\label{wxusleep}
1948
1949 \func{void}{wxUsleep}{\param{unsigned long}{ milliseconds}}
1950
1951 Sleeps for the specified number of milliseconds. Notice that usage of this
1952 function is encouraged instead of calling usleep(3) directly because the
1953 standard usleep() function is not MT safe.
1954
1955 \wxheading{Include files}
1956
1957 <wx/utils.h>
1958
1959 \membersection{::wxWriteResource}\label{wxwriteresource}
1960
1961 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1962 \param{const wxString\& }{value}, \param{const wxString\& }{file = NULL}}
1963
1964 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1965 \param{float }{value}, \param{const wxString\& }{file = NULL}}
1966
1967 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1968 \param{long }{value}, \param{const wxString\& }{file = NULL}}
1969
1970 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1971 \param{int }{value}, \param{const wxString\& }{file = NULL}}
1972
1973 Writes a resource value into the resource database (for example, WIN.INI, or
1974 .Xdefaults). If {\it file} is NULL, WIN.INI or .Xdefaults is used,
1975 otherwise the specified file is used.
1976
1977 Under X, the resource databases are cached until the internal function
1978 \rtfsp{\bf wxFlushResources} is called automatically on exit, when
1979 all updated resource databases are written to their files.
1980
1981 Note that it is considered bad manners to write to the .Xdefaults
1982 file under Unix, although the WIN.INI file is fair game under Windows.
1983
1984 See also \helpref{wxGetResource}{wxgetresource}, \helpref{wxConfigBase}{wxconfigbase}.
1985
1986 \wxheading{Include files}
1987
1988 <wx/utils.h>
1989
1990 \membersection{::wxYield}\label{wxyield}
1991
1992 \func{bool}{wxYield}{\void}
1993
1994 Yields control to pending messages in the windowing system. This can be useful, for example, when a
1995 time-consuming process writes to a text window. Without an occasional
1996 yield, the text window will not be updated properly, and on systems with
1997 cooperative multitasking, such as Windows 3.1 other processes will not respond.
1998
1999 Caution should be exercised, however, since yielding may allow the
2000 user to perform actions which are not compatible with the current task.
2001 Disabling menu items or whole menus during processing can avoid unwanted
2002 reentrance of code: see \helpref{::wxSafeYield}{wxsafeyield} for a better
2003 function.
2004
2005 Note that wxYield will not flush the message logs. This is intentional as
2006 calling wxYield is usually done to quickly update the screen and popping up a
2007 message box dialog may be undesirable. If you do wish to flush the log
2008 messages immediately (otherwise it will be done during the next idle loop
2009 iteration), call \helpref{wxLog::FlushActive}{wxlogflushactive}.
2010
2011 \wxheading{Include files}
2012
2013 <wx/app.h> or <wx/utils.h>
2014
2015 \membersection{::wxWakeUpIdle}\label{wxwakeupidle}
2016
2017 \func{void}{wxWakeUpIdle}{\void}
2018
2019 This functions wakes up the (internal and platform dependent) idle system, i.e. it
2020 will force the system to send an idle event even if the system currently {\it is}
2021 idle and thus would not send any idle event until after some other event would get
2022 sent. This is also useful for sending events between two threads and is used by
2023 the corresponding functions \helpref{::wxPostEvent}{wxpostevent} and
2024 \helpref{wxEvtHandler::AddPendingEvent}{wxevthandleraddpendingevent}.
2025
2026 \wxheading{Include files}
2027
2028 <wx/app.h>
2029
2030 \section{Macros}\label{macros}
2031
2032 These macros are defined in wxWindows.
2033
2034 \membersection{wxINTXX\_SWAP\_ALWAYS}\label{intswapalways}
2035
2036 \func{wxInt32}{wxINT32\_SWAP\_ALWAYS}{\param{wxInt32 }{value}}
2037
2038 \func{wxUint32}{wxUINT32\_SWAP\_ALWAYS}{\param{wxUint32 }{value}}
2039
2040 \func{wxInt16}{wxINT16\_SWAP\_ALWAYS}{\param{wxInt16 }{value}}
2041
2042 \func{wxUint16}{wxUINT16\_SWAP\_ALWAYS}{\param{wxUint16 }{value}}
2043
2044 This macro will swap the bytes of the {\it value} variable from little
2045 endian to big endian or vice versa.
2046
2047 \membersection{wxINTXX\_SWAP\_ON\_BE}\label{intswaponbe}
2048
2049 \func{wxInt32}{wxINT32\_SWAP\_ON\_BE}{\param{wxInt32 }{value}}
2050
2051 \func{wxUint32}{wxUINT32\_SWAP\_ON\_BE}{\param{wxUint32 }{value}}
2052
2053 \func{wxInt16}{wxINT16\_SWAP\_ON\_BE}{\param{wxInt16 }{value}}
2054
2055 \func{wxUint16}{wxUINT16\_SWAP\_ON\_BE}{\param{wxUint16 }{value}}
2056
2057 This macro will swap the bytes of the {\it value} variable from little
2058 endian to big endian or vice versa if the program is compiled on a
2059 big-endian architecture (such as Sun work stations). If the program has
2060 been compiled on a little-endian architecture, the value will be unchanged.
2061
2062 Use these macros to read data from and write data to a file that stores
2063 data in little endian (Intel i386) format.
2064
2065 \membersection{wxINTXX\_SWAP\_ON\_LE}\label{intswaponle}
2066
2067 \func{wxInt32}{wxINT32\_SWAP\_ON\_LE}{\param{wxInt32 }{value}}
2068
2069 \func{wxUint32}{wxUINT32\_SWAP\_ON\_LE}{\param{wxUint32 }{value}}
2070
2071 \func{wxInt16}{wxINT16\_SWAP\_ON\_LE}{\param{wxInt16 }{value}}
2072
2073 \func{wxUint16}{wxUINT16\_SWAP\_ON\_LE}{\param{wxUint16 }{value}}
2074
2075 This macro will swap the bytes of the {\it value} variable from little
2076 endian to big endian or vice versa if the program is compiled on a
2077 little-endian architecture (such as Intel PCs). If the program has
2078 been compiled on a big-endian architecture, the value will be unchanged.
2079
2080 Use these macros to read data from and write data to a file that stores
2081 data in big endian format.
2082
2083 \membersection{CLASSINFO}\label{classinfo}
2084
2085 \func{wxClassInfo *}{CLASSINFO}{className}
2086
2087 Returns a pointer to the wxClassInfo object associated with this class.
2088
2089 \wxheading{Include files}
2090
2091 <wx/object.h>
2092
2093 \membersection{DECLARE\_ABSTRACT\_CLASS}
2094
2095 \func{}{DECLARE\_ABSTRACT\_CLASS}{className}
2096
2097 Used inside a class declaration to declare that the class should be
2098 made known to the class hierarchy, but objects of this class cannot be created
2099 dynamically. The same as DECLARE\_CLASS.
2100
2101 Example:
2102
2103 \begin{verbatim}
2104 class wxCommand: public wxObject
2105 {
2106 DECLARE_ABSTRACT_CLASS(wxCommand)
2107
2108 private:
2109 ...
2110 public:
2111 ...
2112 };
2113 \end{verbatim}
2114
2115 \wxheading{Include files}
2116
2117 <wx/object.h>
2118
2119 \membersection{DECLARE\_APP}\label{declareapp}
2120
2121 \func{}{DECLARE\_APP}{className}
2122
2123 This is used in headers to create a forward declaration of the wxGetApp function implemented
2124 by IMPLEMENT\_APP. It creates the declaration {\tt className\& wxGetApp(void)}.
2125
2126 Example:
2127
2128 \begin{verbatim}
2129 DECLARE_APP(MyApp)
2130 \end{verbatim}
2131
2132 \wxheading{Include files}
2133
2134 <wx/app.h>
2135
2136 \membersection{DECLARE\_CLASS}
2137
2138 \func{}{DECLARE\_CLASS}{className}
2139
2140 Used inside a class declaration to declare that the class should be
2141 made known to the class hierarchy, but objects of this class cannot be created
2142 dynamically. The same as DECLARE\_ABSTRACT\_CLASS.
2143
2144 \wxheading{Include files}
2145
2146 <wx/object.h>
2147
2148 \membersection{DECLARE\_DYNAMIC\_CLASS}
2149
2150 \func{}{DECLARE\_DYNAMIC\_CLASS}{className}
2151
2152 Used inside a class declaration to declare that the objects of this class should be dynamically
2153 creatable from run-time type information.
2154
2155 Example:
2156
2157 \begin{verbatim}
2158 class wxFrame: public wxWindow
2159 {
2160 DECLARE_DYNAMIC_CLASS(wxFrame)
2161
2162 private:
2163 const wxString\& frameTitle;
2164 public:
2165 ...
2166 };
2167 \end{verbatim}
2168
2169 \wxheading{Include files}
2170
2171 <wx/object.h>
2172
2173 \membersection{IMPLEMENT\_ABSTRACT\_CLASS}
2174
2175 \func{}{IMPLEMENT\_ABSTRACT\_CLASS}{className, baseClassName}
2176
2177 Used in a C++ implementation file to complete the declaration of
2178 a class that has run-time type information. The same as IMPLEMENT\_CLASS.
2179
2180 Example:
2181
2182 \begin{verbatim}
2183 IMPLEMENT_ABSTRACT_CLASS(wxCommand, wxObject)
2184
2185 wxCommand::wxCommand(void)
2186 {
2187 ...
2188 }
2189 \end{verbatim}
2190
2191 \wxheading{Include files}
2192
2193 <wx/object.h>
2194
2195 \membersection{IMPLEMENT\_ABSTRACT\_CLASS2}
2196
2197 \func{}{IMPLEMENT\_ABSTRACT\_CLASS2}{className, baseClassName1, baseClassName2}
2198
2199 Used in a C++ implementation file to complete the declaration of
2200 a class that has run-time type information and two base classes. The same as IMPLEMENT\_CLASS2.
2201
2202 \wxheading{Include files}
2203
2204 <wx/object.h>
2205
2206 \membersection{IMPLEMENT\_APP}\label{implementapp}
2207
2208 \func{}{IMPLEMENT\_APP}{className}
2209
2210 This is used in the application class implementation file to make the application class known to
2211 wxWindows for dynamic construction. You use this instead of
2212
2213 Old form:
2214
2215 \begin{verbatim}
2216 MyApp myApp;
2217 \end{verbatim}
2218
2219 New form:
2220
2221 \begin{verbatim}
2222 IMPLEMENT_APP(MyApp)
2223 \end{verbatim}
2224
2225 See also \helpref{DECLARE\_APP}{declareapp}.
2226
2227 \wxheading{Include files}
2228
2229 <wx/app.h>
2230
2231 \membersection{IMPLEMENT\_CLASS}
2232
2233 \func{}{IMPLEMENT\_CLASS}{className, baseClassName}
2234
2235 Used in a C++ implementation file to complete the declaration of
2236 a class that has run-time type information. The same as IMPLEMENT\_ABSTRACT\_CLASS.
2237
2238 \wxheading{Include files}
2239
2240 <wx/object.h>
2241
2242 \membersection{IMPLEMENT\_CLASS2}
2243
2244 \func{}{IMPLEMENT\_CLASS2}{className, baseClassName1, baseClassName2}
2245
2246 Used in a C++ implementation file to complete the declaration of a
2247 class that has run-time type information and two base classes. The
2248 same as IMPLEMENT\_ABSTRACT\_CLASS2.
2249
2250 \wxheading{Include files}
2251
2252 <wx/object.h>
2253
2254 \membersection{IMPLEMENT\_DYNAMIC\_CLASS}
2255
2256 \func{}{IMPLEMENT\_DYNAMIC\_CLASS}{className, baseClassName}
2257
2258 Used in a C++ implementation file to complete the declaration of
2259 a class that has run-time type information, and whose instances
2260 can be created dynamically.
2261
2262 Example:
2263
2264 \begin{verbatim}
2265 IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
2266
2267 wxFrame::wxFrame(void)
2268 {
2269 ...
2270 }
2271 \end{verbatim}
2272
2273 \wxheading{Include files}
2274
2275 <wx/object.h>
2276
2277 \membersection{IMPLEMENT\_DYNAMIC\_CLASS2}
2278
2279 \func{}{IMPLEMENT\_DYNAMIC\_CLASS2}{className, baseClassName1, baseClassName2}
2280
2281 Used in a C++ implementation file to complete the declaration of
2282 a class that has run-time type information, and whose instances
2283 can be created dynamically. Use this for classes derived from two
2284 base classes.
2285
2286 \wxheading{Include files}
2287
2288 <wx/object.h>
2289
2290 \membersection{wxBITMAP}\label{wxbitmapmacro}
2291
2292 \func{}{wxBITMAP}{bitmapName}
2293
2294 This macro loads a bitmap from either application resources (on the platforms
2295 for which they exist, i.e. Windows and OS2) or from an XPM file. It allows to
2296 avoid using {\tt \#ifdef}s when creating bitmaps.
2297
2298 \wxheading{See also}
2299
2300 \helpref{Bitmaps and icons overview}{wxbitmapoverview},
2301 \helpref{wxICON}{wxiconmacro}
2302
2303 \wxheading{Include files}
2304
2305 <wx/gdicmn.h>
2306
2307 \membersection{wxConstCast}\label{wxconstcast}
2308
2309 \func{}{wxConstCast}{ptr, classname}
2310
2311 This macro expands into {\tt const\_cast<classname *>(ptr)} if the compiler
2312 supports {\it const\_cast} or into an old, C-style cast, otherwise.
2313
2314 \wxheading{See also}
2315
2316 \helpref{wxDynamicCast}{wxdynamiccast}\\
2317 \helpref{wxStaticCast}{wxstaticcast}
2318
2319 \membersection{WXDEBUG\_NEW}\label{debugnew}
2320
2321 \func{}{WXDEBUG\_NEW}{arg}
2322
2323 This is defined in debug mode to be call the redefined new operator
2324 with filename and line number arguments. The definition is:
2325
2326 \begin{verbatim}
2327 #define WXDEBUG_NEW new(__FILE__,__LINE__)
2328 \end{verbatim}
2329
2330 In non-debug mode, this is defined as the normal new operator.
2331
2332 \wxheading{Include files}
2333
2334 <wx/object.h>
2335
2336 \membersection{wxDynamicCast}\label{wxdynamiccast}
2337
2338 \func{}{wxDynamicCast}{ptr, classname}
2339
2340 This macro returns the pointer {\it ptr} cast to the type {\it classname *} if
2341 the pointer is of this type (the check is done during the run-time) or NULL
2342 otherwise. Usage of this macro is preferred over obsoleted wxObject::IsKindOf()
2343 function.
2344
2345 The {\it ptr} argument may be NULL, in which case NULL will be returned.
2346
2347 Example:
2348
2349 \begin{verbatim}
2350 wxWindow *win = wxWindow::FindFocus();
2351 wxTextCtrl *text = wxDynamicCast(win, wxTextCtrl);
2352 if ( text )
2353 {
2354 // a text control has the focus...
2355 }
2356 else
2357 {
2358 // no window has the focus or it is not a text control
2359 }
2360 \end{verbatim}
2361
2362 \wxheading{See also}
2363
2364 \helpref{RTTI overview}{runtimeclassoverview}\\
2365 \helpref{wxConstCast}{wxconstcast}\\
2366 \helpref{wxStatiicCast}{wxstaticcast}
2367
2368 \membersection{wxICON}\label{wxiconmacro}
2369
2370 \func{}{wxICON}{iconName}
2371
2372 This macro loads an icon from either application resources (on the platforms
2373 for which they exist, i.e. Windows and OS2) or from an XPM file. It allows to
2374 avoid using {\tt \#ifdef}s when creating icons.
2375
2376 \wxheading{See also}
2377
2378 \helpref{Bitmaps and icons overview}{wxbitmapoverview},
2379 \helpref{wxBITMAP}{wxbitmapmacro}
2380
2381 \wxheading{Include files}
2382
2383 <wx/gdicmn.h>
2384
2385 \membersection{wxStaticCast}\label{wxstaticcast}
2386
2387 \func{}{wxStaticCast}{ptr, classname}
2388
2389 This macro checks that the cast is valid in debug mode (an assert failure will
2390 result if {\tt wxDynamicCast(ptr, classname) == NULL}) and then returns the
2391 result of executing an equivalent of {\tt static\_cast<classname *>(ptr)}.
2392
2393 \helpref{wxDynamicCast}{wxdynamiccast}\\
2394 \helpref{wxConstCast}{wxconstcast}
2395
2396 \membersection{WXTRACE}\label{trace}
2397
2398 \wxheading{Include files}
2399
2400 <wx/object.h>
2401
2402 \func{}{WXTRACE}{formatString, ...}
2403
2404 Calls wxTrace with printf-style variable argument syntax. Output
2405 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
2406
2407 This macro is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
2408
2409 \wxheading{Include files}
2410
2411 <wx/memory.h>
2412
2413 \membersection{WXTRACELEVEL}\label{tracelevel}
2414
2415 \func{}{WXTRACELEVEL}{level, formatString, ...}
2416
2417 Calls wxTraceLevel with printf-style variable argument syntax. Output
2418 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
2419 The first argument should be the level at which this information is appropriate.
2420 It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
2421 this value.
2422
2423 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
2424
2425 \wxheading{Include files}
2426
2427 <wx/memory.h>
2428
2429 \section{wxWindows resource functions}\label{resourcefuncs}
2430
2431 \overview{wxWindows resource system}{resourceformats}
2432
2433 This section details functions for manipulating wxWindows (.WXR) resource
2434 files and loading user interface elements from resources.
2435
2436 \normalbox{Please note that this use of the word `resource' is different from that used when talking
2437 about initialisation file resource reading and writing, using such functions
2438 as wxWriteResource and wxGetResource. It is just an unfortunate clash of terminology.}
2439
2440 \helponly{For an overview of the wxWindows resource mechanism, see \helpref{the wxWindows resource system}{resourceformats}.}
2441
2442 See also \helpref{wxWindow::LoadFromResource}{wxwindowloadfromresource} for
2443 loading from resource data.
2444
2445 \membersection{::wxResourceAddIdentifier}\label{wxresourceaddidentifier}
2446
2447 \func{bool}{wxResourceAddIdentifier}{\param{const wxString\& }{name}, \param{int }{value}}
2448
2449 Used for associating a name with an integer identifier (equivalent to dynamically\rtfsp
2450 \verb$#$defining a name to an integer). Unlikely to be used by an application except
2451 perhaps for implementing resource functionality for interpreted languages.
2452
2453 \membersection{::wxResourceClear}
2454
2455 \func{void}{wxResourceClear}{\void}
2456
2457 Clears the wxWindows resource table.
2458
2459 \membersection{::wxResourceCreateBitmap}
2460
2461 \func{wxBitmap *}{wxResourceCreateBitmap}{\param{const wxString\& }{resource}}
2462
2463 Creates a new bitmap from a file, static data, or Windows resource, given a valid
2464 wxWindows bitmap resource identifier. For example, if the .WXR file contains
2465 the following:
2466
2467 \begin{verbatim}
2468 static const wxString\& project_resource = "bitmap(name = 'project_resource',\
2469 bitmap = ['project', wxBITMAP_TYPE_BMP_RESOURCE, 'WINDOWS'],\
2470 bitmap = ['project.xpm', wxBITMAP_TYPE_XPM, 'X']).";
2471 \end{verbatim}
2472
2473 then this function can be called as follows:
2474
2475 \begin{verbatim}
2476 wxBitmap *bitmap = wxResourceCreateBitmap("project_resource");
2477 \end{verbatim}
2478
2479 \membersection{::wxResourceCreateIcon}
2480
2481 \func{wxIcon *}{wxResourceCreateIcon}{\param{const wxString\& }{resource}}
2482
2483 Creates a new icon from a file, static data, or Windows resource, given a valid
2484 wxWindows icon resource identifier. For example, if the .WXR file contains
2485 the following:
2486
2487 \begin{verbatim}
2488 static const wxString\& project_resource = "icon(name = 'project_resource',\
2489 icon = ['project', wxBITMAP_TYPE_ICO_RESOURCE, 'WINDOWS'],\
2490 icon = ['project', wxBITMAP_TYPE_XBM_DATA, 'X']).";
2491 \end{verbatim}
2492
2493 then this function can be called as follows:
2494
2495 \begin{verbatim}
2496 wxIcon *icon = wxResourceCreateIcon("project_resource");
2497 \end{verbatim}
2498
2499 \membersection{::wxResourceCreateMenuBar}
2500
2501 \func{wxMenuBar *}{wxResourceCreateMenuBar}{\param{const wxString\& }{resource}}
2502
2503 Creates a new menu bar given a valid wxWindows menubar resource
2504 identifier. For example, if the .WXR file contains the following:
2505
2506 \begin{verbatim}
2507 static const wxString\& menuBar11 = "menu(name = 'menuBar11',\
2508 menu = \
2509 [\
2510 ['&File', 1, '', \
2511 ['&Open File', 2, 'Open a file'],\
2512 ['&Save File', 3, 'Save a file'],\
2513 [],\
2514 ['E&xit', 4, 'Exit program']\
2515 ],\
2516 ['&Help', 5, '', \
2517 ['&About', 6, 'About this program']\
2518 ]\
2519 ]).";
2520 \end{verbatim}
2521
2522 then this function can be called as follows:
2523
2524 \begin{verbatim}
2525 wxMenuBar *menuBar = wxResourceCreateMenuBar("menuBar11");
2526 \end{verbatim}
2527
2528
2529 \membersection{::wxResourceGetIdentifier}
2530
2531 \func{int}{wxResourceGetIdentifier}{\param{const wxString\& }{name}}
2532
2533 Used for retrieving the integer value associated with an identifier.
2534 A zero value indicates that the identifier was not found.
2535
2536 See \helpref{wxResourceAddIdentifier}{wxresourceaddidentifier}.
2537
2538 \membersection{::wxResourceParseData}\label{wxresourcedata}
2539
2540 \func{bool}{wxResourceParseData}{\param{const wxString\& }{resource}, \param{wxResourceTable *}{table = NULL}}
2541
2542 Parses a string containing one or more wxWindows resource objects. If
2543 the resource objects are global static data that are included into the
2544 C++ program, then this function must be called for each variable
2545 containing the resource data, to make it known to wxWindows.
2546
2547 {\it resource} should contain data in the following form:
2548
2549 \begin{verbatim}
2550 dialog(name = 'dialog1',
2551 style = 'wxCAPTION | wxDEFAULT_DIALOG_STYLE',
2552 title = 'Test dialog box',
2553 x = 312, y = 234, width = 400, height = 300,
2554 modal = 0,
2555 control = [1000, wxStaticBox, 'Groupbox', '0', 'group6', 5, 4, 380, 262,
2556 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]],
2557 control = [1001, wxTextCtrl, '', 'wxTE_MULTILINE', 'text3',
2558 156, 126, 200, 70, 'wxWindows is a multi-platform, GUI toolkit.',
2559 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0],
2560 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]]).
2561 \end{verbatim}
2562
2563 This function will typically be used after including a {\tt .wxr} file into
2564 a C++ program as follows:
2565
2566 \begin{verbatim}
2567 #include "dialog1.wxr"
2568 \end{verbatim}
2569
2570 Each of the contained resources will declare a new C++ variable, and each
2571 of these variables should be passed to wxResourceParseData.
2572
2573 \membersection{::wxResourceParseFile}
2574
2575 \func{bool}{wxResourceParseFile}{\param{const wxString\& }{filename}, \param{wxResourceTable *}{table = NULL}}
2576
2577 Parses a file containing one or more wxWindows resource objects
2578 in C++-compatible syntax. Use this function to dynamically load
2579 wxWindows resource data.
2580
2581 \membersection{::wxResourceParseString}\label{wxresourceparsestring}
2582
2583 \func{bool}{wxResourceParseString}{\param{char*}{ s}, \param{wxResourceTable *}{table = NULL}}
2584
2585 Parses a string containing one or more wxWindows resource objects. If
2586 the resource objects are global static data that are included into the
2587 C++ program, then this function must be called for each variable
2588 containing the resource data, to make it known to wxWindows.
2589
2590 {\it resource} should contain data with the following form:
2591
2592 \begin{verbatim}
2593 dialog(name = 'dialog1',
2594 style = 'wxCAPTION | wxDEFAULT_DIALOG_STYLE',
2595 title = 'Test dialog box',
2596 x = 312, y = 234, width = 400, height = 300,
2597 modal = 0,
2598 control = [1000, wxStaticBox, 'Groupbox', '0', 'group6', 5, 4, 380, 262,
2599 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]],
2600 control = [1001, wxTextCtrl, '', 'wxTE_MULTILINE', 'text3',
2601 156, 126, 200, 70, 'wxWindows is a multi-platform, GUI toolkit.',
2602 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0],
2603 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]]).
2604 \end{verbatim}
2605
2606 This function will typically be used after calling \helpref{wxLoadUserResource}{wxloaduserresource} to
2607 load an entire {\tt .wxr file} into a string.
2608
2609 \membersection{::wxResourceRegisterBitmapData}\label{registerbitmapdata}
2610
2611 \func{bool}{wxResourceRegisterBitmapData}{\param{const wxString\& }{name}, \param{char* }{xbm\_data}, \param{int }{width},
2612 \param{int }{height}, \param{wxResourceTable *}{table = NULL}}
2613
2614 \func{bool}{wxResourceRegisterBitmapData}{\param{const wxString\& }{name}, \param{char** }{xpm\_data}}
2615
2616 Makes \verb$#$included XBM or XPM bitmap data known to the wxWindows resource system.
2617 This is required if other resources will use the bitmap data, since otherwise there
2618 is no connection between names used in resources, and the global bitmap data.
2619
2620 \membersection{::wxResourceRegisterIconData}
2621
2622 Another name for \helpref{wxResourceRegisterBitmapData}{registerbitmapdata}.
2623
2624 \section{Log functions}\label{logfunctions}
2625
2626 These functions provide a variety of logging functions: see \helpref{Log classes overview}{wxlogoverview} for
2627 further information. The functions use (implicitly) the currently active log
2628 target, so their descriptions here may not apply if the log target is not the
2629 standard one (installed by wxWindows in the beginning of the program).
2630
2631 \wxheading{Include files}
2632
2633 <wx/log.h>
2634
2635 \membersection{::wxLogError}\label{wxlogerror}
2636
2637 \func{void}{wxLogError}{\param{const char*}{ formatString}, \param{...}{}}
2638
2639 The function to use for error messages, i.e. the messages that must be shown
2640 to the user. The default processing is to pop up a message box to inform the
2641 user about it.
2642
2643 \membersection{::wxLogFatalError}\label{wxlogfatalerror}
2644
2645 \func{void}{wxLogFatalError}{\param{const char*}{ formatString}, \param{...}{}}
2646
2647 Like \helpref{wxLogError}{wxlogerror}, but also
2648 terminates the program with the exit code 3. Using {\it abort()} standard
2649 function also terminates the program with this exit code.
2650
2651 \membersection{::wxLogWarning}\label{wxlogwarning}
2652
2653 \func{void}{wxLogWarning}{\param{const char*}{ formatString}, \param{...}{}}
2654
2655 For warnings - they are also normally shown to the user, but don't interrupt
2656 the program work.
2657
2658 \membersection{::wxLogMessage}\label{wxlogmessage}
2659
2660 \func{void}{wxLogMessage}{\param{const char*}{ formatString}, \param{...}{}}
2661
2662 for all normal, informational messages. They also appear in a message box by
2663 default (but it can be changed). Notice that the standard behaviour is to not
2664 show informational messages if there are any errors later - the logic being
2665 that the later error messages make the informational messages preceding them
2666 meaningless.
2667
2668 \membersection{::wxLogVerbose}\label{wxlogverbose}
2669
2670 \func{void}{wxLogVerbose}{\param{const char*}{ formatString}, \param{...}{}}
2671
2672 For verbose output. Normally, it is suppressed, but
2673 might be activated if the user wishes to know more details about the program
2674 progress (another, but possibly confusing name for the same function is {\bf wxLogInfo}).
2675
2676 \membersection{::wxLogStatus}\label{wxlogstatus}
2677
2678 \func{void}{wxLogStatus}{\param{wxFrame *}{frame}, \param{const char*}{ formatString}, \param{...}{}}
2679
2680 \func{void}{wxLogStatus}{\param{const char*}{ formatString}, \param{...}{}}
2681
2682 Messages logged by this function will appear in the statusbar of the {\it
2683 frame} or of the top level application window by default (i.e. when using
2684 the second version of the function).
2685
2686 If the target frame doesn't have a statusbar, the message will be lost.
2687
2688 \membersection{::wxLogSysError}\label{wxlogsyserror}
2689
2690 \func{void}{wxLogSysError}{\param{const char*}{ formatString}, \param{...}{}}
2691
2692 Mostly used by wxWindows itself, but might be handy for logging errors after
2693 system call (API function) failure. It logs the specified message text as well
2694 as the last system error code ({\it errno} or {\it ::GetLastError()} depending
2695 on the platform) and the corresponding error message. The second form
2696 of this function takes the error code explicitly as the first argument.
2697
2698 \wxheading{See also}
2699
2700 \helpref{wxSysErrorCode}{wxsyserrorcode},
2701 \helpref{wxSysErrorMsg}{wxsyserrormsg}
2702
2703 \membersection{::wxLogDebug}\label{wxlogdebug}
2704
2705 \func{void}{wxLogDebug}{\param{const char*}{ formatString}, \param{...}{}}
2706
2707 The right function for debug output. It only does anything at all in the debug
2708 mode (when the preprocessor symbol \_\_WXDEBUG\_\_ is defined) and expands to
2709 nothing in release mode (otherwise).
2710
2711 \membersection{::wxLogTrace}\label{wxlogtrace}
2712
2713 \func{void}{wxLogTrace}{\param{const char*}{ formatString}, \param{...}{}}
2714
2715 \func{void}{wxLogTrace}{\param{const char *}{mask}, \param{const char *}{formatString}, \param{...}{}}
2716
2717 \func{void}{wxLogTrace}{\param{wxTraceMask}{ mask}, \param{const char *}{formatString}, \param{...}{}}
2718
2719 As {\bf wxLogDebug}, trace functions only do something in debug build and
2720 expand to nothing in the release one. The reason for making
2721 it a separate function from it is that usually there are a lot of trace
2722 messages, so it might make sense to separate them from other debug messages.
2723
2724 The trace messages also usually can be separated into different categories and
2725 the second and third versions of this function only log the message if the
2726 {\it mask} which it has is currently enabled in \helpref{wxLog}{wxlog}. This
2727 allows to selectively trace only some operations and not others by changing
2728 the value of the trace mask (possible during the run-time).
2729
2730 For the second function (taking a string mask), the message is logged only if
2731 the mask has been previously enabled by the call to
2732 \helpref{AddTraceMask}{wxlogaddtracemask}. The predefined string trace masks
2733 used by wxWindows are:
2734
2735 \begin{itemize}\itemsep=0pt
2736 \item wxTRACE\_MemAlloc: trace memory allocation (new/delete)
2737 \item wxTRACE\_Messages: trace window messages/X callbacks
2738 \item wxTRACE\_ResAlloc: trace GDI resource allocation
2739 \item wxTRACE\_RefCount: trace various ref counting operations
2740 \item wxTRACE\_OleCalls: trace OLE method calls (Win32 only)
2741 \end{itemize}
2742
2743 The third version of the function only logs the message if all the bit
2744 corresponding to the {\it mask} are set in the wxLog trace mask which can be
2745 set by \helpref{SetTraceMask}{wxlogsettracemask}. This version is less
2746 flexible than the previous one because it doesn't allow defining the user
2747 trace masks easily - this is why it is deprecated in favour of using string
2748 trace masks.
2749
2750 \begin{itemize}\itemsep=0pt
2751 \item wxTraceMemAlloc: trace memory allocation (new/delete)
2752 \item wxTraceMessages: trace window messages/X callbacks
2753 \item wxTraceResAlloc: trace GDI resource allocation
2754 \item wxTraceRefCount: trace various ref counting operations
2755 \item wxTraceOleCalls: trace OLE method calls (Win32 only)
2756 \end{itemize}
2757
2758 \membersection{::wxSysErrorCode}\label{wxsyserrorcode}
2759
2760 \func{unsigned long}{wxSysErrorCode}{\void}
2761
2762 Returns the error code from the last system call. This function uses
2763 {\tt errno} on Unix platforms and {\tt GetLastError} under Win32.
2764
2765 \wxheading{See also}
2766
2767 \helpref{wxSysErrorMsg}{wxsyserrormsg},
2768 \helpref{wxLogSysError}{wxlogsyserror}
2769
2770 \membersection{::wxSysErrorMsg}\label{wxsyserrormsg}
2771
2772 \func{const wxChar *}{wxSysErrorMsg}{\param{unsigned long }{errCode = 0}}
2773
2774 Returns the error message corresponding to the given system error code. If
2775 {\it errCode} is $0$ (default), the last error code (as returned by
2776 \helpref{wxSysErrorCode}{wxsyserrorcode}) is used.
2777
2778 \wxheading{See also}
2779
2780 \helpref{wxSysErrorCode}{wxsyserrorcode},
2781 \helpref{wxLogSysError}{wxlogsyserror}
2782
2783 \section{Time functions}\label{timefunctions}
2784
2785 The functions in this section deal with getting the current time and
2786 starting/stopping the global timers. Please note that the timer functions are
2787 deprecated because they work with one global timer only and
2788 \helpref{wxTimer}{wxtimer} and/or \helpref{wxStopWatch}{wxstopwatch} classes
2789 should be used instead. For retrieving the current time, you may also use
2790 \helpref{wxDateTime::Now}{wxdatetimenow} or
2791 \helpref{wxDateTime::UNow}{wxdatetimeunow} methods.
2792
2793 \membersection{::wxGetElapsedTime}\label{wxgetelapsedtime}
2794
2795 \func{long}{wxGetElapsedTime}{\param{bool}{ resetTimer = TRUE}}
2796
2797 Gets the time in milliseconds since the last \helpref{::wxStartTimer}{wxstarttimer}.
2798
2799 If {\it resetTimer} is TRUE (the default), the timer is reset to zero
2800 by this call.
2801
2802 See also \helpref{wxTimer}{wxtimer}.
2803
2804 \wxheading{Include files}
2805
2806 <wx/timer.h>
2807
2808 \membersection{::wxGetLocalTime}\label{wxgetlocaltime}
2809
2810 \func{long}{wxGetLocalTime}{\void}
2811
2812 Returns the number of seconds since local time 00:00:00 Jan 1st 1970.
2813
2814 \wxheading{See also}
2815
2816 \helpref{wxDateTime::Now}{wxdatetimenow}
2817
2818 \wxheading{Include files}
2819
2820 <wx/timer.h>
2821
2822 \membersection{::wxGetLocalTimeMillis}\label{wxgetlocaltimemillis}
2823
2824 \func{wxLongLone}{wxGetLocalTimeMillis}{\void}
2825
2826 Returns the number of milliseconds since local time 00:00:00 Jan 1st 1970.
2827
2828 \wxheading{See also}
2829
2830 \helpref{wxDateTime::Now}{wxdatetimenow},\\
2831 \helpref{wxLongLone}{wxlonglong}
2832
2833 \wxheading{Include files}
2834
2835 <wx/timer.h>
2836
2837 \membersection{::wxGetUTCTime}\label{wxgetutctime}
2838
2839 \func{long}{wxGetUTCTime}{\void}
2840
2841 Returns the number of seconds since GMT 00:00:00 Jan 1st 1970.
2842
2843 \wxheading{See also}
2844
2845 \helpref{wxDateTime::Now}{wxdatetimenow}
2846
2847 \wxheading{Include files}
2848
2849 <wx/timer.h>
2850
2851 \membersection{::wxStartTimer}\label{wxstarttimer}
2852
2853 \func{void}{wxStartTimer}{\void}
2854
2855 Starts a stopwatch; use \helpref{::wxGetElapsedTime}{wxgetelapsedtime} to get the elapsed time.
2856
2857 See also \helpref{wxTimer}{wxtimer}.
2858
2859 \wxheading{Include files}
2860
2861 <wx/timer.h>
2862
2863 \section{Debugging macros and functions}\label{debugmacros}
2864
2865 Useful macros and functions for error checking and defensive programming. ASSERTs are only
2866 compiled if \_\_WXDEBUG\_\_ is defined, whereas CHECK macros stay in release
2867 builds.
2868
2869 \wxheading{Include files}
2870
2871 <wx/debug.h>
2872
2873 \membersection{::wxOnAssert}\label{wxonassert}
2874
2875 \func{void}{wxOnAssert}{\param{const char*}{ fileName}, \param{int}{ lineNumber}, \param{const char*}{ msg = NULL}}
2876
2877 This function may be redefined to do something non trivial and is called
2878 whenever one of debugging macros fails (i.e. condition is false in an
2879 assertion).
2880 % TODO: this should probably be an overridable in wxApp.
2881
2882 \membersection{wxASSERT}\label{wxassert}
2883
2884 \func{}{wxASSERT}{\param{}{condition}}
2885
2886 Assert macro. An error message will be generated if the condition is FALSE in
2887 debug mode, but nothing will be done in the release build.
2888
2889 Please note that the condition in wxASSERT() should have no side effects
2890 because it will not be executed in release mode at all.
2891
2892 See also: \helpref{wxASSERT\_MSG}{wxassertmsg}
2893
2894 \membersection{wxASSERT\_MSG}\label{wxassertmsg}
2895
2896 \func{}{wxASSERT\_MSG}{\param{}{condition}, \param{}{msg}}
2897
2898 Assert macro with message. An error message will be generated if the condition is FALSE.
2899
2900 See also: \helpref{wxASSERT}{wxassert}
2901
2902 \membersection{wxFAIL}\label{wxfail}
2903
2904 \func{}{wxFAIL}{\void}
2905
2906 Will always generate an assert error if this code is reached (in debug mode).
2907
2908 See also: \helpref{wxFAIL\_MSG}{wxfailmsg}
2909
2910 \membersection{wxFAIL\_MSG}\label{wxfailmsg}
2911
2912 \func{}{wxFAIL\_MSG}{\param{}{msg}}
2913
2914 Will always generate an assert error with specified message if this code is reached (in debug mode).
2915
2916 This macro is useful for marking unreachable" code areas, for example
2917 it may be used in the "default:" branch of a switch statement if all possible
2918 cases are processed above.
2919
2920 See also: \helpref{wxFAIL}{wxfail}
2921
2922 \membersection{wxCHECK}\label{wxcheck}
2923
2924 \func{}{wxCHECK}{\param{}{condition}, \param{}{retValue}}
2925
2926 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
2927 This check is done even in release mode.
2928
2929 \membersection{wxCHECK\_MSG}\label{wxcheckmsg}
2930
2931 \func{}{wxCHECK\_MSG}{\param{}{condition}, \param{}{retValue}, \param{}{msg}}
2932
2933 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
2934 This check is done even in release mode.
2935
2936 This macro may be only used in non void functions, see also
2937 \helpref{wxCHECK\_RET}{wxcheckret}.
2938
2939 \membersection{wxCHECK\_RET}\label{wxcheckret}
2940
2941 \func{}{wxCHECK\_RET}{\param{}{condition}, \param{}{msg}}
2942
2943 Checks that the condition is true, and returns if not (FAILs with given error
2944 message in debug mode). This check is done even in release mode.
2945
2946 This macro should be used in void functions instead of
2947 \helpref{wxCHECK\_MSG}{wxcheckmsg}.
2948
2949 \membersection{wxCHECK2}\label{wxcheck2}
2950
2951 \func{}{wxCHECK2}{\param{}{condition}, \param{}{operation}}
2952
2953 Checks that the condition is true and \helpref{wxFAIL}{wxfail} and execute
2954 {\it operation} if it is not. This is a generalisation of
2955 \helpref{wxCHECK}{wxcheck} and may be used when something else than just
2956 returning from the function must be done when the {\it condition} is false.
2957
2958 This check is done even in release mode.
2959
2960 \membersection{wxCHECK2\_MSG}\label{wxcheck2msg}
2961
2962 \func{}{wxCHECK2}{\param{}{condition}, \param{}{operation}, \param{}{msg}}
2963
2964 This is the same as \helpref{wxCHECK2}{wxcheck2}, but
2965 \helpref{wxFAIL\_MSG}{wxfailmsg} with the specified {\it msg} is called
2966 instead of wxFAIL() if the {\it condition} is false.
2967
2968 \section{Environment access functions}\label{environfunctions}
2969
2970 The functions in this section allow to access (get) or change value of
2971 environment variables in a portable way. They are currently implemented under
2972 Win32 and POSIX-like systems (Unix).
2973
2974 % TODO add some stuff about env var inheriting but not propagating upwards (VZ)
2975
2976 \wxheading{Include files}
2977
2978 <wx/utils.h>
2979
2980 \membersection{wxGetenv}\label{wxgetenvmacro}
2981
2982 \func{wxChar *}{wxGetEnv}{\param{const wxString\&}{ var}}
2983
2984 This is a macro defined as {\tt getenv()} or its wide char version in Unicode
2985 mode.
2986
2987 Note that under Win32 it may not return correct value for the variables set
2988 with \helpref{wxSetEnv}{wxsetenv}, use \helpref{wxGetEnv}{wxgetenv} function
2989 instead.
2990
2991 \membersection{wxGetEnv}\label{wxgetenv}
2992
2993 \func{bool}{wxGetEnv}{\param{const wxString\&}{ var}, \param{wxString *}{value}}
2994
2995 Returns the current value of the environment variable {\it var} in {\it value}.
2996 {\it value} may be {\tt NULL} if you just want to know if the variable exists
2997 and are not interested in its value.
2998
2999 Returns {\tt TRUE} if the variable exists, {\tt FALSE} otherwise.
3000
3001 \membersection{wxSetEnv}\label{wxsetenv}
3002
3003 \func{bool}{wxSetEnv}{\param{const wxString\&}{ var}, \param{const wxChar *}{value}}
3004
3005 Sets the value of the environment variable {\it var} (adding it if necessary)
3006 to {\it value}.
3007
3008 Returns {\tt TRUE} on success.
3009
3010 \membersection{wxUnsetEnv}\label{wxunsetenv}
3011
3012 \func{bool}{wxUnsetEnv}{\param{const wxString\&}{ var}}
3013
3014 Removes the variable {\it var} from the environment.
3015 \helpref{wxGetEnv}{wxgetenv} will return {\tt NULL} after the call to this
3016 function.
3017
3018 Returns {\tt TRUE} on success.
3019
3020