X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxfind.h;h=9daf4c8d74e560433d1ba11c01c3a04175562afe;hb=fba1c434e5166d0bd44fc7b981a141ab94553d5d;hp=896d88e5a02873dad938ba1bec501ee8c3564396;hpb=7055bb0098f2dd60bfa8054a4841a6c5bd485eb3;p=lyx.git diff --git a/src/lyxfind.h b/src/lyxfind.h index 896d88e5a0..9daf4c8d74 100644 --- a/src/lyxfind.h +++ b/src/lyxfind.h @@ -23,14 +23,10 @@ namespace lyx { - - -class Buffer; class Cursor; class BufferView; class DocIterator; class FuncRequest; -class Text; /** Encode the parameters needed to find \c search as a string * that can be dispatched to the LyX core in a FuncRequest wrapper. @@ -99,11 +95,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,10 +112,11 @@ public: bool keep_case; SearchScope scope; SearchRestriction restr; + bool replace_all; }; /// Set the formats that should be ignored -void setIgnoreFormat(std::string type, bool value); +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); @@ -141,9 +139,6 @@ docstring stringifyFromForSearch( DocIterator const & cur, int len = -1); -/** Set format type to be ignore by search - **/ -void setIgnoreFormat(std::string type, bool value); } // namespace lyx