X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4cc4bfafe5a31cb96f35b3ec9b19fa2b0b3a4eef..628e155d8c70da0f962289cf1e1dea3699255707:/interface/fdrepdlg.h diff --git a/interface/fdrepdlg.h b/interface/fdrepdlg.h index d23caec23e..84fd6047a5 100644 --- a/interface/fdrepdlg.h +++ b/interface/fdrepdlg.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: fdrepdlg.h -// Purpose: documentation for wxFindDialogEvent class +// Purpose: interface of wxFindDialogEvent // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -27,27 +27,28 @@ public: /** Return the pointer to the dialog which generated this event. */ - wxFindReplaceDialog* GetDialog(); + wxFindReplaceDialog* GetDialog() const; /** Return the string to find (never empty). */ - wxString GetFindString(); + wxString GetFindString() const; /** Get the currently selected flags: this is the combination of @c wxFR_DOWN, @c wxFR_WHOLEWORD and @c wxFR_MATCHCASE flags. */ - int GetFlags(); + int GetFlags() const; /** Return the string to replace the search string with (only for replace and replace all events). */ - const wxString GetReplaceString(); + const wxString GetReplaceString() const; }; + /** @class wxFindReplaceData @wxheader{fdrepdlg.h} @@ -81,7 +82,7 @@ public: /** Get the combination of @c wxFindReplaceFlags values. */ - int GetFlags(); + int GetFlags() const; /** Get the replacement string. @@ -105,6 +106,7 @@ public: }; + /** @class wxFindReplaceDialog @wxheader{fdrepdlg.h} @@ -154,5 +156,6 @@ public: Get the wxFindReplaceData object used by this dialog. */ - const wxFindReplaceData* GetData(); + const wxFindReplaceData* GetData() const; }; +