]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/fdrepdlg.h
Document that HasFocus() is new in 2.9.
[wxWidgets.git] / interface / wx / fdrepdlg.h
index f011ee982b930ea02a39c274efd67c3ae495f706..ca61b13e168f2f8aaa906896c03b832f872d75b7 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxFindDialogEvent, wxFindReplaceDialog
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
@@ -20,7 +20,7 @@ enum wxFindReplaceFlags
 
     /** case sensitive search/replace selected (otherwise - case insensitive) */
     wxFR_MATCHCASE  = 4
-}
+};
 
 
 /**
@@ -39,13 +39,13 @@ enum wxFindReplaceDialogStyles
 
     /** don't allow whole word searching */
     wxFR_NOWHOLEWORD   = 8
-}
+};
 
 
 /**
     @class wxFindDialogEvent
 
-    wxFindReplaceDialog events
+    wxFindReplaceDialog events.
 
     @beginEventTable{wxFindDialogEvent}
     @event{EVT_FIND(id, func)}
@@ -67,7 +67,7 @@ class wxFindDialogEvent : public wxCommandEvent
 {
 public:
     /**
-        Constuctor used by wxWidgets only.
+        Constructor used by wxWidgets only.
     */
     wxFindDialogEvent(wxEventType commandType = wxEVT_NULL,
                       int id = 0);
@@ -95,6 +95,12 @@ public:
     const wxString& GetReplaceString() const;
 };
 
+wxEventType wxEVT_COMMAND_FIND;
+wxEventType wxEVT_COMMAND_FIND_NEXT;
+wxEventType wxEVT_COMMAND_FIND_REPLACE;
+wxEventType wxEVT_COMMAND_FIND_REPLACE_ALL;
+wxEventType wxEVT_COMMAND_FIND_CLOSE;
+
 
 
 /**
@@ -111,20 +117,20 @@ public:
     dialog and calling them has no effect later.
 
     @library{wxcore}
-    @category{data}
+    @category{cmndlg,data}
 */
 class wxFindReplaceData : public wxObject
 {
 public:
     /**
-        Constuctor initializes the flags to default value (0).
+        Constructor initializes the flags to default value (0).
     */
     wxFindReplaceData(wxUint32 flags = 0);
 
     /**
         Get the string to find.
     */
-    const wxString GetFindString();
+    const wxString& GetFindString();
 
     /**
         Get the combination of @c wxFindReplaceFlags values.
@@ -134,7 +140,7 @@ public:
     /**
         Get the replacement string.
     */
-    const wxString GetReplaceString();
+    const wxString& GetReplaceString();
 
     /**
         Set the string to find (used as initial value by the dialog).