]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfind.h
DocBook: add a layout tag to tell whether an item is the abstract or not.
[lyx.git] / src / lyxfind.h
index 61f44366ec0671a93f48a9349d8bd8a3298d73c4..bfaae8f43d96d6bfdda818cabdda8637eafd7fdc 100644 (file)
@@ -99,11 +99,12 @@ public:
                docstring const & repl_buf_name,
                bool keep_case,
                SearchScope scope = S_BUFFER,
-               SearchRestriction restr = R_EVERYTHING
+               SearchRestriction restr = R_EVERYTHING,
+               bool replace_all = false
        );
        FindAndReplaceOptions() : casesensitive(false), matchword(false), forward(false),
                                  expandmacros(false), ignoreformat(false),
-                                                         keep_case(false), scope(S_BUFFER), restr(R_EVERYTHING) {}
+                                 keep_case(false), scope(S_BUFFER), restr(R_EVERYTHING), replace_all(false) {}
        docstring find_buf_name;
        bool casesensitive;
        bool matchword;
@@ -115,8 +116,12 @@ public:
        bool keep_case;
        SearchScope scope;
        SearchRestriction restr;
+       bool replace_all;
 };
 
+/// Set the formats that should be ignored
+void setIgnoreFormat(std::string const & type, bool value);
+
 /// Write a FindAdvOptions instance to a stringstream
 std::ostringstream & operator<<(std::ostringstream & os, lyx::FindAndReplaceOptions const & opt);
 
@@ -138,6 +143,7 @@ docstring stringifyFromForSearch(
        DocIterator const & cur,
        int len = -1);
 
+
 } // namespace lyx
 
 #endif // LYXFIND_H