]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfind.h
Fix natbib bug spotted by JMarc.
[lyx.git] / src / lyxfind.h
index 2e74dc3361a9667c866d389fcac4dba7511e31d4..7415a466bcdffcdb1163841c749d1e58ad03ff0e 100644 (file)
@@ -7,17 +7,56 @@
 #endif
 
 #include "LString.h"
-#include "paragraph.h"
+#include "support/types.h"
 
 class BufferView;
+class LyXText;
 
-int LyXReplace(BufferView * bv, string const &, string const &,
+namespace lyxfind {
+
+enum SearchResult {
+       //
+       SR_NOT_FOUND = 0,
+       //
+       SR_FOUND,
+       //
+       SR_FOUND_NOUPDATE
+};
+
+
+int LyXReplace(BufferView * bv,
+              string const &, 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 LyXFind(BufferView *,
             string const & searchstr, bool forward,
-            bool frominset = false, bool casesens = true,
-            bool matchwrd = false);
+            bool casesens = true, bool matchwrd = false);
 
-#endif
+/**
+ * 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 LyXFind(BufferView *, LyXText * text,
+                    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);
+SearchResult nextChange(BufferView * bv, LyXText * text, lyx::pos_type & length);
+} // end namespace LyXFind
+#endif // LYXFIND_H