]> git.lyx.org Git - lyx.git/blob - src/lyxfind.h
e755efbd1548a585dc47be8043679c009cbb1a94
[lyx.git] / src / lyxfind.h
1 // -*- C++ -*-
2 /**
3  * \file lyxfind.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author John Levon
9  * \author Jürgen Vigna
10  * \author Alfredo Braunstein
11  * \author Tommaso Cucinotta
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #ifndef LYXFIND_H
17 #define LYXFIND_H
18
19 #include "support/strfwd.h"
20
21 // FIXME
22 #include "support/docstring.h"
23
24 namespace lyx {
25
26
27
28 class Buffer;
29 class BufferView;
30 class DocIterator;
31 class FuncRequest;
32 class Text;
33
34 /** Encode the parameters needed to find \c search as a string
35  *  that can be dispatched to the LyX core in a FuncRequest wrapper.
36  */
37 docstring const find2string(docstring const & search,
38                               bool casesensitive,
39                               bool matchword,
40                               bool forward);
41
42 /** Encode the parameters needed to replace \c search with \c replace
43  *  as a string that can be dispatched to the LyX core in a FuncRequest
44  *  wrapper.
45  */
46 docstring const replace2string(docstring const & search,
47                                  docstring const & replace,
48                                  bool casesensitive,
49                                  bool matchword,
50                                  bool all,
51                                  bool forward);
52
53 /** Parse the string encoding of the find request that is found in
54  *  \c ev.argument and act on it.
55  * The string is encoded by \c find2string.
56  * \return true if the string was found.
57  */
58 bool find(BufferView * bv, FuncRequest const & ev);
59
60 /** Parse the string encoding of the replace request that is found in
61  *  \c ev.argument and act on it.
62  * The string is encoded by \c replace2string.
63  */
64 void replace(BufferView * bv, FuncRequest const &, bool has_deleted = false);
65
66 /// find the next change in the buffer
67 bool findNextChange(BufferView * bv);
68
69 class FindAdvOptions {
70 public:
71   FindAdvOptions(
72                  docstring const & search,
73                  bool casesensitive,
74                  bool matchword,
75                  bool forward,
76                  bool expandmacros,
77                  bool ignoreformat,
78                  bool regexp);
79   FindAdvOptions() {}
80   docstring search;
81   bool casesensitive;
82   bool matchword;
83   bool forward;
84   bool expandmacros;
85   bool ignoreformat;
86   bool regexp;
87 };
88
89 /// Write a FindAdvOptions instance to a stringstream
90 std::ostringstream & operator<<(std::ostringstream & os, lyx::FindAdvOptions const & opt);
91
92 /// Read a FindAdvOptions instance from a stringstream
93 std::istringstream & operator>>(std::istringstream & is, lyx::FindAdvOptions & opt);
94
95 /// Dispatch a LFUN_WORD_FINDADV command request
96 void findAdv(BufferView * bv, FuncRequest const & ev);
97
98 /// Perform a FindAdv operation.
99 bool findAdv(BufferView * bv, FindAdvOptions const & opt);
100         
101 /** Computes the simple-text or LaTeX export (depending on opt) of buf starting
102  ** from cur and ending len positions after cur, if len is positive, or at the
103  ** paragraph or innermost inset end if len is -1.
104  **
105  ** This is useful for computing opt.search from the SearchAdvDialog controller (ControlSearchAdv).
106  ** Ideally, this should not be needed, and the opt.search field should become a Text const &.
107  **/
108 docstring stringifyFromForSearch(FindAdvOptions const & opt,
109     Buffer const & buf, DocIterator const & cur, int len = -1);
110
111 } // namespace lyx
112
113 #endif // LYXFIND_H