1 \chapter{Functions
}\label{functions
}
2 \setheader{{\it CHAPTER
\thechapter}}{}{}{}{}{{\it CHAPTER
\thechapter}}%
3 \setfooter{\thepage}{}{}{}{}{\thepage}
5 The functions defined in wxWindows are described here.
7 \section{File functions
}\label{filefunctions
}
9 See also
\helpref{wxPathList
}{wxpathlist
}.
11 \membersection{::wxDirExists
}
13 \func{bool
}{wxDirExists
}{\param{const wxString\&
}{dirname
}}
15 Returns TRUE if the directory exists.
17 \membersection{::wxDos2UnixFilename
}
19 \func{void
}{Dos2UnixFilename
}{\param{const wxString\&
}{s
}}
21 Converts a DOS to a Unix filename by replacing backslashes with forward
24 \membersection{::wxFileExists
}
26 \func{bool
}{wxFileExists
}{\param{const wxString\&
}{filename
}}
28 Returns TRUE if the file exists.
30 \membersection{::wxFileNameFromPath
}
32 \func{wxString
}{wxFileNameFromPath
}{\param{const wxString\&
}{path
}}
34 Returns a temporary pointer to the filename for a full path.
35 Copy this pointer for long-term use.
37 \membersection{::wxFindFirstFile
}\label{wxfindfirstfile
}
39 \func{wxString
}{wxFindFirstFile
}{\param{const wxString\&
}{spec
},
\param{int
}{ flags =
0}}
41 This function does directory searching; returns the first file
42 that matches the path
{\it spec
}, or NULL. Use
\helpref{wxFindNextFile
}{wxfindnextfile
} to
43 get the next matching file.
45 {\it spec
} may contain wildcards.
47 {\it flags
} is reserved for future use.
49 The returned filename is a pointer to static memory so should
55 wxString f = wxFindFirstFile("/home/project/*.*");
63 \membersection{::wxFindNextFile
}\label{wxfindnextfile
}
65 \func{wxString
}{wxFindFirstFile
}{\void}
67 Returns the next file that matches the path passed to
\helpref{wxFindFirstFile
}{wxfindfirstfile
}.
69 \membersection{::wxGetOSDirectory
}\label{wxgetosdirectory
}
71 \func{wxString
}{wxGetOSDirectory
}{\void}
73 Returns the Windows directory under Windows; on other platforms returns the empty string.
75 \membersection{::wxIsAbsolutePath
}
77 \func{bool
}{wxIsAbsolutePath
}{\param{const wxString\&
}{filename
}}
79 Returns TRUE if the argument is an absolute filename, i.e. with a slash
80 or drive name at the beginning.
82 \membersection{::wxPathOnly
}
84 \func{wxString
}{wxPathOnly
}{\param{const wxString\&
}{path
}}
86 Returns a temporary pointer to the directory part of the filename. Copy this
87 pointer for long-term use.
89 \membersection{::wxUnix2DosFilename
}
91 \func{void
}{wxUnix2DosFilename
}{\param{const wxString\&
}{s
}}
93 Converts a Unix to a DOS filename by replacing forward
94 slashes with backslashes.
96 \membersection{::wxConcatFiles
}
98 \func{bool
}{wxConcatFiles
}{\param{const wxString\&
}{file1
},
\param{const wxString\&
}{file2
},
99 \param{const wxString\&
}{file3
}}
101 Concatenates
{\it file1
} and
{\it file2
} to
{\it file3
}, returning
104 \membersection{::wxCopyFile
}
106 \func{bool
}{wxCopyFile
}{\param{const wxString\&
}{file1
},
\param{const wxString\&
}{file2
}}
108 Copies
{\it file1
} to
{\it file2
}, returning TRUE if successful.
110 \membersection{::wxGetHostName
}\label{wxgethostname
}
112 \func{bool
}{wxGetHostName
}{\param{const wxString\&
}{buf
},
\param{int
}{sz
}}
114 Copies the current host machine's name into the supplied buffer.
116 Under Windows or NT, this function first looks in the environment
117 variable SYSTEM
\_NAME; if this is not found, the entry
{\bf HostName
}\rtfsp
118 in the
{\bf wxWindows
} section of the WIN.INI file is tried.
120 Returns TRUE if successful, FALSE otherwise.
122 \membersection{::wxGetEmailAddress
}\label{wxgetemailaddress
}
124 \func{bool
}{wxGetEmailAddress
}{\param{const wxString\&
}{buf
},
\param{int
}{sz
}}
126 Copies the user's email address into the supplied buffer, by
127 concatenating the values returned by
\helpref{wxGetHostName
}{wxgethostname
}\rtfsp
128 and
\helpref{wxGetUserId
}{wxgetuserid
}.
130 Returns TRUE if successful, FALSE otherwise.
132 \membersection{::wxGetUserId
}\label{wxgetuserid
}
134 \func{bool
}{wxGetUserId
}{\param{const wxString\&
}{buf
},
\param{int
}{sz
}}
136 Copies the current user id into the supplied buffer.
138 Under Windows or NT, this function first looks in the environment
139 variables USER and LOGNAME; if neither of these is found, the entry
{\bf UserId
}\rtfsp
140 in the
{\bf wxWindows
} section of the WIN.INI file is tried.
142 Returns TRUE if successful, FALSE otherwise.
144 \membersection{::wxGetUserName
}\label{wxgetusername
}
146 \func{bool
}{wxGetUserName
}{\param{const wxString\&
}{buf
},
\param{int
}{sz
}}
148 Copies the current user name into the supplied buffer.
150 Under Windows or NT, this function looks for the entry
{\bf UserName
}\rtfsp
151 in the
{\bf wxWindows
} section of the WIN.INI file. If PenWindows
152 is running, the entry
{\bf Current
} in the section
{\bf User
} of
153 the PENWIN.INI file is used.
155 Returns TRUE if successful, FALSE otherwise.
157 \membersection{::wxGetWorkingDirectory
}
159 \func{wxString
}{wxGetWorkingDirectory
}{\param{const wxString\&
}{buf=NULL
},
\param{int
}{sz=
1000}}
161 Copies the current working directory into the buffer if supplied, or
162 copies the working directory into new storage (which you must delete yourself)
163 if the buffer is NULL.
165 {\it sz
} is the size of the buffer if supplied.
167 \membersection{::wxGetTempFileName
}
169 \func{wxString
}{wxGetTempFileName
}{\param{const wxString\&
}{prefix
},
\param{const wxString\&
}{buf=NULL
}}
171 Makes a temporary filename based on
{\it prefix
}, opens and closes the file,
172 and places the name in
{\it buf
}. If
{\it buf
} is NULL, new store
173 is allocated for the temporary filename using
{\it new
}.
175 Under Windows, the filename will include the drive and name of the
176 directory allocated for temporary files (usually the contents of the
177 TEMP variable). Under Unix, the
{\tt /tmp
} directory is used.
179 It is the application's responsibility to create and delete the file.
181 \membersection{::wxIsWild
}\label{wxiswild
}
183 \func{bool
}{wxIsWild
}{\param{const wxString\&
}{pattern
}}
185 Returns TRUE if the pattern contains wildcards. See
\helpref{wxMatchWild
}{wxmatchwild
}.
187 \membersection{::wxMatchWild
}\label{wxmatchwild
}
189 \func{bool
}{wxMatchWild
}{\param{const wxString\&
}{pattern
},
\param{const wxString\&
}{text
},
\param{bool
}{ dot
\_special}}
191 Returns TRUE if the
{\it pattern
}\/ matches the
{\it text
}\/; if
{\it
192 dot
\_special}\/ is TRUE, filenames beginning with a dot are not matched
193 with wildcard characters. See
\helpref{wxIsWild
}{wxiswild
}.
195 \membersection{::wxMkdir
}
197 \func{bool
}{wxMkdir
}{\param{const wxString\&
}{dir
}}
199 Makes the directory
{\it dir
}, returning TRUE if successful.
201 \membersection{::wxRemoveFile
}
203 \func{bool
}{wxRemoveFile
}{\param{const wxString\&
}{file
}}
205 Removes
{\it file
}, returning TRUE if successful.
207 \membersection{::wxRenameFile
}
209 \func{bool
}{wxRenameFile
}{\param{const wxString\&
}{file1
},
\param{const wxString\&
}{file2
}}
211 Renames
{\it file1
} to
{\it file2
}, returning TRUE if successful.
213 \membersection{::wxRmdir
}
215 \func{bool
}{wxRmdir
}{\param{const wxString\&
}{dir
},
\param{int
}{ flags=
0}}
217 Removes the directory
{\it dir
}, returning TRUE if successful. Does not work under VMS.
219 The
{\it flags
} parameter is reserved for future use.
221 \membersection{::wxSetWorkingDirectory
}
223 \func{bool
}{wxSetWorkingDirectory
}{\param{const wxString\&
}{dir
}}
225 Sets the current working directory, returning TRUE if the operation succeeded.
226 Under MS Windows, the current drive is also changed if
{\it dir
} contains a drive specification.
228 \section{String functions
}
230 \membersection{::copystring
}
232 \func{char*
}{copystring
}{\param{const char*
}{s
}}
234 Makes a copy of the string
{\it s
} using the C++ new operator, so it can be
235 deleted with the
{\it delete
} operator.
237 \membersection{::wxStringMatch
}
239 \func{bool
}{wxStringMatch
}{\param{const wxString\&
}{s1
},
\param{const wxString\&
}{s2
},\\
240 \param{bool
}{ subString = TRUE
},
\param{bool
}{ exact = FALSE
}}
242 Returns TRUE if the substring
{\it s1
} is found within
{\it s2
},
243 ignoring case if
{\it exact
} is FALSE. If
{\it subString
} is FALSE,
244 no substring matching is done.
246 \membersection{::wxStringEq
}\label{wxstringeq
}
248 \func{bool
}{wxStringEq
}{\param{const wxString\&
}{s1
},
\param{const wxString\&
}{s2
}}
253 #define wxStringEq(s1, s2) (s1 && s2 && (strcmp(s1, s2) ==
0))
256 \membersection{::wxTransferFileToStream
}\label{wxtransferfiletostream
}
258 \func{bool
}{wxTransferFileToStream
}{\param{const wxString\&
}{filename
},
\param{ostream\&
}{stream
}}
260 Copies the given file to
{\it stream
}. Useful when converting an old application to
261 use streams (within the
document/view framework, for example).
263 Use of this function requires the file wx
\_doc.h to be included.
265 \membersection{::wxTransferStreamToFile
}\label{wxtransferstreamtofile
}
267 \func{bool
}{wxTransferStreamToFile
}{\param{istream\&
}{stream
} \param{const wxString\&
}{filename
}}
269 Copies the given stream to the file
{\it filename
}. Useful when converting an old application to
270 use streams (within the
document/view framework, for example).
272 Use of this function requires the file wx
\_doc.h to be included.
274 \section{Dialog functions
}\label{dialogfunctions
}
276 Below are a number of convenience functions for getting input from the
277 user or displaying messages. Note that in these functions the last three
278 parameters are optional. However, it is recommended to pass a parent frame
279 parameter, or (in MS Windows or Motif) the wrong window frame may be brought to
280 the front when the dialog box is popped up.
282 \membersection{::wxFileSelector
}\label{wxfileselector
}
284 \func{wxString
}{wxFileSelector
}{\param{const wxString\&
}{message
},
\param{const wxString\&
}{default
\_path = NULL
},\\
285 \param{const wxString\&
}{default
\_filename = NULL
},
\param{const wxString\&
}{default
\_extension = NULL
},\\
286 \param{const wxString\&
}{wildcard = ``*.*''
},
\param{int
}{flags =
0},
\param{wxWindow *
}{parent = NULL
},\\
287 \param{int
}{ x = -
1},
\param{int
}{ y = -
1}}
289 Pops up a file selector box. In Windows, this is the common file selector
290 dialog. In X, this is a file selector box with somewhat less functionality.
291 The path and filename are distinct elements of a full file pathname.
292 If path is NULL, the current directory will be used. If filename is NULL,
293 no default filename will be supplied. The wildcard determines what files
294 are displayed in the file selector, and file extension supplies a type
295 extension for the required filename. Flags may be a combination of wxOPEN,
296 wxSAVE, wxOVERWRITE
\_PROMPT, wxHIDE
\_READONLY, or
0. They are only significant
297 at present in Windows.
299 Both the X and Windows versions implement a wildcard filter. Typing a
300 filename containing wildcards
(*, ?) in the filename text item, and
301 clicking on Ok, will result in only those files matching the pattern being
302 displayed. In the X version, supplying no default name will result in the
303 wildcard filter being inserted in the filename text item; the filter is
304 ignored if a default name is supplied.
306 Under Windows (only), the wildcard may be a specification for multiple
307 types of file with a description for each, such as:
310 "BMP files (*.bmp) | *.bmp | GIF files (*.gif) | *.gif"
313 The application must check for a NULL return value (the user pressed
314 Cancel). For example:
317 const wxString\& s = wxFileSelector("Choose a file to open");
324 Remember that the returned pointer is temporary and should be copied
325 if other wxWindows calls will be made before the value is to be used.
327 \membersection{::wxGetTextFromUser}\label{wxgettextfromuser}
329 \func{wxString}{wxGetTextFromUser}{\param{const wxString\& }{message}, \param{const wxString\& }{caption = ``Input text"},\\
330 \param{const wxString\& }{default\_value = ``"}, \param{wxWindow *}{parent = NULL},\\
331 \param{int}{ x = -1}, \param{int}{ y = -1}, \param{bool}{ centre = TRUE}}
333 Pop up a dialog box with title set to {\it caption}, message {\it message}, and a
334 \rtfsp{\it default\_value}. The user may type in text and press OK to return this text,
335 or press Cancel to return NULL.
337 If {\it centre} is TRUE, the message text (which may include new line characters)
338 is centred; if FALSE, the message is left-justified.
340 \membersection{::wxGetMultipleChoice}\label{wxgetmultiplechoice}
342 \func{int}{wxGetMultipleChoice}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
343 \param{int }{nsel}, \param{int *}{selection},
344 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
345 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
347 Pops up a dialog box containing a message, OK/Cancel buttons and a multiple-selection
348 listbox. The user may choose one or more item(s) and press OK or Cancel.
350 The number of initially selected choices, and array of the selected indices,
351 are passed in; this array will contain the user selections on exit, with
352 the function returning the number of selections. {\it selection} must be
353 as big as the number of choices, in case all are selected.
355 If Cancel is pressed, -1 is returned.
357 {\it choices} is an array of {\it n} strings for the listbox.
359 If {\it centre} is TRUE, the message text (which may include new line characters)
360 is centred; if FALSE, the message is left-justified.
362 \membersection{::wxGetSingleChoice}\label{wxgetsinglechoice}
364 \func{wxString}{wxGetSingleChoice}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
365 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
366 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
368 Pops up a dialog box containing a message, OK/Cancel buttons and a single-selection
369 listbox. The user may choose an item and press OK to return a string or
370 Cancel to return NULL.
372 {\it choices} is an array of {\it n} strings for the listbox.
374 If {\it centre} is TRUE, the message text (which may include new line characters)
375 is centred; if FALSE, the message is left-justified.
377 \membersection{::wxGetSingleChoiceIndex}\label{wxgetsinglechoiceindex}
379 \func{int}{wxGetSingleChoiceIndex}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
380 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1},\\
381 \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
383 As {\bf wxGetSingleChoice} but returns the index representing the selected string.
384 If the user pressed cancel, -1 is returned.
386 \membersection{::wxGetSingleChoiceData}\label{wxgetsinglechoicedata}
388 \func{wxString}{wxGetSingleChoiceData}{\param{const wxString\& }{message}, \param{const wxString\& }{caption}, \param{int}{ n}, \param{const wxString\& }{choices[]},\\
389 \param{const wxString\& }{client\_data[]}, \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1},\\
390 \param{int}{ y = -1}, \param{bool}{ centre = TRUE}, \param{int }{width=150}, \param{int }{height=200}}
392 As {\bf wxGetSingleChoice} but takes an array of client data pointers
393 corresponding to the strings, and returns one of these pointers.
395 \membersection{::wxMessageBox}\label{wxmessagebox}
397 \func{int}{wxMessageBox}{\param{const wxString\& }{message}, \param{const wxString\& }{caption = ``Message"}, \param{int}{ style = wxOK \pipe wxCENTRE},\\
398 \param{wxWindow *}{parent = NULL}, \param{int}{ x = -1}, \param{int}{ y = -1}}
400 General purpose message dialog. {\it style} may be a bit list of the
401 following identifiers:
403 \begin{twocollist}\itemsep=0pt
404 \twocolitem{wxYES\_NO}{Puts Yes and No buttons on the message box. May be combined with
406 \twocolitem{wxCANCEL}{Puts a Cancel button on the message box. May be combined with
408 \twocolitem{wxOK}{Puts an Ok button on the message box. May be combined with wxCANCEL.}
409 \twocolitem{wxCENTRE}{Centres the text.}
410 \twocolitem{wxICON\_EXCLAMATION}{Under Windows, displays an exclamation mark symbol.}
411 \twocolitem{wxICON\_HAND}{Under Windows, displays a hand symbol.}
412 \twocolitem{wxICON\_QUESTION}{Under Windows, displays a question mark symbol.}
413 \twocolitem{wxICON\_INFORMATION}{Under Windows, displays an information symbol.}
416 The return value is one of: wxYES, wxNO, wxCANCEL, wxOK.
422 int answer = wxMessageBox("Quit program?", "Confirm",
423 wxYES_NO | wxCANCEL, main_frame);
429 {\it message} may contain newline characters, in which case the
430 message will be split into separate lines, to cater for large messages.
432 Under Windows, the native MessageBox function is used unless wxCENTRE
433 is specified in the style, in which case a generic function is used.
434 This is because the native MessageBox function cannot centre text.
435 The symbols are not shown when the generic function is used.
437 \section{GDI functions}\label{gdifunctions}
439 The following are relevant to the GDI (Graphics Device Interface).
441 \membersection{::wxColourDisplay}
443 \func{bool}{wxColourDisplay}{\void}
445 Returns TRUE if the display is colour, FALSE otherwise.
447 \membersection{::wxDisplayDepth}
449 \func{int}{wxDisplayDepth}{\void}
451 Returns the depth of the display (a value of 1 denotes a monochrome display).
453 \membersection{::wxMakeMetafilePlaceable}\label{wxmakemetafileplaceable}
455 \func{bool}{wxMakeMetafilePlaceable}{\param{const wxString\& }{filename}, \param{int }{minX}, \param{int }{minY},
456 \param{int }{maxX}, \param{int }{maxY}, \param{float }{scale=1.0}}
458 Given a filename for an existing, valid metafile (as constructed using \helpref{wxMetafileDC}{wxmetafiledc})
459 makes it into a placeable metafile by prepending a header containing the given
460 bounding box. The bounding box may be obtained from a device context after drawing
461 into it, using the functions wxDC::MinX, wxDC::MinY, wxDC::MaxX and wxDC::MaxY.
463 In addition to adding the placeable metafile header, this function adds
464 the equivalent of the following code to the start of the metafile data:
467 SetMapMode(dc, MM_ANISOTROPIC);
468 SetWindowOrg(dc, minX, minY);
469 SetWindowExt(dc, maxX - minX, maxY - minY);
472 This simulates the wxMM\_TEXT mapping mode, which wxWindows assumes.
474 Placeable metafiles may be imported by many Windows applications, and can be
475 used in RTF (Rich Text Format) files.
477 {\it scale} allows the specification of scale for the metafile.
479 This function is only available under Windows.
481 \membersection{::wxSetCursor}\label{wxsetcursor}
483 \func{void}{wxSetCursor}{\param{wxCursor *}{cursor}}
485 Globally sets the cursor; only has an effect in MS Windows.
486 See also \helpref{wxCursor}{wxcursor}, \helpref{wxWindow::SetCursor}{wxwindowsetcursor}.
488 \section{Printer settings}\label{printersettings}
490 The following functions are used to control PostScript printing. Under
491 Windows, PostScript output can only be sent to a file.
493 \membersection{::wxGetPrinterCommand}
495 \func{wxString}{wxGetPrinterCommand}{\void}
497 Gets the printer command used to print a file. The default is {\tt lpr}.
499 \membersection{::wxGetPrinterFile}
501 \func{wxString}{wxGetPrinterFile}{\void}
503 Gets the PostScript output filename.
505 \membersection{::wxGetPrinterMode}
507 \func{int}{wxGetPrinterMode}{\void}
509 Gets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
510 The default is PS\_PREVIEW.
512 \membersection{::wxGetPrinterOptions}
514 \func{wxString}{wxGetPrinterOptions}{\void}
516 Gets the additional options for the print command (e.g. specific printer). The default is nothing.
518 \membersection{::wxGetPrinterOrientation}
520 \func{int}{wxGetPrinterOrientation}{\void}
522 Gets the orientation (PS\_PORTRAIT or PS\_LANDSCAPE). The default is PS\_PORTRAIT.
524 \membersection{::wxGetPrinterPreviewCommand}
526 \func{wxString}{wxGetPrinterPreviewCommand}{\void}
528 Gets the command used to view a PostScript file. The default depends on the platform.
530 \membersection{::wxGetPrinterScaling}
532 \func{void}{wxGetPrinterScaling}{\param{float *}{x}, \param{float *}{y}}
534 Gets the scaling factor for PostScript output. The default is 1.0, 1.0.
536 \membersection{::wxGetPrinterTranslation}
538 \func{void}{wxGetPrinterTranslation}{\param{float *}{x}, \param{float *}{y}}
540 Gets the translation (from the top left corner) for PostScript output. The default is 0.0, 0.0.
542 \membersection{::wxSetPrinterCommand}
544 \func{void}{wxSetPrinterCommand}{\param{const wxString\& }{command}}
546 Sets the printer command used to print a file. The default is {\tt lpr}.
548 \membersection{::wxSetPrinterFile}
550 \func{void}{wxSetPrinterFile}{\param{const wxString\& }{filename}}
552 Sets the PostScript output filename.
554 \membersection{::wxSetPrinterMode}
556 \func{void}{wxSetPrinterMode}{\param{int }{mode}}
558 Sets the printing mode controlling where output is sent (PS\_PREVIEW, PS\_FILE or PS\_PRINTER).
559 The default is PS\_PREVIEW.
561 \membersection{::wxSetPrinterOptions}
563 \func{void}{wxSetPrinterOptions}{\param{const wxString\& }{options}}
565 Sets the additional options for the print command (e.g. specific printer). The default is nothing.
567 \membersection{::wxSetPrinterOrientation}
569 \func{void}{wxSetPrinterOrientation}{\param{int}{ orientation}}
571 Sets the orientation (PS\_PORTRAIT or PS\_LANDSCAPE). The default is PS\_PORTRAIT.
573 \membersection{::wxSetPrinterPreviewCommand}
575 \func{void}{wxSetPrinterPreviewCommand}{\param{const wxString\& }{command}}
577 Sets the command used to view a PostScript file. The default depends on the platform.
579 \membersection{::wxSetPrinterScaling}
581 \func{void}{wxSetPrinterScaling}{\param{float }{x}, \param{float }{y}}
583 Sets the scaling factor for PostScript output. The default is 1.0, 1.0.
585 \membersection{::wxSetPrinterTranslation}
587 \func{void}{wxSetPrinterTranslation}{\param{float }{x}, \param{float }{y}}
589 Sets the translation (from the top left corner) for PostScript output. The default is 0.0, 0.0.
591 \section{Clipboard functions}\label{clipsboard}
593 These clipboard functions are implemented for Windows only.
595 \membersection{::wxClipboardOpen}
597 \func{bool}{wxClipboardOpen}{\void}
599 Returns TRUE if this application has already opened the clipboard.
601 \membersection{::wxCloseClipboard}
603 \func{bool}{wxCloseClipboard}{\void}
605 Closes the clipboard to allow other applications to use it.
607 \membersection{::wxEmptyClipboard}
609 \func{bool}{wxEmptyClipboard}{\void}
611 Empties the clipboard.
613 \membersection{::wxEnumClipboardFormats}
615 \func{int}{wxEnumClipboardFormats}{\param{int}{dataFormat}}
617 Enumerates the formats found in a list of available formats that belong
618 to the clipboard. Each call to this function specifies a known
619 available format; the function returns the format that appears next in
622 {\it dataFormat} specifies a known format. If this parameter is zero,
623 the function returns the first format in the list.
625 The return value specifies the next known clipboard data format if the
626 function is successful. It is zero if the {\it dataFormat} parameter specifies
627 the last format in the list of available formats, or if the clipboard
630 Before it enumerates the formats function, an application must open the clipboard by using the
631 wxOpenClipboard function.
633 \membersection{::wxGetClipboardData}
635 \func{wxObject *}{wxGetClipboardData}{\param{int}{dataFormat}}
637 Gets data from the clipboard.
639 {\it dataFormat} may be one of:
641 \begin{itemize}\itemsep=0pt
642 \item wxCF\_TEXT or wxCF\_OEMTEXT: returns a pointer to new memory containing a null-terminated text string.
643 \item wxCF\_BITMAP: returns a new wxBitmap.
646 The clipboard must have previously been opened for this call to succeed.
648 \membersection{::wxGetClipboardFormatName}
650 \func{bool}{wxGetClipboardFormatName}{\param{int}{dataFormat}, \param{const wxString\& }{formatName}, \param{int}{maxCount}}
652 Gets the name of a registered clipboard format, and puts it into the buffer {\it formatName} which is of maximum
653 length {\it maxCount}. {\it dataFormat} must not specify a predefined clipboard format.
655 \membersection{::wxIsClipboardFormatAvailable}
657 \func{bool}{wxIsClipboardFormatAvailable}{\param{int}{dataFormat}}
659 Returns TRUE if the given data format is available on the clipboard.
661 \membersection{::wxOpenClipboard}
663 \func{bool}{wxOpenClipboard}{\void}
665 Opens the clipboard for passing data to it or getting data from it.
667 \membersection{::wxRegisterClipboardFormat}
669 \func{int}{wxRegisterClipboardFormat}{\param{const wxString\& }{formatName}}
671 Registers the clipboard data format name and returns an identifier.
673 \membersection{::wxSetClipboardData}
675 \func{bool}{wxSetClipboardData}{\param{int}{dataFormat}, \param{wxObject *}{data}, \param{int}{width}, \param{int}{height}}
677 Passes data to the clipboard.
679 {\it dataFormat} may be one of:
681 \begin{itemize}\itemsep=0pt
682 \item wxCF\_TEXT or wxCF\_OEMTEXT: {\it data} is a null-terminated text string.
683 \item wxCF\_BITMAP: {\it data} is a wxBitmap.
684 \item wxCF\_DIB: {\it data} is a wxBitmap. The bitmap is converted to a DIB (device independent bitmap).
685 \item wxCF\_METAFILE: {\it data} is a wxMetafile. {\it width} and {\it height} are used to give recommended dimensions.
688 The clipboard must have previously been opened for this call to succeed.
690 \section{Miscellaneous functions}\label{miscellany}
692 \membersection{::NewId}
694 \func{long}{NewId}{\void}
696 Generates an integer identifier unique to this run of the program.
698 \membersection{::RegisterId}
700 \func{void}{RegisterId}{\param{long}{ id}}
702 Ensures that ids subsequently generated by {\bf NewId} do not clash with
705 \membersection{::wxBeginBusyCursor}\label{wxbeginbusycursor}
707 \func{void}{wxBeginBusyCursor}{\param{wxCursor *}{cursor = wxHOURGLASS\_CURSOR}}
709 Changes the cursor to the given cursor for all windows in the application.
710 Use \helpref{wxEndBusyCursor}{wxendbusycursor} to revert the cursor back
711 to its previous state. These two calls can be nested, and a counter
712 ensures that only the outer calls take effect.
714 See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
716 \membersection{::wxBell}
718 \func{void}{wxBell}{\void}
720 Ring the system bell.
722 \membersection{::wxCleanUp}\label{wxcleanup}
724 \func{void}{wxCleanUp}{\void}
726 Normally, wxWindows will call this cleanup function for you. However, if
727 you call \helpref{wxEntry}{wxentry} in order to initialize wxWindows
728 manually, then you should also call wxCleanUp before terminating wxWindows,
729 if wxWindows does not get a chance to do it.
731 \membersection{::wxCreateDynamicObject}\label{wxcreatedynamicobject}
733 \func{wxObject *}{wxCreateDynamicObject}{\param{const wxString\& }{className}}
735 Creates and returns an object of the given class, if the class has been
736 registered with the dynamic class system using DECLARE... and IMPLEMENT... macros.
738 \membersection{::wxDDECleanUp}\label{wxddecleanup}
740 \func{void}{wxDDECleanUp}{\void}
742 Called when wxWindows exits, to clean up the DDE system. This no longer needs to be
743 called by the application.
745 See also helpref{wxDDEInitialize}{wxddeinitialize}.
747 \membersection{::wxDDEInitialize}\label{wxddeinitialize}
749 \func{void}{wxDDEInitialize}{\void}
751 Initializes the DDE system. May be called multiple times without harm.
753 This no longer needs to be called by the application: it will be called
754 by wxWindows if necessary.
756 See also \helpref{wxDDEServer}{wxddeserver}, \helpref{wxDDEClient}{wxddeclient}, \helpref{wxDDEConnection}{wxddeconnection},
757 \helpref{wxDDECleanUp}{wxddecleanup}.
759 \membersection{::wxDebugMsg}\label{wxdebugmsg}
761 \func{void}{wxDebugMsg}{\param{const wxString\& }{fmt}, \param{...}{}}
763 Display a debugging message; under Windows, this will appear on the
764 debugger command window, and under Unix, it will be written to standard
767 The syntax is identical to {\bf printf}: pass a format string and a
768 variable list of arguments.
770 Note that under Windows, you can see the debugging messages without a
771 debugger if you have the DBWIN debug log application that comes with
774 {\bf Tip:} under Windows, if your application crashes before the
775 message appears in the debugging window, put a wxYield call after
776 each wxDebugMsg call. wxDebugMsg seems to be broken under WIN32s
777 (at least for Watcom C++): preformat your messages and use OutputDebugString
780 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
782 \membersection{::wxDisplaySize}
784 \func{void}{wxDisplaySize}{\param{int *}{width}, \param{int *}{height}}
786 Gets the physical size of the display in pixels.
788 \membersection{::wxEntry}\label{wxentry}
790 This initializes wxWindows in a platform-dependent way. Use this if you
791 are not using the default wxWindows entry code (e.g. main or WinMain). For example,
792 you can initialize wxWindows from an Microsoft Foundation Classes application using
793 this function. See also \helpref{wxCleanUp}{wxcleanup}.
795 \func{void}{wxEntry}{\param{HANDLE}{ hInstance}, \param{HANDLE}{ hPrevInstance},
796 \param{const wxString\& }{commandLine}, \param{int}{ cmdShow}, \param{bool}{ enterLoop = TRUE}}
798 wxWindows initialization under Windows (non-DLL). If {\it enterLoop} is FALSE, the
799 function will return immediately after calling wxApp::OnInit. Otherwise, the wxWindows
800 message loop will be entered.
802 \func{void}{wxEntry}{\param{HANDLE}{ hInstance}, \param{HANDLE}{ hPrevInstance},
803 \param{WORD}{ wDataSegment}, \param{WORD}{ wHeapSize}, \param{const wxString\& }{ commandLine}}
805 wxWindows initialization under Windows (for applications constructed as a DLL).
807 \func{int}{wxEntry}{\param{int}{ argc}, \param{const wxString\& *}{argv}}
809 wxWindows initialization under Unix.
811 \membersection{::wxError}\label{wxerror}
813 \func{void}{wxError}{\param{const wxString\& }{msg}, \param{const wxString\& }{title = "wxWindows Internal Error"}}
815 Displays {\it msg} and continues. This writes to standard error under
816 Unix, and pops up a message box under Windows. Used for internal
817 wxWindows errors. See also \helpref{wxFatalError}{wxfatalerror}.
819 \membersection{::wxEndBusyCursor}\label{wxendbusycursor}
821 \func{void}{wxEndBusyCursor}{\void}
823 Changes the cursor back to the original cursor, for all windows in the application.
824 Use with \helpref{wxBeginBusyCursor}{wxbeginbusycursor}.
826 See also \helpref{wxIsBusy}{wxisbusy}, \helpref{wxBusyCursor}{wxbusycursor}.
828 \membersection{::wxExecute}\label{wxexecute}
830 \func{long}{wxExecute}{\param{const wxString\& }{command}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
832 \func{long}{wxExecute}{\param{char **}{argv}, \param{bool }{sync = FALSE}, \param{wxProcess *}{callback = NULL}}
834 Executes another program in Unix or Windows.
836 The first form takes a command string, such as {\tt "emacs file.txt"}.
838 The second form takes an array of values: a command, any number of
839 arguments, terminated by NULL.
841 If {\it sync} is FALSE (the default), flow of control immediately returns.
842 If TRUE, the current application waits until the other program has terminated.
844 If execution is asynchronous, the return value is the process id,
845 otherwise it is a status value. A zero value indicates that the command could not
848 If callback isn't NULL and if execution is asynchronous,
849 \helpref{wxProcess::OnTerminate}{wxprocessonterminate} will be called when
850 the process finishes.
852 See also \helpref{wxShell}{wxshell}, \helpref{wxProcess}{wxprocess}.
854 \membersection{::wxExit}\label{wxexit}
856 \func{void}{wxExit}{\void}
858 Exits application after calling \helpref{wxApp::OnExit}{wxapponexit}.
859 Should only be used in an emergency: normally the top-level frame
860 should be deleted (after deleting all other frames) to terminate the
861 application. See \helpref{wxWindow::OnCloseWindow}{wxwindowonclosewindow} and \helpref{wxApp}{wxapp}.
863 \membersection{::wxFatalError}\label{wxfatalerror}
865 \func{void}{wxFatalError}{\param{const wxString\& }{msg}, \param{const wxString\& }{title = "wxWindows Fatal Error"}}
867 Displays {\it msg} and exits. This writes to standard error under Unix,
868 and pops up a message box under Windows. Used for fatal internal
869 wxWindows errors. See also \helpref{wxError}{wxerror}.
871 \membersection{::wxFindMenuItemId}
873 \func{int}{wxFindMenuItemId}{\param{wxFrame *}{frame}, \param{const wxString\& }{menuString}, \param{const wxString\& }{itemString}}
875 Find a menu item identifier associated with the given frame's menu bar.
877 \membersection{::wxFindWindowByLabel}
879 \func{wxWindow *}{wxFindWindowByLabel}{\param{const wxString\& }{label}, \param{wxWindow *}{parent=NULL}}
881 Find a window by its label. Depending on the type of window, the label may be a window title
882 or panel item label. If {\it parent} is NULL, the search will start from all top-level
883 frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
884 The search is recursive in both cases.
886 \membersection{::wxFindWindowByName}\label{wxfindwindowbyname}
888 \func{wxWindow *}{wxFindWindowByName}{\param{const wxString\& }{name}, \param{wxWindow *}{parent=NULL}}
890 Find a window by its name (as given in a window constructor or {\bf Create} function call).
891 If {\it parent} is NULL, the search will start from all top-level
892 frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
893 The search is recursive in both cases.
895 If no such named window is found, {\bf wxFindWindowByLabel} is called.
897 \membersection{::wxGetActiveWindow}\label{wxgetactivewindow}
899 \func{wxWindow *}{wxGetActiveWindow}{\void}
901 Gets the currently active window (Windows only).
903 \membersection{::wxGetDisplayName}\label{wxgetdisplayname}
905 \func{wxString}{wxGetDisplayName}{\void}
907 Under X only, returns the current display name. See also \helpref{wxSetDisplayName}{wxsetdisplayname}.
909 \membersection{::wxGetHomeDir}
911 \func{wxString}{wxGetHomeDir}{\param{const wxString\& }{buf}}
913 Fills the buffer with a string representing the user's home directory (Unix only).
915 \membersection{::wxGetHostName}
917 \func{bool}{wxGetHostName}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
919 Copies the host name of the machine the program is running on into the
920 buffer {\it buf}, of maximum size {\it bufSize}, returning TRUE if
921 successful. Under Unix, this will return a machine name. Under Windows,
922 this returns ``windows''.
924 \membersection{::wxGetElapsedTime}\label{wxgetelapsedtime}
926 \func{long}{wxGetElapsedTime}{\param{bool}{ resetTimer = TRUE}}
928 Gets the time in milliseconds since the last \helpref{::wxStartTimer}{wxstarttimer}.
930 If {\it resetTimer} is TRUE (the default), the timer is reset to zero
933 See also \helpref{wxTimer}{wxtimer}.
935 \membersection{::wxGetFreeMemory}\label{wxgetfreememory}
937 \func{long}{wxGetFreeMemory}{\void}
939 Returns the amount of free memory in Kbytes under environments which
940 support it, and -1 if not supported. Currently, returns a positive value
941 under Windows, and -1 under Unix.
943 \membersection{::wxGetMousePosition}
945 \func{void}{wxGetMousePosition}{\param{int* }{x}, \param{int* }{y}}
947 Returns the mouse position in screen coordinates.
949 \membersection{::wxGetOsVersion}
951 \func{int}{wxGetOsVersion}{\param{int *}{major = NULL}, \param{int *}{minor = NULL}}
953 Gets operating system version information.
955 \begin{twocollist}\itemsep=0pt
956 \twocolitemruled{Platform}{Return tyes}
957 \twocolitem{Macintosh}{Return value is wxMACINTOSH.}
958 \twocolitem{GTK}{Return value is wxGTK, {\it major} is 1, {\it minor} is 0. (for GTK 1.0.X) }
959 \twocolitem{Motif}{Return value is wxMOTIF\_X, {\it major} is X version, {\it minor} is X revision.}
960 \twocolitem{OS/2}{Return value is wxOS2\_PM.}
961 \twocolitem{Windows 3.1}{Return value is wxWINDOWS, {\it major} is 3, {\it minor} is 1.}
962 \twocolitem{Windows NT}{Return value is wxWINDOWS\_NT, {\it major} is 3, {\it minor} is 1.}
963 \twocolitem{Windows 95}{Return value is wxWIN95, {\it major} is 3, {\it minor} is 1.}
964 \twocolitem{Win32s (Windows 3.1)}{Return value is wxWIN32S, {\it major} is 3, {\it minor} is 1.}
965 \twocolitem{Watcom C++ 386 supervisor mode (Windows 3.1)}{Return value is wxWIN386, {\it major} is 3, {\it minor} is 1.}
968 \membersection{::wxGetResource}\label{wxgetresource}
970 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
971 \param{const wxString\& *}{value}, \param{const wxString\& }{file = NULL}}
973 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
974 \param{float *}{value}, \param{const wxString\& }{file = NULL}}
976 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
977 \param{long *}{value}, \param{const wxString\& }{file = NULL}}
979 \func{bool}{wxGetResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
980 \param{int *}{value}, \param{const wxString\& }{file = NULL}}
982 Gets a resource value from the resource database (for example, WIN.INI, or
983 .Xdefaults). If {\it file} is NULL, WIN.INI or .Xdefaults is used,
984 otherwise the specified file is used.
986 Under X, if an application class (wxApp::GetClassName) has been defined,
987 it is appended to the string /usr/lib/X11/app-defaults/ to try to find
988 an applications default file when merging all resource databases.
990 The reason for passing the result in an argument is that it
991 can be convenient to define a default value, which gets overridden
992 if the value exists in the resource file. It saves a separate
993 test for that resource's existence, and it also allows
994 the overloading of the function for different types.
996 See also \helpref{wxWriteResource}{wxwriteresource}, \helpref{wxConfigBase}{wxconfigbase}.
998 \membersection{::wxGetUserId}
1000 \func{bool}{wxGetUserId}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1002 Copies the user's login identity (such as ``jacs'') into the buffer {\it
1003 buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1004 Under Windows, this returns ``user''.
1006 \membersection{::wxGetUserName}
1008 \func{bool}{wxGetUserName}{\param{const wxString\& }{buf}, \param{int}{ bufSize}}
1010 Copies the user's name (such as ``Julian Smart'') into the buffer {\it
1011 buf}, of maximum size {\it bufSize}, returning TRUE if successful.
1012 Under Windows, this returns ``unknown''.
1014 \membersection{::wxKill}\label{wxkill}
1016 \func{int}{wxKill}{\param{long}{ pid}, \param{int}{ sig}}
1018 Under Unix (the only supported platform), equivalent to the Unix kill function.
1019 Returns 0 on success, -1 on failure.
1021 Tip: sending a signal of 0 to a process returns -1 if the process does not exist.
1022 It does not raise a signal in the receiving process.
1024 \membersection{::wxInitClipboard}\label{wxinitclipboard}
1026 \func{void}{wxInitClipboard}{\void}
1028 Initializes the generic clipboard system by creating an instance of
1029 the class \helpref{wxClipboard}{wxclipboard}.
1031 \membersection{::wxIsBusy}\label{wxisbusy}
1033 \func{bool}{wxIsBusy}{\void}
1035 Returns TRUE if between two \helpref{wxBeginBusyCursor}{wxbeginbusycursor} and\rtfsp
1036 \helpref{wxEndBusyCursor}{wxendbusycursor} calls.
1038 See also \helpref{wxBusyCursor}{wxbusycursor}.
1040 \membersection{::wxLoadUserResource}\label{wxloaduserresource}
1042 \func{wxString}{wxLoadUserResource}{\param{const wxString\& }{resourceName}, \param{const wxString\& }{resourceType=``TEXT"}}
1044 Loads a user-defined Windows resource as a string. If the resource is found, the function creates
1045 a new character array and copies the data into it. A pointer to this data is returned. If unsuccessful, NULL is returned.
1047 The resource must be defined in the {\tt .rc} file using the following syntax:
1050 myResource TEXT file.ext
1053 where {\tt file.ext} is a file that the resource compiler can find.
1055 One use of this is to store {\tt .wxr} files instead of including the data in the C++ file; some compilers
1056 cannot cope with the long strings in a {\tt .wxr} file. The resource data can then be parsed
1057 using \helpref{wxResourceParseString}{wxresourceparsestring}.
1059 This function is available under Windows only.
1061 \membersection{::wxNow}\label{wxnow}
1063 \func{wxString}{wxNow}{\void}
1065 Returns a string representing the current date and time.
1067 \membersection{::wxPostDelete}\label{wxpostdelete}
1069 \func{void}{wxPostDelete}{\param{wxObject *}{object}}
1071 Under X, tells the system to delete the specified object when
1072 all other events have been processed. In some environments, it is
1073 necessary to use this instead of deleting a frame directly with the
1074 delete operator, because X will still send events to the window.
1076 Now obsolete: use \helpref{wxWindow::Close}{wxwindowclose} instead.
1078 \membersection{::wxSetDisplayName}\label{wxsetdisplayname}
1080 \func{void}{wxSetDisplayName}{\param{const wxString\& }{displayName}}
1082 Under X only, sets the current display name. This is the X host and display name such
1083 as ``colonsay:0.0", and the function indicates which display should be used for creating
1084 windows from this point on. Setting the display within an application allows multiple
1085 displays to be used.
1087 See also \helpref{wxGetDisplayName}{wxgetdisplayname}.
1089 \membersection{::wxShell}\label{wxshell}
1091 \func{bool}{wxShell}{\param{const wxString\& }{command = NULL}}
1093 Executes a command in an interactive shell window. If no command is
1094 specified, then just the shell is spawned.
1096 See also \helpref{wxExecute}{wxexecute}.
1098 \membersection{::wxSleep}\label{wxsleep}
1100 \func{void}{wxSleep}{\param{int}{ secs}}
1102 Sleeps for the specified number of seconds.
1104 \membersection{::wxStripMenuCodes}
1106 \func{wxString}{wxStripMenuCodes}{\param{const wxString\& }{in}}
1108 \func{void}{wxStripMenuCodes}{\param{char* }{in}, \param{char* }{out}}
1110 Strips any menu codes from {\it in} and places the result
1111 in {\it out} (or returns the new string, in the first form).
1113 Menu codes include \& (mark the next character with an underline
1114 as a keyboard shortkey in Windows and Motif) and $\backslash$t (tab in Windows).
1116 \membersection{::wxStartTimer}\label{wxstarttimer}
1118 \func{void}{wxStartTimer}{\void}
1120 Starts a stopwatch; use \helpref{::wxGetElapsedTime}{wxgetelapsedtime} to get the elapsed time.
1122 See also \helpref{wxTimer}{wxtimer}.
1124 \membersection{::wxToLower}\label{wxtolower}
1126 \func{char}{wxToLower}{\param{char }{ch}}
1128 Converts the character to lower case. This is implemented as a macro for efficiency.
1130 \membersection{::wxToUpper}\label{wxtoupper}
1132 \func{char}{wxToUpper}{\param{char }{ch}}
1134 Converts the character to upper case. This is implemented as a macro for efficiency.
1136 \membersection{::wxTrace}\label{wxtrace}
1138 \func{void}{wxTrace}{\param{const wxString\& }{fmt}, \param{...}{}}
1140 Takes printf-style variable argument syntax. Output
1141 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1143 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1145 \membersection{::wxTraceLevel}\label{wxtracelevel}
1147 \func{void}{wxTraceLevel}{\param{int}{ level}, \param{const wxString\& }{fmt}, \param{...}{}}
1149 Takes printf-style variable argument syntax. Output
1150 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1151 The first argument should be the level at which this information is appropriate.
1152 It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
1155 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1157 \membersection{::wxWriteResource}\label{wxwriteresource}
1159 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1160 \param{const wxString\& }{value}, \param{const wxString\& }{file = NULL}}
1162 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1163 \param{float }{value}, \param{const wxString\& }{file = NULL}}
1165 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1166 \param{long }{value}, \param{const wxString\& }{file = NULL}}
1168 \func{bool}{wxWriteResource}{\param{const wxString\& }{section}, \param{const wxString\& }{entry},
1169 \param{int }{value}, \param{const wxString\& }{file = NULL}}
1171 Writes a resource value into the resource database (for example, WIN.INI, or
1172 .Xdefaults). If {\it file} is NULL, WIN.INI or .Xdefaults is used,
1173 otherwise the specified file is used.
1175 Under X, the resource databases are cached until the internal function
1176 \rtfsp{\bf wxFlushResources} is called automatically on exit, when
1177 all updated resource databases are written to their files.
1179 Note that it is considered bad manners to write to the .Xdefaults
1180 file under Unix, although the WIN.INI file is fair game under Windows.
1182 See also \helpref{wxGetResource}{wxgetresource}, \helpref{wxConfigBase}{wxconfigbase}.
1184 \membersection{::wxYield}
1186 \func{bool}{wxYield}{\void}
1188 Yields control to pending messages in the windowing system. This can be useful, for example, when a
1189 time-consuming process writes to a text window. Without an occasional
1190 yield, the text window will not be updated properly, and (since Windows
1191 multitasking is cooperative) other processes will not respond.
1193 Caution should be exercised, however, since yielding may allow the
1194 user to perform actions which are not compatible with the current task.
1195 Disabling menu items or whole menus during processing can avoid unwanted
1198 \section{Macros}\label{macros}
1200 These macros are defined in wxWindows.
1202 \membersection{CLASSINFO}\label{classinfo}
1204 \func{wxClassInfo *}{CLASSINFO}{className}
1206 Returns a pointer to the wxClassInfo object associated with this class.
1208 \membersection{WXDEBUG\_NEW}\label{debugnew}
1210 \func{}{WXDEBUG\_NEW}{arg}
1212 This is defined in debug mode to be call the redefined new operator
1213 with filename and line number arguments. The definition is:
1216 #define WXDEBUG_NEW new(__FILE__,__LINE__)
1219 In non-debug mode, this is defined as the normal new operator.
1221 \membersection{DECLARE\_ABSTRACT\_CLASS}
1223 \func{}{DECLARE\_ABSTRACT\_CLASS}{className}
1225 Used inside a class declaration to declare that the class should be
1226 made known to the class hierarchy, but objects of this class cannot be created
1227 dynamically. The same as DECLARE\_CLASS.
1232 class wxCommand: public wxObject
1234 DECLARE_ABSTRACT_CLASS(wxCommand)
1243 \membersection{DECLARE\_APP}\label{declareapp}
1245 \func{}{DECLARE\_APP}{className}
1247 This is used in headers to create a forward declaration of the wxGetApp function implemented
1248 by IMPLEMENT\_APP. It creates the declaration {\tt className\& wxGetApp(void)}.
1256 \membersection{DECLARE\_CLASS}
1258 \func{}{DECLARE\_CLASS}{className}
1260 Used inside a class declaration to declare that the class should be
1261 made known to the class hierarchy, but objects of this class cannot be created
1262 dynamically. The same as DECLARE\_ABSTRACT\_CLASS.
1264 \membersection{DECLARE\_DYNAMIC\_CLASS}
1266 \func{}{DECLARE\_DYNAMIC\_CLASS}{className}
1268 Used inside a class declaration to declare that the objects of this class should be dynamically
1269 createable from run-time type information.
1274 class wxFrame: public wxWindow
1276 DECLARE_DYNAMIC_CLASS(wxFrame)
1279 const wxString\& frameTitle;
1285 \membersection{IMPLEMENT\_ABSTRACT\_CLASS}
1287 \func{}{IMPLEMENT\_ABSTRACT\_CLASS}{className, baseClassName}
1289 Used in a C++ implementation file to complete the declaration of
1290 a class that has run-time type information. The same as IMPLEMENT\_CLASS.
1295 IMPLEMENT_ABSTRACT_CLASS(wxCommand, wxObject)
1297 wxCommand::wxCommand(void)
1303 \membersection{IMPLEMENT\_ABSTRACT\_CLASS2}
1305 \func{}{IMPLEMENT\_ABSTRACT\_CLASS2}{className, baseClassName1, baseClassName2}
1307 Used in a C++ implementation file to complete the declaration of
1308 a class that has run-time type information and two base classes. The same as IMPLEMENT\_CLASS2.
1310 \membersection{IMPLEMENT\_APP}\label{implementapp}
1312 \func{}{IMPLEMENT\_APP}{className}
1314 This is used in the application class implementation file to make the application class known to
1315 wxWindows for dynamic construction. You use this instead of
1326 IMPLEMENT_APP(MyApp)
1329 See also \helpref{DECLARE\_APP}{declareapp}.
1331 \membersection{IMPLEMENT\_CLASS}
1333 \func{}{IMPLEMENT\_CLASS}{className, baseClassName}
1335 Used in a C++ implementation file to complete the declaration of
1336 a class that has run-time type information. The same as IMPLEMENT\_ABSTRACT\_CLASS.
1338 \membersection{IMPLEMENT\_CLASS2}
1340 \func{}{IMPLEMENT\_CLASS2}{className, baseClassName1, baseClassName2}
1342 Used in a C++ implementation file to complete the declaration of a
1343 class that has run-time type information and two base classes. The
1344 same as IMPLEMENT\_ABSTRACT\_CLASS2.
1346 \membersection{IMPLEMENT\_DYNAMIC\_CLASS}
1348 \func{}{IMPLEMENT\_DYNAMIC\_CLASS}{className, baseClassName}
1350 Used in a C++ implementation file to complete the declaration of
1351 a class that has run-time type information, and whose instances
1352 can be created dynamically.
1357 IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
1359 wxFrame::wxFrame(void)
1365 \membersection{IMPLEMENT\_DYNAMIC\_CLASS2}
1367 \func{}{IMPLEMENT\_DYNAMIC\_CLASS2}{className, baseClassName1, baseClassName2}
1369 Used in a C++ implementation file to complete the declaration of
1370 a class that has run-time type information, and whose instances
1371 can be created dynamically. Use this for classes derived from two
1374 \membersection{WXTRACE}\label{trace}
1376 \func{}{WXTRACE}{formatString, ...}
1378 Calls wxTrace with printf-style variable argument syntax. Output
1379 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1381 This macro is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1383 \membersection{WXTRACELEVEL}\label{tracelevel}
1385 \func{}{WXTRACELEVEL}{level, formatString, ...}
1387 Calls wxTraceLevel with printf-style variable argument syntax. Output
1388 is directed to the current output stream (see \helpref{wxDebugContext}{wxdebugcontextoverview}).
1389 The first argument should be the level at which this information is appropriate.
1390 It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than
1393 This function is now obsolete, replaced by \helpref{Log functions}{logfunctions}.
1395 \section{wxWindows resource functions}\label{resourcefuncs}
1397 \overview{wxWindows resource system}{resourceformats}
1399 This section details functions for manipulating wxWindows (.WXR) resource
1400 files and loading user interface elements from resources.
1402 \normalbox{Please note that this use of the word `resource' is different from that used when talking
1403 about initialisation file resource reading and writing, using such functions
1404 as wxWriteResource and wxGetResource. It's just an unfortunate clash of terminology.}
1406 \helponly{For an overview of the wxWindows resource mechanism, see \helpref{the wxWindows resource system}{resourceformats}.}
1408 See also \helpref{wxWindow::LoadFromResource}{wxwindowloadfromresource} for
1409 loading from resource data.
1411 \membersection{::wxResourceAddIdentifier}\label{wxresourceaddidentifier}
1413 \func{bool}{wxResourceAddIdentifier}{\param{const wxString\& }{name}, \param{int }{value}}
1415 Used for associating a name with an integer identifier (equivalent to dynamically\rtfsp
1416 \verb$#$defining a name to an integer). Unlikely to be used by an application except
1417 perhaps for implementing resource functionality for interpreted languages.
1419 \membersection{::wxResourceClear}
1421 \func{void}{wxResourceClear}{\void}
1423 Clears the wxWindows resource table.
1425 \membersection{::wxResourceCreateBitmap}
1427 \func{wxBitmap *}{wxResourceCreateBitmap}{\param{const wxString\& }{resource}}
1429 Creates a new bitmap from a file, static data, or Windows resource, given a valid
1430 wxWindows bitmap resource identifier. For example, if the .WXR file contains
1434 static const wxString\& aiai_resource = "bitmap(name = 'aiai_resource',\
1435 bitmap = ['aiai', wxBITMAP_TYPE_BMP_RESOURCE, 'WINDOWS'],\
1436 bitmap = ['aiai.xpm', wxBITMAP_TYPE_XPM, 'X']).";
1439 then this function can be called as follows:
1442 wxBitmap *bitmap = wxResourceCreateBitmap("aiai_resource");
1445 \membersection{::wxResourceCreateIcon}
1447 \func{wxIcon *}{wxResourceCreateIcon}{\param{const wxString\& }{resource}}
1449 Creates a new icon from a file, static data, or Windows resource, given a valid
1450 wxWindows icon resource identifier. For example, if the .WXR file contains
1454 static const wxString\& aiai_resource = "icon(name = 'aiai_resource',\
1455 icon = ['aiai', wxBITMAP_TYPE_ICO_RESOURCE, 'WINDOWS'],\
1456 icon = ['aiai', wxBITMAP_TYPE_XBM_DATA, 'X']).";
1459 then this function can be called as follows:
1462 wxIcon *icon = wxResourceCreateIcon("aiai_resource");
1465 \membersection{::wxResourceCreateMenuBar}
1467 \func{wxMenuBar *}{wxResourceCreateMenuBar}{\param{const wxString\& }{resource}}
1469 Creates a new menu bar given a valid wxWindows menubar resource
1470 identifier. For example, if the .WXR file contains the following:
1473 static const wxString\& menuBar11 = "menu(name = 'menuBar11',\
1477 ['&Open File', 2, 'Open a file'],\
1478 ['&Save File', 3, 'Save a file'],\
1480 ['E&xit', 4, 'Exit program']\
1483 ['&About', 6, 'About this program']\
1488 then this function can be called as follows:
1491 wxMenuBar *menuBar = wxResourceCreateMenuBar("menuBar11");
1495 \membersection{::wxResourceGetIdentifier}
1497 \func{int}{wxResourceGetIdentifier}{\param{const wxString\& }{name}}
1499 Used for retrieving the integer value associated with an identifier.
1500 A zero value indicates that the identifier was not found.
1502 See \helpref{wxResourceAddIdentifier}{wxresourceaddidentifier}.
1504 \membersection{::wxResourceParseData}\label{wxresourcedata}
1506 \func{bool}{wxResourceParseData}{\param{const wxString\& }{resource}, \param{wxResourceTable *}{table = NULL}}
1508 Parses a string containing one or more wxWindows resource objects. If
1509 the resource objects are global static data that are included into the
1510 C++ program, then this function must be called for each variable
1511 containing the resource data, to make it known to wxWindows.
1513 {\it resource} should contain data in the following form:
1516 dialog(name = 'dialog1',
1517 style = 'wxCAPTION | wxDEFAULT_DIALOG_STYLE',
1518 title = 'Test dialog box',
1519 x = 312, y = 234, width = 400, height = 300,
1521 control = [wxGroupBox, 'Groupbox', '0', 'group6', 5, 4, 380, 262,
1522 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]],
1523 control = [wxMultiText, 'Multitext', 'wxVERTICAL_LABEL', 'multitext3',
1524 156, 126, 200, 70, 'wxWindows is a multi-platform, GUI toolkit.',
1525 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0],
1526 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]]).
1529 This function will typically be used after including a {\tt .wxr} file into
1530 a C++ program as follows:
1533 #include "dialog1.wxr"
1536 Each of the contained resources will declare a new C++ variable, and each
1537 of these variables should be passed to wxResourceParseData.
1539 \membersection{::wxResourceParseFile}
1541 \func{bool}{wxResourceParseFile}{\param{const wxString\& }{filename}, \param{wxResourceTable *}{table = NULL}}
1543 Parses a file containing one or more wxWindows resource objects
1544 in C++-compatible syntax. Use this function to dynamically load
1545 wxWindows resource data.
1547 \membersection{::wxResourceParseString}\label{wxresourceparsestring}
1549 \func{bool}{wxResourceParseString}{\param{const wxString\& }{resource}, \param{wxResourceTable *}{table = NULL}}
1551 Parses a string containing one or more wxWindows resource objects. If
1552 the resource objects are global static data that are included into the
1553 C++ program, then this function must be called for each variable
1554 containing the resource data, to make it known to wxWindows.
1556 {\it resource} should contain data with the following form:
1559 static const wxString\& dialog1 = "dialog(name = 'dialog1',\
1560 style = 'wxCAPTION | wxDEFAULT_DIALOG_STYLE',\
1561 title = 'Test dialog box',\
1562 x = 312, y = 234, width = 400, height = 300,\
1564 control = [wxGroupBox, 'Groupbox', '0', 'group6', 5, 4, 380, 262,\
1565 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]],\
1566 control = [wxMultiText, 'Multitext', 'wxVERTICAL_LABEL', 'multitext3',\
1567 156, 126, 200, 70, 'wxWindows is a multi-platform, GUI toolkit.',\
1568 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0],\
1569 [11, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0]]).";
1572 This function will typically be used after calling \helpref{wxLoadUserResource}{wxloaduserresource} to
1573 load an entire {\tt .wxr file} into a string.
1575 \membersection{::wxResourceRegisterBitmapData}\label{registerbitmapdata}
1577 \func{bool}{wxResourceRegisterBitmapData}{\param{const wxString\& }{name}, \param{const wxString\& }{xbm\_data}, \param{int }{width},
1578 \param{int }{height}, \param{wxResourceTable *}{table = NULL}}
1580 \func{bool}{wxResourceRegisterBitmapData}{\param{const wxString\& }{name}, \param{const wxString\& *}{xpm\_data}}
1582 Makes \verb$#$included XBM or XPM bitmap data known to the wxWindows resource system.
1583 This is required if other resources will use the bitmap data, since otherwise there
1584 is no connection between names used in resources, and the global bitmap data.
1586 \membersection{::wxResourceRegisterIconData}
1588 Another name for \helpref{wxResourceRegisterBitmapData}{registerbitmapdata}.
1590 \section{Log functions}\label{logfunctions}
1592 These functions provide a variety of logging functions: see \helpref{Log classes overview}{wxlogoverview} for
1593 further information.
1595 \membersection{::wxLogError}\label{wxlogerror}
1597 \func{void}{wxLogError}{\param{const char*}{ formatString}, \param{...}{}}
1599 The function to use for error messages, i.e. the
1600 messages that must be shown to the user. The default processing is to pop up a
1601 message box to inform the user about it.
1603 \membersection{::wxLogFatalError}\label{wxlogfatalerror}
1605 \func{void}{wxLogFatalError}{\param{const char*}{ formatString}, \param{...}{}}
1607 Like \helpref{wxLogError}{wxlogerror}, but also
1608 terminates the program with the exit code 3. Using {\it abort()} standard
1609 function also terminates the program with this exit code.
1611 \membersection{::wxLogWarning}\label{wxlogwarning}
1613 \func{void}{wxLogWarning}{\param{const char*}{ formatString}, \param{...}{}}
1615 For warnings - they are also normally shown to the
1616 user, but don't interrupt the program work.
1618 \membersection{::wxLogMessage}\label{wxlogmessage}
1620 \func{void}{wxLogMessage}{\param{const char*}{ formatString}, \param{...}{}}
1622 for all normal, informational messages. They also
1623 appear in a message box by default (but it can be changed). Notice
1624 that the standard behaviour is to not show informational messages if there are
1625 any errors later - the logic being that the later error messages make the
1626 informational messages preceding them meaningless.
1628 \membersection{::wxLogVerbose}\label{wxlogverbose}
1630 \func{void}{wxLogVerbose}{\param{const char*}{ formatString}, \param{...}{}}
1632 For verbose output. Normally, it's suppressed, but
1633 might be activated if the user wishes to know more details about the program
1634 progress (another, but possibly confusing name for the same function is {\bf wxLogInfo}).
1636 \membersection{::wxLogStatus}\label{wxlogstatus}
1638 \func{void}{wxLogStatus}{\param{const char*}{ formatString}, \param{...}{}}
1640 For status messages - they will go into the status
1641 bar of the active or specified (as the first argument) \helpref{wxFrame}{wxframe} if it has one.
1643 \membersection{::wxLogSysError}\label{wxlogsyserror}
1645 \func{void}{wxLogSysError}{\param{const char*}{ formatString}, \param{...}{}}
1647 Mostly used by wxWindows itself, but might be
1648 handy for logging errors after system call (API function) failure. It logs the
1649 specified message text as well as the last system error code ({\it errno} or {\it ::GetLastError()} depending
1650 on the platform) and the corresponding error
1651 message. The second form of this function takes the error code explitly as the
1654 \membersection{::wxLogDebug}\label{wxlogdebug}
1656 \func{void}{wxLogDebug}{\param{const char*}{ formatString}, \param{...}{}}
1658 The right function for debug output. It only
1659 does anything at all in the debug mode (when the preprocessor symbol \_\_WXDEBUG\_\_ is defined)
1660 and expands to nothing in release mode (otherwise).
1662 \membersection{::wxLogTrace}\label{wxlogtrace}
1664 \func{void}{wxLogTrace}{\param{const char*}{ formatString}, \param{...}{}}
1666 \func{void}{wxLogTrace}{\param{wxTraceMask}{ mask}, \param{const char*}{ formatString}, \param{...}{}}
1668 As {\bf wxLogDebug}, only does something in debug
1669 build. The reason for making it a separate function from it is that usually
1670 there are a lot of trace messages, so it might make sense to separate them
1671 from other debug messages which would be flooded in them. Moreover, the second
1672 version of this function takes a trace mask as the first argument which allows
1673 to further restrict the amount of messages generated. The value of {\it mask} can be:
1675 \begin{itemize}\itemsep=0pt
1676 \item wxTraceMemAlloc: trace memory allocation (new/delete)
1677 \item wxTraceMessages: trace window messages/X callbacks
1678 \item wxTraceResAlloc: trace GDI resource allocation
1679 \item wxTraceRefCount: trace various ref counting operations
1682 \section{Debugging macros and functions}\label{debugmacros}
1684 Useful macros and functins for error checking and defensive programming. ASSERTs are only
1685 compiled if \_\_WXDEBUG\_\_ is defined, whereas CHECK macros stay in release
1688 \membersection{::wxOnAssert}\label{wxonassert}
1690 \func{void}{wxOnAssert}{\param{const char*}{ fileName}, \param{int}{ lineNumber}, \param{const char*}{ msg = NULL}}
1692 This function may be redefined to do something non trivial and is called
1693 whenever one of debugging macros fails (i.e. condition is false in an
1694 assertion). TODO: this should probably be an overridable in wxApp.
1696 \membersection{wxASSERT}\label{wxassert}
1698 \func{}{wxASSERT}{\param{}{condition}}
1700 Assert macro. An error message will be generated if the condition is FALSE.
1702 \membersection{wxASSERT\_MSG}\label{wxassertmsg}
1704 \func{}{wxASSERT\_MSG}{\param{}{condition}, \param{}{msg}}
1706 Assert macro with message. An error message will be generated if the condition is FALSE.
1708 \membersection{wxFAIL}\label{wxfail}
1710 \func{}{wxFAIL}{\param{}{condition}}
1712 Will always generate an assert error if this code is reached (in debug mode).
1714 \membersection{wxFAIL\_MSG}\label{wxfailmsg}
1716 \func{}{wxFAIL\_MSG}{\param{}{condition}, \param{}{msg}}
1718 Will always generate an assert error with specified message if this code is reached (in debug mode).
1720 \membersection{wxCHECK}\label{wxcheck}
1722 \func{}{wxCHECK}{\param{}{condition}, \param{}{retValue}}
1724 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
1725 This check is done even in release mode.
1727 \membersection{wxCHECK\_MSG}\label{wxcheckmsg}
1729 \func{}{wxCHECK\_MSG}{\param{}{condition}, \param{}{retValue}, \param{}{msg}}
1731 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
1732 This check is done even in release mode.