]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfind.h
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / lyxfind.h
index 4bbae181ac9eeaf9ab13a25b3b34c429ac5058ba..488804763862df2f9aa79b13c48ffae121079ae2 100644 (file)
@@ -1,23 +1,73 @@
 // -*- C++ -*-
+/**
+ * \file lyxfind.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author John Levon
+ * \author Jürgen Vigna
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef LYXFIND_H
 #define LYXFIND_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "support/types.h"
 
-#include "LString.h"
-#include "paragraph.h"
+#include <string>
 
 class BufferView;
+class LyXText;
+
+namespace lyx {
+namespace find {
+
+enum SearchResult {
+       //
+       SR_NOT_FOUND = 0,
+       //
+       SR_FOUND,
+       //
+       SR_FOUND_NOUPDATE
+};
+
+
+int replace(BufferView * bv,
+              std::string const &, std::string const &,
+              bool, bool = true, bool = false,
+              bool = false, bool = false);
+
+/**
+ * This function is called as a general interface to find some
+ * text from the actual cursor position in whatever direction
+ * we want to go. This does also update the screen.
+ */
+bool find(BufferView *,
+            std::string const & searchstr, bool forward,
+            bool casesens = true, bool matchwrd = false);
+
+/**
+ * This function does search from the cursor position inside the
+ * passed LyXText parameter and regards this LyXText as the root
+ * LyXText. It will NOT update any screen stuff. It will however
+ * set the cursor to the new position inside LyXText, before
+ * returning to the calling function.
+ */
+
+SearchResult find(BufferView *, LyXText * text,
+                    std::string const & searchstr, bool forward,
+                    bool casesens = true, bool matchwrd = false);
+
+/// find the next change in the buffer
+bool findNextChange(BufferView * bv);
+
+SearchResult findNextChange(BufferView * bv, LyXText * text, lyx::pos_type & length);
 
-int LyXReplace(BufferView * bv, string const &, string const &,
-               bool const &, bool const & = true, bool const & = false,
-               bool const & = false);
+SearchResult nextChange(BufferView * bv, LyXText * text, lyx::pos_type & length);
 
-bool LyXFind(BufferView *,
-             string const & searchstr, bool const & forward,
-                        bool const & frominset = false,
-             bool const & casesens = true, bool const & matchwrd = false);
+} // namespace find
+} // namespace lyx
 
-#endif
+#endif // LYXFIND_H