X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxfind.h;h=781411ce966dccd03b44fc719b5fd1b0ab3e37b7;hb=0f5c34b8abcaf5bf4ae2df665b2f5aed40229502;hp=9adcae968d9c0faf26f729df98b67a7c28f1836a;hpb=249d96ed942ca92b056c404fbcfee9ca00bd8d2e;p=lyx.git diff --git a/src/lyxfind.h b/src/lyxfind.h index 9adcae968d..781411ce96 100644 --- a/src/lyxfind.h +++ b/src/lyxfind.h @@ -26,6 +26,7 @@ namespace lyx { class Buffer; +class Cursor; class BufferView; class DocIterator; class FuncRequest; @@ -72,6 +73,10 @@ bool findNextChange(BufferView * bv); /// find the previous change in the buffer bool findPreviousChange(BufferView * bv); +/// select change under the cursor +bool selectChange(Cursor & cur, bool forward = true); + + class FindAndReplaceOptions { public: typedef enum { @@ -80,6 +85,10 @@ public: S_OPEN_BUFFERS, S_ALL_MANUALS } SearchScope; + typedef enum { + R_EVERYTHING, + R_ONLY_MATHS + } SearchRestriction; FindAndReplaceOptions( docstring const & find_buf_name, bool casesensitive, @@ -89,9 +98,11 @@ public: bool ignoreformat, docstring const & repl_buf_name, bool keep_case, - SearchScope scope = S_BUFFER + SearchScope scope = S_BUFFER, + SearchRestriction restr = R_EVERYTHING ); - FindAndReplaceOptions() { } + FindAndReplaceOptions() : casesensitive(false), matchword(false), forward(false), + expandmacros(false), ignoreformat(false) {} docstring find_buf_name; bool casesensitive; bool matchword; @@ -102,6 +113,7 @@ public: docstring repl_buf_name; bool keep_case; SearchScope scope; + SearchRestriction restr; }; /// Write a FindAdvOptions instance to a stringstream