]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/fontdlg.h
Replaced @returns with @return for more standard command use and compatibility.
[wxWidgets.git] / interface / fontdlg.h
index fc253cca557709e62c0e43d61023b3db87775b5f..4a5ea24021eecf3065ae67b417724ab51cd6a0ef 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        fontdlg.h
-// Purpose:     documentation for wxFontDialog class
+// Purpose:     interface of wxFontDialog
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -15,8 +15,7 @@
     @library{wxcore}
     @category{cmndlg}
 
-    @seealso
-    Overview, wxFontData, wxGetFontFromUser
+    @see Overview(), wxFontData, wxGetFontFromUser()
 */
 class wxFontDialog : public wxDialog
 {
@@ -50,7 +49,7 @@ public:
         dialog.
     */
     const wxFontData GetFontData();
-    wxFontData GetFontData();
+    const wxFontData&  GetFontData();
     //@}
 
     /**
@@ -64,23 +63,31 @@ public:
 };
 
 
+
 // ============================================================================
 // Global functions/macros
 // ============================================================================
 
+/** @ingroup group_funcmacro_dialog */
+//@{
+
 /**
     Shows the font selection dialog and returns the font selected by user or
-    invalid font (use @ref wxFont::isok wxFont:IsOk to test whether a font
-    is valid) if the dialog was cancelled.
+    invalid font (use wxFont::IsOk() to test whether a font is valid) if the
+    dialog was cancelled.
 
     @param parent
-        The parent window for the font selection dialog
+        The parent window for the font selection dialog.
     @param fontInit
         If given, this will be the font initially selected in the dialog.
     @param caption
         If given, this will be used for the dialog caption.
+
+    @header{wx/fontdlg.h}
 */
 wxFont wxGetFontFromUser(wxWindow* parent,
                          const wxFont& fontInit,
                          const wxString& caption = wxEmptyString);
 
+//@}
+