X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a660d684eda27638bca0384b2058911a31c8e845..52ee226853ec422d1517de38a0fa76d866c37153:/docs/latex/wx/fontdlg.tex diff --git a/docs/latex/wx/fontdlg.tex b/docs/latex/wx/fontdlg.tex index d88e5c6ee9..749e327b06 100644 --- a/docs/latex/wx/fontdlg.tex +++ b/docs/latex/wx/fontdlg.tex @@ -8,6 +8,10 @@ This class holds a variety of information related to font dialogs. \helpref{wxObject}{wxobject} +\wxheading{Include files} + + + \wxheading{See also} \helpref{Overview}{wxfontdialogoverview}, \helpref{wxFontDialog}{wxfontdialog} @@ -136,7 +140,7 @@ The default value is FALSE. \func{void}{operator $=$}{\param{const wxFontData\&}{ data}} -Assingment operator for the font data. +Assignment operator for the font data. \section{\class{wxFontDialog}}\label{wxfontdialog} @@ -149,18 +153,43 @@ This class represents the font chooser dialog. \helpref{wxEvtHandler}{wxevthandler}\\ \helpref{wxObject}{wxobject} +\wxheading{Include files} + + + \wxheading{See also} -\helpref{Overview}{wxfontdialogoverview}, \helpref{wxFontData}{wxfontdata} +\helpref{Overview}{wxfontdialogoverview},\\ +\helpref{wxFontData}{wxfontdata},\\ +\helpref{wxGetFontFromUser}{wxgetfontfromuser} \latexignore{\rtfignore{\wxheading{Members}}} \membersection{wxFontDialog::wxFontDialog} -\func{}{wxFontDialog}{\param{wxWindow* }{parent}, \param{wxFontData* }{data = NULL}} +\func{}{wxFontDialog}{\void} + +\func{}{wxFontDialog}{\param{wxWindow* }{parent}} + +\func{}{wxFontDialog}{\param{wxWindow* }{parent}, \param{const wxFontData\& }{data}} -Constructor. Pass a parent window, and optionally a pointer to a block of font -data, which will be copied to the font dialog's font data. +Constructor. Pass a parent window, and optionally the +\helpref{font data}{wxfontdata} object to be used to initialize the dialog +controls. If the default constructor is used, +\helpref{Create()}{wxfontdialogcreate} must be called before the dialog can be +shown. + +\membersection{wxFontDialog::Create}\label{wxfontdialogcreate} + +\func{bool}{Create}{\void} + +\func{bool}{Create}{\param{wxWindow* }{parent}} + +\func{bool}{Create}{\param{wxWindow* }{parent}, \param{const wxFontData\& }{data}} + +Creates the dialog if it the wxFontDialog object had been initialized using the +default constructor. Returns {\tt TRUE} on success and {\tt FALSE} if an error +occured. \membersection{wxFontDialog::\destruct{wxFontDialog}} @@ -170,6 +199,8 @@ Destructor. \membersection{wxFontDialog::GetFontData} +\constfunc{const wxFontData\&}{GetFontData}{\void} + \func{wxFontData\&}{GetFontData}{\void} Returns the \helpref{font data}{wxfontdata} associated with the font dialog. @@ -178,10 +209,10 @@ Returns the \helpref{font data}{wxfontdata} associated with the font dialog. \func{int}{ShowModal}{\void} -Shows the dialog, returning wxID\_OK if the user pressed Ok, and wxID\_CANCEL -otherwise. +Shows the dialog, returning {\tt wxID\_OK} if the user pressed Ok, and +{\tt wxID\_CANCEL} otherwise. -If the user cancels the dialog (ShowModal returns wxID\_CANCEL), no font will be -created. If the user presses OK (ShowModal returns wxID\_OK), a new wxFont will -be created and stored in the font dialog's wxFontData structure. +If the user cancels the dialog (ShowModal returns {\tt wxID\_CANCEL}), no font +will be created. If the user presses OK, a new wxFont will be created and +stored in the font dialog's wxFontData structure.