X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxfind.h;h=711bf8ee25aeae8ffc84ed7b336f096c1b61f8fd;hb=b8550d11e836e857967a31250e6ca248b2d43f82;hp=f8a77494f05dc608ecd1ca769af763d5325b690c;hpb=8a35204454230995c950659a066f5d148f71f8f1;p=lyx.git diff --git a/src/lyxfind.h b/src/lyxfind.h index f8a77494f0..711bf8ee25 100644 --- a/src/lyxfind.h +++ b/src/lyxfind.h @@ -78,6 +78,12 @@ bool findChange(BufferView * bv, bool next); class FindAndReplaceOptions { public: + typedef enum { + S_BUFFER, + S_DOCUMENT, + S_OPEN_BUFFERS, + S_ALL_MANUALS + } SearchScope; FindAndReplaceOptions( docstring const & search, bool casesensitive, @@ -87,7 +93,8 @@ public: bool ignoreformat, bool regexp, docstring const & replace, - bool keep_case + bool keep_case, + SearchScope scope = S_BUFFER ); FindAndReplaceOptions() { } docstring search; @@ -99,6 +106,7 @@ public: bool regexp; docstring replace; bool keep_case; + SearchScope scope; }; /// Write a FindAdvOptions instance to a stringstream @@ -107,9 +115,6 @@ std::ostringstream & operator<<(std::ostringstream & os, lyx::FindAndReplaceOpti /// Read a FindAdvOptions instance from a stringstream std::istringstream & operator>>(std::istringstream & is, lyx::FindAndReplaceOptions & opt); -/// Dispatch a LFUN_WORD_FINDADV command request -void findAdv(BufferView * bv, FuncRequest const & ev); - /// Perform a FindAdv operation. bool findAdv(BufferView * bv, FindAndReplaceOptions const & opt);