]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/fdrepdlg.h
Implement setFont on the iOS port of wxStaticText.
[wxWidgets.git] / interface / wx / fdrepdlg.h
index 66091f28ac379f7670d93c0e079ede503409996b..eca36e5246cab394baae35690b960a93e088fe49 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        fdrepdlg.h
 // Purpose:     interface of wxFindDialogEvent, wxFindReplaceDialog
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -20,7 +19,7 @@ enum wxFindReplaceFlags
 
     /** case sensitive search/replace selected (otherwise - case insensitive) */
     wxFR_MATCHCASE  = 4
-}
+};
 
 
 /**
@@ -39,7 +38,7 @@ enum wxFindReplaceDialogStyles
 
     /** don't allow whole word searching */
     wxFR_NOWHOLEWORD   = 8
-}
+};
 
 
 /**
@@ -95,6 +94,12 @@ public:
     const wxString& GetReplaceString() const;
 };
 
+wxEventType wxEVT_FIND;
+wxEventType wxEVT_FIND_NEXT;
+wxEventType wxEVT_FIND_REPLACE;
+wxEventType wxEVT_FIND_REPLACE_ALL;
+wxEventType wxEVT_FIND_CLOSE;
+
 
 
 /**
@@ -124,7 +129,7 @@ public:
     /**
         Get the string to find.
     */
-    const wxString& GetFindString();
+    const wxString& GetFindString() const;
 
     /**
         Get the combination of @c wxFindReplaceFlags values.
@@ -134,7 +139,7 @@ public:
     /**
         Get the replacement string.
     */
-    const wxString& GetReplaceString();
+    const wxString& GetReplaceString() const;
 
     /**
         Set the string to find (used as initial value by the dialog).