X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4cc4bfafe5a31cb96f35b3ec9b19fa2b0b3a4eef..74bf4e6430a42c20491d13e1bb9805e1ee614a95:/interface/richtext/richtextstyledlg.h diff --git a/interface/richtext/richtextstyledlg.h b/interface/richtext/richtextstyledlg.h index ed395c6024..38ad39121d 100644 --- a/interface/richtext/richtextstyledlg.h +++ b/interface/richtext/richtextstyledlg.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: richtext/richtextstyledlg.h -// Purpose: documentation for wxRichTextStyleOrganiserDialog class +// Purpose: interface of wxRichTextStyleOrganiserDialog // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -17,7 +17,7 @@ present styles. @library{wxrichtext} - @category{FIXME} + @category{richtext} */ class wxRichTextStyleOrganiserDialog : public wxDialog { @@ -109,39 +109,39 @@ public: bool ApplyStyle(wxRichTextCtrl* ctrl = NULL); /** - , @b const wxPoint&@e pos = wxDefaultPosition, @b const wxSize&@e size = - wxDefaultSize, @b long@e style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX) + , wxPoint&@e pos = wxDefaultPosition, wxSize&@e size = wxDefaultSize, @b + long@e style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX) Creates the dialog. See */ bool Create(int flags, wxRichTextStyleSheet* sheet, wxRichTextCtrl* ctrl, wxWindow* parent, - wxWindowID id = wxID_ANY); + wxWindowID id = wxID_ANY) const; /** Returns @true if the user has opted to restart numbering. */ - bool GetRestartNumbering(); + bool GetRestartNumbering() const; /** Returns the associated rich text control (if any). */ - wxRichTextCtrl* GetRichTextCtrl(); + wxRichTextCtrl* GetRichTextCtrl() const; /** Returns selected style name. */ - wxString GetSelectedStyle(); + wxString GetSelectedStyle() const; /** Returns selected style definition. */ - wxRichTextStyleDefinition* GetSelectedStyleDefinition(); + wxRichTextStyleDefinition* GetSelectedStyleDefinition() const; /** Returns the associated style sheet. */ - wxRichTextStyleSheet* GetStyleSheet(); + wxRichTextStyleSheet* GetStyleSheet() const; /** Sets the flags used to control the interface presented to the user. @@ -172,5 +172,6 @@ public: /** Returns the flags used to control the interface presented to the user. */ - int GetFlags(); + int GetFlags() const; }; +