]> git.lyx.org Git - features.git/blob - src/lyxfind.cpp
Cmake key-tests: Adapted to changed shortcuts
[features.git] / src / lyxfind.cpp
1 /**
2  * \file lyxfind.cpp
3  * This file is part of LyX, the document processor.
4  * License details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author John Levon
8  * \author Jürgen Vigna
9  * \author Alfredo Braunstein
10  * \author Tommaso Cucinotta
11  * \author Kornel Benko
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #include <config.h>
17
18 #include "lyxfind.h"
19
20 #include "Buffer.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "BufferView.h"
24 #include "Changes.h"
25 #include "Cursor.h"
26 #include "CutAndPaste.h"
27 #include "FuncRequest.h"
28 #include "LyX.h"
29 #include "output_latex.h"
30 #include "OutputParams.h"
31 #include "Paragraph.h"
32 #include "Text.h"
33 #include "Encoding.h"
34 #include "Language.h"
35
36 #include "frontends/Application.h"
37 #include "frontends/alert.h"
38
39 #include "mathed/InsetMath.h"
40 #include "mathed/InsetMathHull.h"
41 #include "mathed/MathData.h"
42 #include "mathed/MathStream.h"
43 #include "mathed/MathSupport.h"
44
45 #include "support/debug.h"
46 #include "support/docstream.h"
47 #include "support/FileName.h"
48 #include "support/gettext.h"
49 #include "support/lassert.h"
50 #include "support/lstrings.h"
51 #include "support/textutils.h"
52
53 #include <unordered_map>
54 #include <regex>
55
56 //#define ResultsDebug
57 #define USE_QT_FOR_SEARCH
58 #if defined(USE_QT_FOR_SEARCH)
59         #include <QtCore>       // sets QT_VERSION
60         #if (QT_VERSION >= 0x050000)
61                 #include <QRegularExpression>
62                 #define QTSEARCH 1
63         #else
64                 #define QTSEARCH 0
65         #endif
66 #else
67         #define QTSEARCH 0
68 #endif
69
70 using namespace std;
71 using namespace lyx::support;
72
73 namespace lyx {
74
75 typedef unordered_map<string, string> AccentsMap;
76 typedef unordered_map<string,string>::const_iterator AccentsIterator;
77 static AccentsMap accents = unordered_map<string, string>();
78
79 // Helper class for deciding what should be ignored
80 class IgnoreFormats {
81  public:
82         ///
83         IgnoreFormats() = default;
84         ///
85         bool getFamily() const { return ignoreFamily_; }
86         ///
87         bool getSeries() const { return ignoreSeries_; }
88         ///
89         bool getShape() const { return ignoreShape_; }
90         ///
91         bool getUnderline() const { return ignoreUnderline_; }
92         ///
93         bool getMarkUp() const { return ignoreMarkUp_; }
94         ///
95         bool getStrikeOut() const { return ignoreStrikeOut_; }
96         ///
97         bool getSectioning() const { return ignoreSectioning_; }
98         ///
99         bool getFrontMatter() const { return ignoreFrontMatter_; }
100         ///
101         bool getColor() const { return ignoreColor_; }
102         ///
103         bool getLanguage() const { return ignoreLanguage_; }
104         ///
105         bool getDeleted() const { return ignoreDeleted_; }
106         ///
107         void setIgnoreDeleted(bool value);
108         ///
109         bool getNonContent() const { return searchNonContent_; }
110         ///
111         void setIgnoreFormat(string const & type, bool value, bool fromUser = true);
112
113 private:
114         ///
115         bool ignoreFamily_ = false;
116         ///
117         bool ignoreSeries_ = false;
118         ///
119         bool ignoreShape_ = false;
120         ///
121         bool ignoreUnderline_ = false;
122         ///
123         bool ignoreMarkUp_ = false;
124         ///
125         bool ignoreStrikeOut_ = false;
126         ///
127         bool ignoreSectioning_ = false;
128         ///
129         bool ignoreFrontMatter_ = false;
130         ///
131         bool ignoreColor_ = false;
132         ///
133         bool ignoreLanguage_ = false;
134         bool userSelectedIgnoreLanguage_ = false;
135         ///
136         bool ignoreDeleted_ = true;
137         ///
138         bool searchNonContent_ = true;
139 };
140
141 void IgnoreFormats::setIgnoreFormat(string const & type, bool value, bool fromUser)
142 {
143         if (type == "color") {
144                 ignoreColor_ = value;
145         }
146         else if (type == "language") {
147                 if (fromUser) {
148                         userSelectedIgnoreLanguage_ = value;
149                         ignoreLanguage_ = value;
150                 }
151                 else
152                         ignoreLanguage_ = (value || userSelectedIgnoreLanguage_);
153         }
154         else if (type == "sectioning") {
155                 ignoreSectioning_ = value;
156                 ignoreFrontMatter_ = value;
157         }
158         else if (type == "font") {
159                 ignoreSeries_ = value;
160                 ignoreShape_ = value;
161                 ignoreFamily_ = value;
162         }
163         else if (type == "series") {
164                 ignoreSeries_ = value;
165         }
166         else if (type == "shape") {
167                 ignoreShape_ = value;
168         }
169         else if (type == "family") {
170                 ignoreFamily_ = value;
171         }
172         else if (type == "markup") {
173                 ignoreMarkUp_ = value;
174         }
175         else if (type == "underline") {
176                 ignoreUnderline_ = value;
177         }
178         else if (type == "strike") {
179                 ignoreStrikeOut_ = value;
180         }
181         else if (type == "deleted") {
182                 ignoreDeleted_ = value;
183         }
184         else if (type == "non-output-content") {
185                 searchNonContent_ = !value;
186         }
187 }
188
189 // The global variable that can be changed from outside
190 IgnoreFormats ignoreFormats;
191
192
193 void setIgnoreFormat(string const & type, bool value, bool fromUser)
194 {
195   ignoreFormats.setIgnoreFormat(type, value, fromUser);
196 }
197
198
199 namespace {
200
201 bool parse_bool(docstring & howto, bool const defvalue = false)
202 {
203         if (howto.empty())
204                 return defvalue;
205         docstring var;
206         howto = split(howto, var, ' ');
207         return var == "1";
208 }
209
210
211 class MatchString
212 {
213 public:
214         MatchString(docstring const & s, bool cs, bool mw)
215                 : str(s), case_sens(cs), whole_words(mw)
216         {}
217
218         // returns true if the specified string is at the specified position
219         // del specifies whether deleted strings in ct mode will be considered
220         int operator()(Paragraph const & par, pos_type pos, bool del = true) const
221         {
222                 return par.find(str, case_sens, whole_words, pos, del);
223         }
224
225 private:
226         // search string
227         docstring str;
228         // case sensitive
229         bool case_sens;
230         // match whole words only
231         bool whole_words;
232 };
233
234
235 int findForward(DocIterator & cur, DocIterator const endcur,
236                 MatchString const & match,
237                 bool find_del = true, bool onlysel = false)
238 {
239         for (; cur; cur.forwardChar()) {
240                 if (onlysel && endcur.pit() == cur.pit()
241                     && endcur.idx() == cur.idx() && endcur.pos() < cur.pos())
242                         break;
243                 if (cur.inTexted()) {
244                         int len = match(cur.paragraph(), cur.pos(), find_del);
245                         if (len > 0)
246                                 return len;
247                 }
248         }
249         return 0;
250 }
251
252
253 int findBackwards(DocIterator & cur, DocIterator const endcur,
254                   MatchString const & match,
255                   bool find_del = true, bool onlysel = false)
256 {
257         while (cur) {
258                 cur.backwardChar();
259                 if (onlysel && endcur.pit() == cur.pit()
260                     && endcur.idx() == cur.idx() && endcur.pos() > cur.pos())
261                         break;
262                 if (cur.inTexted()) {
263                         int len = match(cur.paragraph(), cur.pos(), find_del);
264                         if (len > 0)
265                                 return len;
266                 }
267         }
268         return 0;
269 }
270
271
272 bool searchAllowed(docstring const & str)
273 {
274         if (str.empty()) {
275                 frontend::Alert::error(_("Search error"), _("Search string is empty"));
276                 return false;
277         }
278         return true;
279 }
280
281 } // namespace
282
283
284 bool findOne(BufferView * bv, docstring const & searchstr,
285              bool case_sens, bool whole, bool forward,
286              bool find_del, bool check_wrap, bool const auto_wrap,
287              bool instant, bool onlysel)
288 {
289         // Clean up previous selections with empty searchstr on instant
290         if (searchstr.empty() && instant) {
291                 if (bv->cursor().selection()) {
292                         bv->setCursor(bv->cursor().selectionBegin());
293                         bv->clearSelection();
294                 }
295                 return true;
296         }
297
298         if (!searchAllowed(searchstr))
299                 return false;
300
301         DocIterator const endcur = forward ? bv->cursor().selectionEnd() : bv->cursor().selectionBegin();
302
303         if (onlysel && bv->cursor().selection()) {
304                 docstring const matchstring = bv->cursor().selectionAsString(false);
305                 docstring const lcmatchsting = support::lowercase(matchstring);
306                 if (matchstring == searchstr || (!case_sens && lcmatchsting == lowercase(searchstr))) {
307                         docstring q = _("The search string matches the selection, and search is limited to selection.\n"
308                                         "Continue search outside?");
309                         int search_answer = frontend::Alert::prompt(_("Search outside selection?"),
310                                 q, 0, 1, _("&Yes"), _("&No"));
311                         if (search_answer == 0) {
312                                 bv->clearSelection();
313                                 if (findOne(bv, searchstr, case_sens, whole, forward,
314                                             find_del, check_wrap, auto_wrap, false, false))
315                                         return true;
316                         }
317                         return false;
318                 }
319         }
320
321         DocIterator cur = forward
322                 ? ((instant || onlysel) ? bv->cursor().selectionBegin() : bv->cursor().selectionEnd())
323                 : ((instant || onlysel) ? bv->cursor().selectionEnd() : bv->cursor().selectionBegin());
324
325         MatchString const match(searchstr, case_sens, whole);
326
327         int match_len = forward
328                 ? findForward(cur, endcur, match, find_del, onlysel)
329                 : findBackwards(cur, endcur, match, find_del, onlysel);
330
331         if (match_len > 0)
332                 bv->putSelectionAt(cur, match_len, !forward);
333         else if (onlysel) {
334                 docstring q = _("The search string was not found within the selection.\n"
335                                 "Continue search outside?");
336                 int search_answer = frontend::Alert::prompt(_("Search outside selection?"),
337                         q, 0, 1, _("&Yes"), _("&No"));
338                 if (search_answer == 0) {
339                         bv->clearSelection();
340                         if (findOne(bv, searchstr, case_sens, whole, forward,
341                                     find_del, check_wrap, auto_wrap, false, false))
342                                 return true;
343                 }
344                 return false;
345         }
346         else if (check_wrap) {
347                 DocIterator cur_orig(bv->cursor());
348                 bool wrap = auto_wrap;
349                 if (!auto_wrap) {
350                         docstring q;
351                         if (forward)
352                                 q = _("End of file reached while searching forward.\n"
353                                   "Continue searching from the beginning?");
354                         else
355                                 q = _("Beginning of file reached while searching backward.\n"
356                                   "Continue searching from the end?");
357                         int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
358                                 q, 0, 1, _("&Yes"), _("&No"));
359                         wrap = wrap_answer == 0;
360                 }
361                 if (wrap) {
362                         if (forward) {
363                                 bv->cursor().clear();
364                                 bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
365                         } else {
366                                 bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
367                                 bv->cursor().backwardPos();
368                         }
369                         if (auto_wrap) {
370                                 docstring const msg = forward
371                                   ? _("Search reached end of document, continuing from beginning.")
372                                   : _("Search reached beginning of document, continuing from end.");
373                                 bv->message(msg);
374                         }
375                         bv->clearSelection();
376                         if (findOne(bv, searchstr, case_sens, whole, forward,
377                                     find_del, false, false, false, false))
378                                 return true;
379                 }
380                 bv->cursor().setCursor(cur_orig);
381                 return false;
382         }
383
384         return match_len > 0;
385 }
386
387
388 namespace {
389
390 int replaceAll(BufferView * bv,
391                docstring const & searchstr, docstring const & replacestr,
392                bool case_sens, bool whole, bool onlysel)
393 {
394         Buffer & buf = bv->buffer();
395
396         if (!searchAllowed(searchstr) || buf.isReadonly())
397                 return 0;
398
399         DocIterator startcur = bv->cursor().selectionBegin();
400         DocIterator endcur = bv->cursor().selectionEnd();
401         bool const had_selection = bv->cursor().selection();
402
403         MatchString const match(searchstr, case_sens, whole);
404         int num = 0;
405
406         int const rsize = replacestr.size();
407         int const ssize = searchstr.size();
408
409         Cursor cur(*bv);
410         cur.setCursor(doc_iterator_begin(&buf));
411         int match_len = findForward(cur, endcur, match, false, onlysel);
412         while (match_len > 0) {
413                 // Backup current cursor position and font.
414                 pos_type const pos = cur.pos();
415                 Font const font = cur.paragraph().getFontSettings(buf.params(), pos);
416                 cur.recordUndo();
417                 int ct_deleted_text = ssize -
418                         cur.paragraph().eraseChars(pos, pos + match_len,
419                                                    buf.params().track_changes);
420                 cur.paragraph().insert(pos, replacestr, font,
421                                        Change(buf.params().track_changes
422                                               ? Change::INSERTED
423                                               : Change::UNCHANGED));
424                 for (int i = 0; i < rsize + ct_deleted_text
425                      && cur.pos() < cur.lastpos(); ++i)
426                         cur.forwardPos();
427                 if (onlysel && cur.pit() == endcur.pit() && cur.idx() == endcur.idx()) {
428                         // Adjust end of selection for replace-all in selection
429                         if (rsize > ssize) {
430                                 int const offset = rsize - ssize;
431                                 for (int i = 0; i < offset + ct_deleted_text
432                                      && endcur.pos() < endcur.lastpos(); ++i)
433                                         endcur.forwardPos();
434                         } else {
435                                 int const offset = ssize - rsize;
436                                 for (int i = 0; i < offset && endcur.pos() > 0; ++i)
437                                         endcur.backwardPos();
438                                 for (int i = 0; i < ct_deleted_text
439                                      && endcur.pos() < endcur.lastpos(); ++i)
440                                         endcur.forwardPos();
441                         }
442                 }
443                 ++num;
444                 match_len = findForward(cur, endcur, match, false, onlysel);
445         }
446
447         bv->putSelectionAt(doc_iterator_begin(&buf), 0, false);
448
449         startcur.fixIfBroken();
450         bv->setCursor(startcur);
451
452         // Reset selection, accounting for changes in selection
453         if (had_selection) {
454                 endcur.fixIfBroken();
455                 bv->cursor().resetAnchor();
456                 bv->setCursorSelectionTo(endcur);
457         }
458
459         return num;
460 }
461
462
463 // the idea here is that we are going to replace the string that
464 // is selected IF it is the search string.
465 // if there is a selection, but it is not the search string, then
466 // we basically ignore it. (FIXME We ought to replace only within
467 // the selection.)
468 // if there is no selection, then:
469 //  (i) if some search string has been provided, then we find it.
470 //      (think of how the dialog works when you hit "replace" the
471 //      first time.)
472 // (ii) if no search string has been provided, then we treat the
473 //      word the cursor is in as the search string. (why? i have no
474 //      idea.) but this only works in text?
475 //
476 // returns the number of replacements made (one, if any) and
477 // whether anything at all was done.
478 pair<bool, int> replaceOne(BufferView * bv, docstring searchstr,
479                            docstring const & replacestr, bool case_sens,
480                            bool whole, bool forward, bool findnext, bool wrap,
481                            bool onlysel)
482 {
483         Cursor & cur = bv->cursor();
484         if (!cur.selection() || onlysel) {
485                 // no selection, non-empty search string: find it
486                 if (!searchstr.empty()) {
487                         bool const found = findOne(bv, searchstr, case_sens, whole,
488                                                    forward, true, findnext, wrap, false, onlysel);
489                         return make_pair(found, 0);
490                 }
491                 // empty search string
492                 if (!cur.inTexted())
493                         // bail in math
494                         return make_pair(false, 0);
495                 // select current word and treat it as the search string.
496                 // This causes a minor bug as undo will restore this selection,
497                 // which the user did not create (#8986).
498                 cur.innerText()->selectWord(cur, WHOLE_WORD);
499                 searchstr = cur.selectionAsString(false, true);
500         }
501
502         // if we still don't have a search string, report the error
503         // and abort.
504         if (!searchAllowed(searchstr))
505                 return make_pair(false, 0);
506
507         bool have_selection = cur.selection();
508         docstring const selected = cur.selectionAsString(false, true);
509         bool match =
510                 case_sens
511                 ? searchstr == selected
512                 : compare_no_case(searchstr, selected) == 0;
513
514         // no selection or current selection is not search word:
515         // just find the search word
516         if (!have_selection || !match) {
517                 bool const found = findOne(bv, searchstr, case_sens, whole, forward,
518                                            true, findnext, wrap, false, onlysel);
519                 return make_pair(found, 0);
520         }
521
522         // we're now actually ready to replace. if the buffer is
523         // read-only, we can't, though.
524         if (bv->buffer().isReadonly())
525                 return make_pair(false, 0);
526
527         cap::replaceSelectionWithString(cur, replacestr);
528         if (forward) {
529                 cur.pos() += replacestr.length();
530                 LASSERT(cur.pos() <= cur.lastpos(),
531                         cur.pos() = cur.lastpos());
532         }
533         if (findnext)
534                 findOne(bv, searchstr, case_sens, whole,
535                         forward, false, findnext, wrap, false, onlysel);
536
537         return make_pair(true, 1);
538 }
539
540 } // namespace
541
542
543 docstring const find2string(docstring const & search,
544                             bool casesensitive, bool matchword,
545                             bool forward, bool wrap, bool instant,
546                             bool onlysel)
547 {
548         odocstringstream ss;
549         ss << search << '\n'
550            << int(casesensitive) << ' '
551            << int(matchword) << ' '
552            << int(forward) << ' '
553            << int(wrap) << ' '
554            << int(instant) << ' '
555            << int(onlysel);
556         return ss.str();
557 }
558
559
560 docstring const replace2string(docstring const & replace,
561                                docstring const & search,
562                                bool casesensitive, bool matchword,
563                                bool all, bool forward, bool findnext,
564                                bool wrap, bool onlysel)
565 {
566         odocstringstream ss;
567         ss << replace << '\n'
568            << search << '\n'
569            << int(casesensitive) << ' '
570            << int(matchword) << ' '
571            << int(all) << ' '
572            << int(forward) << ' '
573            << int(findnext) << ' '
574            << int(wrap) << ' '
575            << int(onlysel);
576         return ss.str();
577 }
578
579
580 docstring const string2find(docstring const & argument,
581                               bool &casesensitive,
582                               bool &matchword,
583                               bool &forward,
584                               bool &wrap,
585                               bool &instant,
586                               bool &onlysel)
587 {
588         // data is of the form
589         // "<search>
590         //  <casesensitive> <matchword> <forward> <wrap> <onlysel>"
591         docstring search;
592         docstring howto = split(argument, search, '\n');
593
594         casesensitive = parse_bool(howto);
595         matchword     = parse_bool(howto);
596         forward       = parse_bool(howto, true);
597         wrap          = parse_bool(howto);
598         instant       = parse_bool(howto);
599         onlysel       = parse_bool(howto);
600
601         return search;
602 }
603
604
605 bool lyxfind(BufferView * bv, FuncRequest const & ev)
606 {
607         if (!bv || ev.action() != LFUN_WORD_FIND)
608                 return false;
609
610         //lyxerr << "find called, cmd: " << ev << endl;
611         bool casesensitive;
612         bool matchword;
613         bool forward;
614         bool wrap;
615         bool instant;
616         bool onlysel;
617         
618         docstring search = string2find(ev.argument(), casesensitive,
619                                        matchword, forward, wrap, instant, onlysel);
620
621         return findOne(bv, search, casesensitive, matchword, forward,
622                        false, true, wrap, instant, onlysel);
623 }
624
625
626 bool lyxreplace(BufferView * bv, FuncRequest const & ev)
627 {
628         if (!bv || ev.action() != LFUN_WORD_REPLACE)
629                 return false;
630
631         // data is of the form
632         // "<search>
633         //  <replace>
634         //  <casesensitive> <matchword> <all> <forward> <findnext> <wrap> <onlysel>"
635         docstring search;
636         docstring rplc;
637         docstring howto = split(ev.argument(), rplc, '\n');
638         howto = split(howto, search, '\n');
639
640         bool casesensitive = parse_bool(howto);
641         bool matchword     = parse_bool(howto);
642         bool all           = parse_bool(howto);
643         bool forward       = parse_bool(howto, true);
644         bool findnext      = parse_bool(howto, true);
645         bool wrap          = parse_bool(howto);
646         bool onlysel       = parse_bool(howto);
647
648         if (!bv->cursor().selection())
649                 // only selection only makes sense with selection
650                 onlysel = false;
651
652         bool update = false;
653
654         int replace_count = 0;
655         if (all) {
656                 replace_count = replaceAll(bv, search, rplc, casesensitive,
657                                            matchword, onlysel);
658                 update = replace_count > 0;
659         } else {
660                 pair<bool, int> rv =
661                         replaceOne(bv, search, rplc, casesensitive, matchword,
662                                    forward, findnext, wrap, onlysel);
663                 update = rv.first;
664                 replace_count = rv.second;
665         }
666
667         Buffer const & buf = bv->buffer();
668         if (!update) {
669                 // emit message signal.
670                 if (onlysel)
671                         buf.message(_("String not found in selection."));
672                 else
673                         buf.message(_("String not found."));
674         } else {
675                 if (replace_count == 0) {
676                         buf.message(_("String found."));
677                 } else if (replace_count == 1) {
678                         buf.message(_("String has been replaced."));
679                 } else {
680                         docstring const str = onlysel
681                                         ? bformat(_("%1$d strings have been replaced in the selection."), replace_count)
682                                         : bformat(_("%1$d strings have been replaced."), replace_count);
683                         buf.message(str);
684                 }
685         }
686         return update;
687 }
688
689
690 bool findNextChange(BufferView * bv, Cursor & cur, bool const check_wrap)
691 {
692         for (; cur; cur.forwardPos())
693                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
694                         return true;
695
696         if (check_wrap) {
697                 DocIterator cur_orig(bv->cursor());
698                 docstring q = _("End of file reached while searching forward.\n"
699                           "Continue searching from the beginning?");
700                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
701                         q, 0, 1, _("&Yes"), _("&No"));
702                 if (wrap_answer == 0) {
703                         bv->cursor().clear();
704                         bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
705                         bv->clearSelection();
706                         cur.setCursor(bv->cursor().selectionBegin());
707                         if (findNextChange(bv, cur, false))
708                                 return true;
709                 }
710                 bv->cursor().setCursor(cur_orig);
711         }
712
713         return false;
714 }
715
716
717 bool findPreviousChange(BufferView * bv, Cursor & cur, bool const check_wrap)
718 {
719         for (cur.backwardPos(); cur; cur.backwardPos()) {
720                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
721                         return true;
722         }
723
724         if (check_wrap) {
725                 DocIterator cur_orig(bv->cursor());
726                 docstring q = _("Beginning of file reached while searching backward.\n"
727                           "Continue searching from the end?");
728                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
729                         q, 0, 1, _("&Yes"), _("&No"));
730                 if (wrap_answer == 0) {
731                         bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
732                         bv->cursor().backwardPos();
733                         bv->clearSelection();
734                         cur.setCursor(bv->cursor().selectionBegin());
735                         if (findPreviousChange(bv, cur, false))
736                                 return true;
737                 }
738                 bv->cursor().setCursor(cur_orig);
739         }
740
741         return false;
742 }
743
744
745 bool selectChange(Cursor & cur, bool forward)
746 {
747         if (!cur.inTexted() || !cur.paragraph().isChanged(cur.pos()))
748                 return false;
749         Change ch = cur.paragraph().lookupChange(cur.pos());
750
751         CursorSlice tip1 = cur.top();
752         for (; tip1.pit() < tip1.lastpit() || tip1.pos() < tip1.lastpos(); tip1.forwardPos()) {
753                 Change ch2 = tip1.paragraph().lookupChange(tip1.pos());
754                 if (!ch2.isSimilarTo(ch))
755                         break;
756         }
757         CursorSlice tip2 = cur.top();
758         for (; tip2.pit() > 0 || tip2.pos() > 0;) {
759                 tip2.backwardPos();
760                 Change ch2 = tip2.paragraph().lookupChange(tip2.pos());
761                 if (!ch2.isSimilarTo(ch)) {
762                         // take a step forward to correctly set the selection
763                         tip2.forwardPos();
764                         break;
765                 }
766         }
767         if (forward)
768                 swap(tip1, tip2);
769         cur.top() = tip1;
770         cur.bv().mouseSetCursor(cur, false);
771         cur.top() = tip2;
772         cur.bv().mouseSetCursor(cur, true);
773         return true;
774 }
775
776
777 namespace {
778
779
780 bool findChange(BufferView * bv, bool forward)
781 {
782         Cursor cur(*bv);
783         cur.setCursor(forward ? bv->cursor().selectionEnd()
784                       : bv->cursor().selectionBegin());
785         forward ? findNextChange(bv, cur, true) : findPreviousChange(bv, cur, true);
786         return selectChange(cur, forward);
787 }
788
789 } // namespace
790
791 bool findNextChange(BufferView * bv)
792 {
793         return findChange(bv, true);
794 }
795
796
797 bool findPreviousChange(BufferView * bv)
798 {
799         return findChange(bv, false);
800 }
801
802
803
804 namespace {
805
806 typedef vector<pair<string, string> > Escapes;
807
808 string string2regex(string in)
809 {
810         static std::regex specialChars { R"([-[\]{}()*+?.,\^$|#\s\$\\])" };
811         string temp = std::regex_replace(in, specialChars,  R"(\$&)" );
812         string temp2("");
813         size_t lastpos = 0;
814         size_t fl_pos = 0;
815         int offset = 1;
816         while (fl_pos < temp.size()) {
817                 fl_pos = temp.find("\\\\foreignlanguage", lastpos + offset);
818                 if (fl_pos == string::npos)
819                         break;
820                 offset = 16;
821                 temp2 += temp.substr(lastpos, fl_pos - lastpos);
822                 temp2 += "\\n";
823                 lastpos = fl_pos;
824         }
825         if (lastpos == 0)
826                 return(temp);
827         if (lastpos < temp.size()) {
828                 temp2 += temp.substr(lastpos, temp.size() - lastpos);
829         }
830         return temp2;
831 }
832
833 static void buildAccentsMap();
834
835 string correctRegex(string t, bool withformat)
836 {
837         /* Convert \backslash => \
838          * and \{, \}, \[, \] => {, }, [, ]
839          */
840         string s("");
841         regex wordre("(\\\\)*(\\\\(([a-z]+) ?|[\\[\\]\\{\\}]))");
842         size_t lastpos = 0;
843         smatch sub;
844         bool backslashed = false;
845         if (accents.empty())
846                 buildAccentsMap();
847
848         for (sregex_iterator it(t.begin(), t.end(), wordre), end; it != end; ++it) {
849                 sub = *it;
850                 string replace;
851                 if ((sub.position(2) - sub.position(0)) % 2 == 1) {
852                         continue;
853                 }
854                 else {
855                         if (sub.str(4) == "backslash") {
856                                 replace = "\\";
857                                 if (withformat) {
858                                         // transforms '\backslash \{' into '\{'
859                                         // and '\{' into '{'
860                                         string next = t.substr(sub.position(2) + sub.str(2).length(), 2);
861                                         if ((next == "\\{") || (next == "\\}")) {
862                                                 replace = "";
863                                                 backslashed = true;
864                                         }
865                                 }
866                         }
867                         else if (sub.str(4) == "mathcircumflex")
868                                 replace = "^";
869                         else if (backslashed) {
870                                 backslashed = false;
871                                 if (withformat && (sub.str(3) == "{"))
872                                         replace = accents["braceleft"];
873                                 else if (withformat && (sub.str(3) == "}"))
874                                         replace = accents["braceright"];
875                                 else {
876                                         // else part should not exist
877                                         LASSERT(1, /**/);
878                                 }
879                         }
880                         else {
881                                 AccentsIterator it_ac = accents.find(sub.str(4));
882                                 if (it_ac == accents.end()) {
883                                         replace = sub.str(3);
884                                 }
885                                 else {
886                                         replace = it_ac->second;
887                                 }
888                         }
889                 }
890                 if (lastpos < (size_t) sub.position(2))
891                         s += t.substr(lastpos, sub.position(2) - lastpos);
892                 s += replace;
893                 lastpos = sub.position(2) + sub.length(2);
894         }
895         if (lastpos == 0)
896                 return t;
897         else if (lastpos < t.length())
898                 s += t.substr(lastpos, t.length() - lastpos);
899         return s;
900 }
901
902 /// Within \regexp{} apply get_lyx_unescapes() only (i.e., preserve regexp semantics of the string),
903 /// while outside apply get_lyx_unescapes()+get_regexp_escapes().
904 /// If match_latex is true, then apply regexp_latex_escapes() to \regexp{} contents as well.
905 string escape_for_regex(string s, bool withformat)
906 {
907         size_t lastpos = 0;
908         string result = "";
909         while (lastpos < s.size()) {
910                 size_t regex_pos = s.find("\\regexp{", lastpos);
911                 if (regex_pos == string::npos) {
912                         regex_pos = s.size();
913                 }
914                 if (regex_pos > lastpos) {
915                         result += string2regex(s.substr(lastpos, regex_pos-lastpos));
916                         lastpos = regex_pos;
917                         if (lastpos == s.size())
918                                 break;
919                 }
920                 size_t end_pos = s.find("\\endregexp", regex_pos + 8);
921                 result += correctRegex(s.substr(regex_pos + 8, end_pos -(regex_pos + 8)), withformat);
922                 lastpos = end_pos + 13;
923         }
924         return result;
925 }
926
927
928 /// Wrapper for lyx::regex_replace with simpler interface
929 bool regex_replace(string const & s, string & t, string const & searchstr,
930                    string const & replacestr)
931 {
932         regex e(searchstr, regex_constants::ECMAScript);
933         ostringstream oss;
934         ostream_iterator<char, char> it(oss);
935         regex_replace(it, s.begin(), s.end(), e, replacestr);
936         // tolerate t and s be references to the same variable
937         bool rv = (s != oss.str());
938         t = oss.str();
939         return rv;
940 }
941
942 class MatchResult {
943 public:
944         enum range {
945                 newIsTooFar,
946                 newIsBetter,
947                 newIsInvalid
948         };
949         int match_len;
950         int match_prefix;
951         int match2end;
952         int pos;
953         int leadsize;
954         int pos_len;
955         int searched_size;
956         vector <string> result = vector <string>();
957         MatchResult(int len = 0): match_len(len),match_prefix(0),match2end(0), pos(0),leadsize(0),pos_len(-1),searched_size(0) {}
958 };
959
960 static MatchResult::range interpretMatch(MatchResult &oldres, MatchResult &newres)
961 {
962   if (newres.match2end < oldres.match2end)
963     return MatchResult::newIsTooFar;
964   if (newres.match_len < oldres.match_len)
965     return MatchResult::newIsTooFar;
966
967   if (newres.match_len == oldres.match_len) {
968     if (newres.match2end == oldres.match2end)
969       return MatchResult::newIsBetter;
970   }
971   return MatchResult::newIsInvalid;
972 }
973
974 /** The class performing a match between a position in the document and the FindAdvOptions.
975  **/
976
977 class MatchStringAdv {
978 public:
979         MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions & opt);
980
981         /** Tests if text starting at the supplied position matches with the one provided to the MatchStringAdv
982          ** constructor as opt.search, under the opt.* options settings.
983          **
984          ** @param at_begin
985          **     If set, then match is searched only against beginning of text starting at cur.
986          **     If unset, then match is searched anywhere in text starting at cur.
987          **
988          ** @return
989          ** The length of the matching text, or zero if no match was found.
990          **/
991         MatchResult operator()(DocIterator const & cur, int len = -1, bool at_begin = true) const;
992 #if QTSEARCH
993         bool regexIsValid;
994         string regexError;
995 #endif
996
997 public:
998         /// buffer
999         lyx::Buffer * p_buf;
1000         /// first buffer on which search was started
1001         lyx::Buffer * const p_first_buf;
1002         /// options
1003         FindAndReplaceOptions const & opt;
1004
1005 private:
1006         /// Auxiliary find method (does not account for opt.matchword)
1007         MatchResult findAux(DocIterator const & cur, int len = -1, bool at_begin = true) const;
1008         void CreateRegexp(FindAndReplaceOptions const & opt, string regexp_str, string regexp2_str, string par_as_string = "");
1009
1010         /** Normalize a stringified or latexified LyX paragraph.
1011          **
1012          ** Normalize means:
1013          ** <ul>
1014          **   <li>if search is not casesensitive, then lowercase the string;
1015          **   <li>remove any newline at begin or end of the string;
1016          **   <li>replace any newline in the middle of the string with a simple space;
1017          **   <li>remove stale empty styles and environments, like \emph{} and \textbf{}.
1018          ** </ul>
1019          **
1020          ** @todo Normalization should also expand macros, if the corresponding
1021          ** search option was checked.
1022          **/
1023         string normalize(docstring const & s) const;
1024         // normalized string to search
1025         string par_as_string;
1026         // regular expression to use for searching
1027         // regexp2 is same as regexp, but prefixed with a ".*?"
1028 #if QTSEARCH
1029         QRegularExpression regexp;
1030         QRegularExpression regexp2;
1031 #else
1032         regex regexp;
1033         regex regexp2;
1034 #endif
1035         // leading format material as string
1036         string lead_as_string;
1037         // par_as_string after removal of lead_as_string
1038         string par_as_string_nolead;
1039         // unmatched open braces in the search string/regexp
1040         int open_braces;
1041         // number of (.*?) subexpressions added at end of search regexp for closing
1042         // environments, math mode, styles, etc...
1043         int close_wildcards;
1044 public:
1045         // Are we searching with regular expressions ?
1046         bool use_regexp;
1047         static int valid_matches;
1048         static vector <string> matches;
1049         void FillResults(MatchResult &found_mr);
1050 };
1051
1052 int MatchStringAdv::valid_matches = 0;
1053 vector <string> MatchStringAdv::matches = vector <string>(10);
1054
1055 void MatchStringAdv::FillResults(MatchResult &found_mr)
1056 {
1057   if (found_mr.match_len > 0) {
1058     valid_matches = found_mr.result.size();
1059     for (size_t i = 0; i < found_mr.result.size(); i++)
1060       matches[i] = found_mr.result[i];
1061   }
1062   else
1063     valid_matches = 0;
1064 }
1065
1066 static docstring buffer_to_latex(Buffer & buffer)
1067 {
1068         //OutputParams runparams(&buffer.params().encoding());
1069         OutputParams runparams(encodings.fromLyXName("utf8"));
1070         odocstringstream ods;
1071         otexstream os(ods);
1072         runparams.nice = true;
1073         runparams.flavor = Flavor::XeTeX;
1074         runparams.linelen = 10000; //lyxrc.plaintext_linelen;
1075         // No side effect of file copying and image conversion
1076         runparams.dryrun = true;
1077         if (ignoreFormats.getDeleted())
1078                 runparams.for_searchAdv = OutputParams::SearchWithoutDeleted;
1079         else
1080                 runparams.for_searchAdv = OutputParams::SearchWithDeleted;
1081         if (ignoreFormats.getNonContent()) {
1082                 runparams.for_searchAdv |= OutputParams::SearchNonOutput;
1083         }
1084         pit_type const endpit = buffer.paragraphs().size();
1085         for (pit_type pit = 0; pit != endpit; ++pit) {
1086                 TeXOnePar(buffer, buffer.text(), pit, os, runparams);
1087                 LYXERR(Debug::FIND, "searchString up to here: " << ods.str());
1088         }
1089         return ods.str();
1090 }
1091
1092 static string latexNamesToUtf8(docstring strIn)
1093 {
1094         string addtmp = to_utf8(strIn);
1095         static regex const rmAcc("(\\\\)*(\\\\([a-z]+) ?)");
1096         size_t lastpos = 0;
1097         smatch sub;
1098         string replace;
1099         string add("");
1100         if (accents.empty())
1101                 buildAccentsMap();
1102         for (sregex_iterator it_add(addtmp.begin(), addtmp.end(), rmAcc), end; it_add != end; ++it_add) {
1103                 sub = *it_add;
1104                 if ((sub.position(2) - sub.position(0)) % 3 == 1) {
1105                         continue;
1106                 }
1107                 else {
1108                         string key = sub.str(3);
1109                         AccentsIterator it_ac = accents.find(key);
1110                         if (it_ac == accents.end()) {
1111                                 replace = sub.str(2);
1112                         }
1113                         else {
1114                                 replace = it_ac->second;
1115                         }
1116                 }
1117                 if (lastpos < (size_t) sub.position(2))
1118                         add += addtmp.substr(lastpos, sub.position(2) - lastpos);
1119                 add += replace;
1120                 lastpos = sub.position(2) + sub.length(2);
1121         }
1122         if (lastpos == 0)
1123                 add = addtmp;
1124         LYXERR(Debug::FIND, "Adding to search string: '"
1125                         << add << "'");
1126         return add;
1127 }
1128
1129 static docstring stringifySearchBuffer(Buffer & buffer, FindAndReplaceOptions const & opt)
1130 {
1131         docstring str;
1132         if (!opt.ignoreformat) {
1133                 str = buffer_to_latex(buffer);
1134         } else {
1135                 // OutputParams runparams(&buffer.params().encoding());
1136                 OutputParams runparams(encodings.fromLyXName("utf8"));
1137                 runparams.nice = true;
1138                 runparams.flavor = Flavor::XeTeX;
1139                 runparams.linelen = 10000; //lyxrc.plaintext_linelen;
1140                 runparams.dryrun = true;
1141                 int option = AS_STR_INSETS |AS_STR_PLAINTEXT;
1142                 if (ignoreFormats.getDeleted()) {
1143                         option |= AS_STR_SKIPDELETE;
1144                         runparams.for_searchAdv = OutputParams::SearchWithoutDeleted;
1145                 }
1146                 else {
1147                         runparams.for_searchAdv = OutputParams::SearchWithDeleted;
1148                 }
1149                 if (ignoreFormats.getNonContent()) {
1150                         runparams.for_searchAdv |= OutputParams::SearchNonOutput;
1151                 }
1152                 string t("");
1153                 for (pos_type pit = pos_type(0); pit < (pos_type)buffer.paragraphs().size(); ++pit) {
1154                         Paragraph const & par = buffer.paragraphs().at(pit);
1155                         string add = latexNamesToUtf8(par.asString(pos_type(0), par.size(),
1156                                                                 option,
1157                                                                 &runparams));
1158                         LYXERR(Debug::FIND, "Adding to search string: '"
1159                                 << add << "'");
1160                         t += add;
1161                 }
1162                 // Even in ignore-format we have to remove "\text{}, \lyxmathsym{}" parts
1163                 while (regex_replace(t, t, "\\\\(text|lyxmathsym|ensuremath)\\{([^\\}]*)\\}", "$2"));
1164                 str = from_utf8(t);
1165         }
1166         return str;
1167 }
1168
1169
1170 /// Return separation pos between the leading material and the rest
1171 static size_t identifyLeading(string const & s)
1172 {
1173         string t = s;
1174         // @TODO Support \item[text]
1175         // Kornel: Added textsl, textsf, textit, texttt and noun
1176         // + allow to search for colored text too
1177         while (regex_replace(t, t, "^\\\\(("
1178                              "(author|title|subtitle|subject|publishers|dedication|uppertitleback|lowertitleback|extratitle|"
1179                                "lyxaddress|lyxrightaddress|"
1180                                "footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge|"
1181                                "emph|noun|minisec|text(bf|md|sl|sf|it|tt))|"
1182                              "((textcolor|foreignlanguage|latexenvironment)\\{[a-z]+\\*?\\})|"
1183                              "(u|uu)line|(s|x)out|uwave)|((sub)?(((sub)?section)|paragraph)|part|chapter)\\*?)\\{", "")
1184                || regex_replace(t, t, "^\\$", "")
1185                || regex_replace(t, t, "^\\\\\\[", "")
1186                || regex_replace(t, t, "^ ?\\\\item\\{[a-z]+\\}", "")
1187                || regex_replace(t, t, "^\\\\begin\\{[a-zA-Z_]*\\*?\\}", ""))
1188                ;
1189         LYXERR(Debug::FIND, "  after removing leading $, \\[ , \\emph{, \\textbf{, etc.: '" << t << "'");
1190         return s.find(t);
1191 }
1192
1193 /*
1194  * Given a latexified string, retrieve some handled features
1195  * The features of the regex will later be compared with the features
1196  * of the searched text. If the regex features are not a
1197  * subset of the analized, then, in not format ignoring search
1198  * we can early stop the search in the relevant inset.
1199  */
1200 typedef map<string, bool> Features;
1201
1202 static Features identifyFeatures(string const & s)
1203 {
1204         static regex const feature("\\\\(([a-zA-Z]+(\\{([a-z]+\\*?)\\}|\\*)?))\\{");
1205         static regex const valid("^("
1206                 "("
1207                         "(footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge|"
1208                                 "emph|noun|text(bf|md|sl|sf|it|tt)|"
1209                                 "(textcolor|foreignlanguage|item|listitem|latexenvironment)\\{[a-z]+\\*?\\})|"
1210                         "(u|uu)line|(s|x)out|uwave|"
1211                         "(sub|extra)?title|author|subject|publishers|dedication|(upper|lower)titleback|lyx(right)?address)|"
1212                 "((sub)?(((sub)?section)|paragraph)|part|chapter|lyxslide)\\*?)$");
1213         smatch sub;
1214         bool displ = true;
1215         Features info;
1216
1217         for (sregex_iterator it(s.begin(), s.end(), feature), end; it != end; ++it) {
1218                 sub = *it;
1219                 if (displ) {
1220                         if (sub.str(1).compare("regexp") == 0) {
1221                                 displ = false;
1222                                 continue;
1223                         }
1224                         string token = sub.str(1);
1225                         smatch sub2;
1226                         if (regex_match(token, sub2, valid)) {
1227                                 info[token] = true;
1228                         }
1229                         else {
1230                                 // ignore
1231                         }
1232                 }
1233                 else {
1234                         if (sub.str(1).compare("endregexp") == 0) {
1235                                 displ = true;
1236                                 continue;
1237                         }
1238                 }
1239         }
1240         return info;
1241 }
1242
1243 /*
1244  * defines values features of a key "\\[a-z]+{"
1245  */
1246 class KeyInfo {
1247  public:
1248   enum KeyType {
1249     /* Char type with content discarded
1250      * like \hspace{1cm} */
1251     noContent,
1252     /* Char, like \backslash */
1253     isChar,
1254     /* replace starting backslash with '#' */
1255     isText,
1256     /* \part, \section*, ... */
1257     isSectioning,
1258     /* title, author etc */
1259     isTitle,
1260     /* \foreignlanguage{ngerman}, ... */
1261     isMain,
1262     /* inside \code{}
1263      * to discard language in content */
1264     noMain,
1265     isRegex,
1266     /* \begin{eqnarray}...\end{eqnarray}, ... $...$ */
1267     isMath,
1268     /* fonts, colors, markups, ... */
1269     isStandard,
1270     /* footnotesize, ... large, ...
1271      * Ignore all of them */
1272     isSize,
1273     invalid,
1274     /* inputencoding, ...
1275      * Discard also content, because they do not help in search */
1276     doRemove,
1277     /* twocolumns, ...
1278      * like remove, but also all arguments */
1279     removeWithArg,
1280     /* item, listitem */
1281     isList,
1282     /* tex, latex, ... like isChar */
1283     isIgnored,
1284     /* like \lettrine[lines=5]{}{} */
1285     cleanToStart,
1286     // like isStandard, but always remove head
1287     headRemove,
1288     /* End of arguments marker for lettrine,
1289      * so that they can be ignored */
1290     endArguments
1291   };
1292  KeyInfo() = default;
1293  KeyInfo(KeyType type, int parcount, bool disable)
1294    : keytype(type),
1295     parenthesiscount(parcount),
1296     disabled(disable) {}
1297   KeyType keytype = invalid;
1298   string head;
1299   int _tokensize = -1;
1300   int _tokenstart = -1;
1301   int _dataStart = -1;
1302   int _dataEnd = -1;
1303   int parenthesiscount = 1;
1304   bool disabled = false;
1305   bool used = false;                    /* by pattern */
1306 };
1307
1308 class Border {
1309  public:
1310  Border(int l=0, int u=0) : low(l), upper(u) {}
1311   int low;
1312   int upper;
1313 };
1314
1315 #define MAXOPENED 30
1316 class Intervall {
1317   bool isPatternString_;
1318 public:
1319   explicit Intervall(bool isPattern, string const & p) :
1320         isPatternString_(isPattern), par(p), ignoreidx(-1), actualdeptindex(0),
1321         hasTitle(false), langcount(0)
1322   {
1323     depts[0] = 0;
1324     closes[0] = 0;
1325   }
1326
1327   string par;
1328   int ignoreidx;
1329   static vector<Border> borders;
1330   int depts[MAXOPENED];
1331   int closes[MAXOPENED];
1332   int actualdeptindex;
1333   int previousNotIgnored(int) const;
1334   int nextNotIgnored(int) const;
1335   void handleOpenP(int i);
1336   void handleCloseP(int i, bool closingAllowed);
1337   void resetOpenedP(int openPos);
1338   void addIntervall(int upper);
1339   void addIntervall(int low, int upper); /* if explicit */
1340   void removeAccents();
1341   void setForDefaultLang(KeyInfo const & defLang) const;
1342   int findclosing(int start, int end, char up, char down, int repeat);
1343   void handleParentheses(int lastpos, bool closingAllowed);
1344   bool hasTitle;
1345   int langcount;        // Number of disabled language specs up to current position in actual interval
1346   int isOpeningPar(int pos) const;
1347   string titleValue;
1348   void output(ostringstream &os, int lastpos);
1349   // string show(int lastpos);
1350 };
1351
1352 vector<Border> Intervall::borders = vector<Border>(30);
1353
1354 int Intervall::isOpeningPar(int pos) const
1355 {
1356   if ((pos < 0) || (size_t(pos) >= par.size()))
1357     return 0;
1358   if (par[pos] != '{')
1359     return 0;
1360   if (size_t(pos) + 2 >= par.size())
1361     return 1;
1362   if (par[pos+2] != '}')
1363     return 1;
1364   if (par[pos+1] == '[' || par[pos+1] == ']')
1365     return 3;
1366   return 1;
1367 }
1368
1369 void Intervall::setForDefaultLang(KeyInfo const & defLang) const
1370 {
1371   // Enable the use of first token again
1372   if (ignoreidx >= 0) {
1373     int value = defLang._tokenstart + defLang._tokensize;
1374     int borderidx = 0;
1375     if (hasTitle) {
1376       borderidx = 1;
1377     }
1378     if (value > 0) {
1379       if (borders[borderidx].low < value)
1380         borders[borderidx].low = value;
1381       if (borders[borderidx].upper < value)
1382         borders[borderidx].upper = value;
1383     }
1384   }
1385 }
1386
1387 static void checkDepthIndex(int val)
1388 {
1389   static int maxdepthidx = MAXOPENED-2;
1390   static int lastmaxdepth = 0;
1391   if (val > lastmaxdepth) {
1392     LYXERR(Debug::INFO, "Depth reached " << val);
1393     lastmaxdepth = val;
1394   }
1395   if (val > maxdepthidx) {
1396     maxdepthidx = val;
1397     LYXERR(Debug::INFO, "maxdepthidx now " << val);
1398   }
1399 }
1400
1401 #if 0
1402 // Not needed, because borders are now dynamically expanded
1403 static void checkIgnoreIdx(int val)
1404 {
1405   static int lastmaxignore = -1;
1406   if ((lastmaxignore < val) && (size_t(val+1) >= borders.size())) {
1407     LYXERR(Debug::INFO, "IgnoreIdx reached " << val);
1408     lastmaxignore = val;
1409   }
1410 }
1411 #endif
1412
1413 /*
1414  * Expand the region of ignored parts of the input latex string
1415  * The region is only relevant in output()
1416  */
1417 void Intervall::addIntervall(int low, int upper)
1418 {
1419   int idx;
1420   if (low == upper) return;
1421   for (idx = ignoreidx+1; idx > 0; --idx) {
1422     if (low > borders[idx-1].upper) {
1423       break;
1424     }
1425   }
1426   Border br(low, upper);
1427   if (idx > ignoreidx) {
1428     if (borders.size() <= size_t(idx)) {
1429       borders.push_back(br);
1430     }
1431     else {
1432       borders[idx] = br;
1433     }
1434     ignoreidx = idx;
1435     // checkIgnoreIdx(ignoreidx);
1436     return;
1437   }
1438   else {
1439     // Expand only if one of the new bound is inside the interwall
1440     // We know here that br.low > borders[idx-1].upper
1441     if (br.upper < borders[idx].low) {
1442       // We have to insert at this pos
1443       if (size_t(ignoreidx+1) >= borders.size()) {
1444         borders.push_back(borders[ignoreidx]);
1445       }
1446       else {
1447         borders[ignoreidx+1] = borders[ignoreidx];
1448       }
1449       for (int i = ignoreidx; i > idx; --i) {
1450         borders[i] = borders[i-1];
1451       }
1452       borders[idx] = br;
1453       ignoreidx += 1;
1454       // checkIgnoreIdx(ignoreidx);
1455       return;
1456     }
1457     // Here we know, that we are overlapping
1458     if (br.low > borders[idx].low)
1459       br.low = borders[idx].low;
1460     // check what has to be concatenated
1461     int count = 0;
1462     for (int i = idx; i <= ignoreidx; i++) {
1463       if (br.upper >= borders[i].low) {
1464         count++;
1465         if (br.upper < borders[i].upper)
1466           br.upper = borders[i].upper;
1467       }
1468       else {
1469         break;
1470       }
1471     }
1472     // count should be >= 1 here
1473     borders[idx] = br;
1474     if (count > 1) {
1475       for (int i = idx + count; i <= ignoreidx; i++) {
1476         borders[i-count+1] = borders[i];
1477       }
1478       ignoreidx -= count - 1;
1479       return;
1480     }
1481   }
1482 }
1483
1484 static void buildaccent(string n, string param, string values)
1485 {
1486   stringstream s(n);
1487   string name;
1488   const char delim = '|';
1489   while (getline(s, name, delim)) {
1490     size_t start = 0;
1491     for (char c : param) {
1492       string key = name + "{" + c + "}";
1493       // get the corresponding utf8-value
1494       if ((values[start] & 0xc0) != 0xc0) {
1495         // should not happen, utf8 encoding starts at least with 11xxxxxx
1496         // but value for '\dot{i}' is 'i', which is ascii
1497         if ((values[start] & 0x80) == 0) {
1498           // is ascii
1499           accents[key] = values.substr(start, 1);
1500           // LYXERR(Debug::INFO, "" << key << "=" << accents[key]);
1501         }
1502         start++;
1503         continue;
1504       }
1505       for (int j = 1; ;j++) {
1506         if (start + j >= values.size()) {
1507           accents[key] = values.substr(start, j);
1508           start = values.size() - 1;
1509           break;
1510         }
1511         else if ((values[start+j] & 0xc0) != 0x80) {
1512           // This is the first byte of following utf8 char
1513           accents[key] = values.substr(start, j);
1514           start += j;
1515           // LYXERR(Debug::INFO, "" << key << "=" << accents[key]);
1516           break;
1517         }
1518       }
1519     }
1520   }
1521 }
1522
1523 // Helper function
1524 static string getutf8(unsigned uchar)
1525 {
1526         #define maxc 5
1527         string ret = string();
1528         char c[maxc] = {0};
1529         if (uchar <= 0x7f) {
1530                 c[maxc-1] = uchar & 0x7f;
1531         }
1532         else {
1533                 unsigned char rest = 0x40;
1534                 unsigned char first = 0x80;
1535                 int start = maxc-1;
1536                 for (int i = start; i >=0; --i) {
1537                         if (uchar < rest) {
1538                                 c[i] = first + uchar;
1539                                 break;
1540                         }
1541                         c[i] = 0x80 | (uchar &  0x3f);
1542                         uchar >>= 6;
1543                         rest >>= 1;
1544                         first >>= 1;
1545                         first |= 0x80;
1546                 }
1547         }
1548         for (int i = 0; i < maxc; i++) {
1549                 if (c[i] == 0) continue;
1550                 ret += c[i];
1551         }
1552         return(ret);
1553 }
1554
1555 static void addAccents(string latex_in, string unicode_out)
1556 {
1557   latex_in = latex_in.substr(1);
1558   AccentsIterator it_ac = accents.find(latex_in);
1559   if (it_ac == accents.end()) {
1560     accents[latex_in] = unicode_out;
1561   }
1562   else {
1563     LYXERR0("Key " << latex_in  << " already set");
1564   }
1565 }
1566
1567 void static fillMissingUnicodesymbols()
1568 {
1569   addAccents("\\pounds", getutf8(0x00a3));
1570   addAccents("\\textsterling", getutf8(0x00a3));
1571   addAccents("\\textyen", getutf8(0x00a5));
1572   addAccents("\\yen", getutf8(0x00a5));
1573   addAccents("\\textsection", getutf8(0x00a7));
1574   addAccents("\\mathsection", getutf8(0x00a7));
1575   addAccents("\\textcopyright", getutf8(0x00a9));
1576   addAccents("\\copyright", getutf8(0x00a9));
1577   addAccents("\\textlnot", getutf8(0x00ac));
1578   addAccents("\\neg", getutf8(0x00ac));
1579   addAccents("\\textregistered", getutf8(0x00ae));
1580   addAccents("\\circledR", getutf8(0x00ae));
1581   addAccents("\\textpm", getutf8(0x00b1));
1582   addAccents("\\pm", getutf8(0x00b1));
1583   addAccents("\\textparagraph", getutf8(0x00b6));
1584   addAccents("\\mathparagraph", getutf8(0x00b6));
1585   addAccents("\\textperiodcentered", getutf8(0x00b7));
1586   addAccents("\\texttimes", getutf8(0x00d7));
1587   addAccents("\\times", getutf8(0x00d7));
1588   addAccents("\\O", getutf8(0x00d8));
1589   addAccents("\\dh", getutf8(0x00f0));
1590   addAccents("\\eth", getutf8(0x00f0));
1591   addAccents("\\textdiv", getutf8(0x00f7));
1592   addAccents("\\div", getutf8(0x00f7));
1593   addAccents("\\o", getutf8(0x00f8));
1594   addAccents("\\textcrlambda", getutf8(0x019b));
1595   addAccents("\\j", getutf8(0x0237));
1596   addAccents("\\textrevepsilon", getutf8(0x025c));
1597   addAccents("\\textbaru", getutf8(0x0289));
1598   addAccents("\\textquoteleft", getutf8(0x02bb));
1599   addAccents("\\textGamma", getutf8(0x0393));
1600   addAccents("\\Gamma", getutf8(0x0393));
1601   addAccents("\\textDelta", getutf8(0x0394));
1602   addAccents("\\Delta", getutf8(0x0394));
1603   addAccents("\\textTheta", getutf8(0x0398));
1604   addAccents("\\Theta", getutf8(0x0398));
1605   addAccents("\\textLambda", getutf8(0x039b));
1606   addAccents("\\Lambda", getutf8(0x039b));
1607   addAccents("\\textXi", getutf8(0x039e));
1608   addAccents("\\Xi", getutf8(0x039e));
1609   addAccents("\\textPi", getutf8(0x03a0));
1610   addAccents("\\Pi", getutf8(0x03a0));
1611   addAccents("\\textSigma", getutf8(0x03a3));
1612   addAccents("\\Sigma", getutf8(0x03a3));
1613   addAccents("\\textUpsilon", getutf8(0x03a5));
1614   addAccents("\\Upsilon", getutf8(0x03a5));
1615   addAccents("\\textPhi", getutf8(0x03a6));
1616   addAccents("\\Phi", getutf8(0x03a6));
1617   addAccents("\\textPsi", getutf8(0x03a8));
1618   addAccents("\\Psi", getutf8(0x03a8));
1619   addAccents("\\textOmega", getutf8(0x03a9));
1620   addAccents("\\Omega", getutf8(0x03a9));
1621   addAccents("\\textalpha", getutf8(0x03b1));
1622   addAccents("\\alpha", getutf8(0x03b1));
1623   addAccents("\\textbeta", getutf8(0x03b2));
1624   addAccents("\\beta", getutf8(0x03b2));
1625   addAccents("\\textgamma", getutf8(0x03b3));
1626   addAccents("\\gamma", getutf8(0x03b3));
1627   addAccents("\\textdelta", getutf8(0x03b4));
1628   addAccents("\\delta", getutf8(0x03b4));
1629   addAccents("\\textepsilon", getutf8(0x03b5));
1630   addAccents("\\varepsilon", getutf8(0x03b5));
1631   addAccents("\\textzeta", getutf8(0x03b6));
1632   addAccents("\\zeta", getutf8(0x03b6));
1633   addAccents("\\texteta", getutf8(0x03b7));
1634   addAccents("\\eta", getutf8(0x03b7));
1635   addAccents("\\texttheta", getutf8(0x03b8));
1636   addAccents("\\theta", getutf8(0x03b8));
1637   addAccents("\\textiota", getutf8(0x03b9));
1638   addAccents("\\iota", getutf8(0x03b9));
1639   addAccents("\\textkappa", getutf8(0x03ba));
1640   addAccents("\\kappa", getutf8(0x03ba));
1641   addAccents("\\textlambda", getutf8(0x03bb));
1642   addAccents("\\lambda", getutf8(0x03bb));
1643   addAccents("\\textmu", getutf8(0x03bc));
1644   addAccents("\\mu", getutf8(0x03bc));
1645   addAccents("\\textnu", getutf8(0x03bd));
1646   addAccents("\\nu", getutf8(0x03bd));
1647   addAccents("\\textxi", getutf8(0x03be));
1648   addAccents("\\xi", getutf8(0x03be));
1649   addAccents("\\textpi", getutf8(0x03c0));
1650   addAccents("\\pi", getutf8(0x03c0));
1651   addAccents("\\textrho", getutf8(0x03c1));
1652   addAccents("\\rho", getutf8(0x03c1));
1653   addAccents("\\textfinalsigma", getutf8(0x03c2));
1654   addAccents("\\varsigma", getutf8(0x03c2));
1655   addAccents("\\textsigma", getutf8(0x03c3));
1656   addAccents("\\sigma", getutf8(0x03c3));
1657   addAccents("\\texttau", getutf8(0x03c4));
1658   addAccents("\\tau", getutf8(0x03c4));
1659   addAccents("\\textupsilon", getutf8(0x03c5));
1660   addAccents("\\upsilon", getutf8(0x03c5));
1661   addAccents("\\textphi", getutf8(0x03c6));
1662   addAccents("\\varphi", getutf8(0x03c6));
1663   addAccents("\\textchi", getutf8(0x03c7));
1664   addAccents("\\chi", getutf8(0x03c7));
1665   addAccents("\\textpsi", getutf8(0x03c8));
1666   addAccents("\\psi", getutf8(0x03c8));
1667   addAccents("\\textomega", getutf8(0x03c9));
1668   addAccents("\\omega", getutf8(0x03c9));
1669   addAccents("\\textdigamma", getutf8(0x03dd));
1670   addAccents("\\digamma", getutf8(0x03dd));
1671   addAccents("\\hebalef", getutf8(0x05d0));
1672   addAccents("\\aleph", getutf8(0x05d0));
1673   addAccents("\\hebbet", getutf8(0x05d1));
1674   addAccents("\\beth", getutf8(0x05d1));
1675   addAccents("\\hebgimel", getutf8(0x05d2));
1676   addAccents("\\gimel", getutf8(0x05d2));
1677   addAccents("\\hebdalet", getutf8(0x05d3));
1678   addAccents("\\daleth", getutf8(0x05d3));
1679   addAccents("\\hebhe", getutf8(0x05d4));
1680   addAccents("\\hebvav", getutf8(0x05d5));
1681   addAccents("\\hebzayin", getutf8(0x05d6));
1682   addAccents("\\hebhet", getutf8(0x05d7));
1683   addAccents("\\hebtet", getutf8(0x05d8));
1684   addAccents("\\hebyod", getutf8(0x05d9));
1685   addAccents("\\hebfinalkaf", getutf8(0x05da));
1686   addAccents("\\hebkaf", getutf8(0x05db));
1687   addAccents("\\heblamed", getutf8(0x05dc));
1688   addAccents("\\hebfinalmem", getutf8(0x05dd));
1689   addAccents("\\hebmem", getutf8(0x05de));
1690   addAccents("\\hebfinalnun", getutf8(0x05df));
1691   addAccents("\\hebnun", getutf8(0x05e0));
1692   addAccents("\\hebsamekh", getutf8(0x05e1));
1693   addAccents("\\hebayin", getutf8(0x05e2));
1694   addAccents("\\hebfinalpe", getutf8(0x05e3));
1695   addAccents("\\hebpe", getutf8(0x05e4));
1696   addAccents("\\hebfinaltsadi", getutf8(0x05e5));
1697   addAccents("\\hebtsadi", getutf8(0x05e6));
1698   addAccents("\\hebqof", getutf8(0x05e7));
1699   addAccents("\\hebresh", getutf8(0x05e8));
1700   addAccents("\\hebshin", getutf8(0x05e9));
1701   addAccents("\\hebtav", getutf8(0x05ea));
1702
1703   // Thai characters
1704   addAccents("\\thaiKoKai", getutf8(0x0e01));
1705   addAccents("\\thaiKhoKhai", getutf8(0x0e02));
1706   addAccents("\\thaiKhoKhuat", getutf8(0x0e03));
1707   addAccents("\\thaiKhoKhwai", getutf8(0x0e04));
1708   addAccents("\\thaiKhoKhon", getutf8(0x0e05));
1709   addAccents("\\thaiKhoRakhang", getutf8(0x0e06));
1710   addAccents("\\thaiNgoNgu", getutf8(0x0e07));
1711   addAccents("\\thaiChoChan", getutf8(0x0e08));
1712   addAccents("\\thaiChoChing", getutf8(0x0e09));
1713   addAccents("\\thaiChoChang", getutf8(0x0e0a));
1714   addAccents("\\thaiSoSo", getutf8(0x0e0b));
1715   addAccents("\\thaiChoChoe", getutf8(0x0e0c));
1716   addAccents("\\thaiYoYing", getutf8(0x0e0d));
1717   addAccents("\\thaiDoChada", getutf8(0x0e0e));
1718   addAccents("\\thaiToPatak", getutf8(0x0e0f));
1719   addAccents("\\thaiThoThan", getutf8(0x0e10));
1720   addAccents("\\thaiThoNangmontho", getutf8(0x0e11));
1721   addAccents("\\thaiThoPhuthao", getutf8(0x0e12));
1722   addAccents("\\thaiNoNen", getutf8(0x0e13));
1723   addAccents("\\thaiDoDek", getutf8(0x0e14));
1724   addAccents("\\thaiToTao", getutf8(0x0e15));
1725   addAccents("\\thaiThoThung", getutf8(0x0e16));
1726   addAccents("\\thaiThoThahan", getutf8(0x0e17));
1727   addAccents("\\thaiThoThong", getutf8(0x0e18));
1728   addAccents("\\thaiNoNu", getutf8(0x0e19));
1729   addAccents("\\thaiBoBaimai", getutf8(0x0e1a));
1730   addAccents("\\thaiPoPla", getutf8(0x0e1b));
1731   addAccents("\\thaiPhoPhung", getutf8(0x0e1c));
1732   addAccents("\\thaiFoFa", getutf8(0x0e1d));
1733   addAccents("\\thaiPhoPhan", getutf8(0x0e1e));
1734   addAccents("\\thaiFoFan", getutf8(0x0e1f));
1735   addAccents("\\thaiPhoSamphao", getutf8(0x0e20));
1736   addAccents("\\thaiMoMa", getutf8(0x0e21));
1737   addAccents("\\thaiYoYak", getutf8(0x0e22));
1738   addAccents("\\thaiRoRua", getutf8(0x0e23));
1739   addAccents("\\thaiRu", getutf8(0x0e24));
1740   addAccents("\\thaiLoLing", getutf8(0x0e25));
1741   addAccents("\\thaiLu", getutf8(0x0e26));
1742   addAccents("\\thaiWoWaen", getutf8(0x0e27));
1743   addAccents("\\thaiSoSala", getutf8(0x0e28));
1744   addAccents("\\thaiSoRusi", getutf8(0x0e29));
1745   addAccents("\\thaiSoSua", getutf8(0x0e2a));
1746   addAccents("\\thaiHoHip", getutf8(0x0e2b));
1747   addAccents("\\thaiLoChula", getutf8(0x0e2c));
1748   addAccents("\\thaiOAng", getutf8(0x0e2d));
1749   addAccents("\\thaiHoNokhuk", getutf8(0x0e2e));
1750   addAccents("\\thaiPaiyannoi", getutf8(0x0e2f));
1751   addAccents("\\thaiSaraA", getutf8(0x0e30));
1752   addAccents("\\thaiMaiHanakat", getutf8(0x0e31));
1753   addAccents("\\thaiSaraAa", getutf8(0x0e32));
1754   addAccents("\\thaiSaraAm", getutf8(0x0e33));
1755   addAccents("\\thaiSaraI", getutf8(0x0e34));
1756   addAccents("\\thaiSaraIi", getutf8(0x0e35));
1757   addAccents("\\thaiSaraUe", getutf8(0x0e36));
1758   addAccents("\\thaiSaraUee", getutf8(0x0e37));
1759   addAccents("\\thaiSaraU", getutf8(0x0e38));
1760   addAccents("\\thaiSaraUu", getutf8(0x0e39));
1761   addAccents("\\thaiPhinthu", getutf8(0x0e3a));
1762   addAccents("\\thaiSaraE", getutf8(0x0e40));
1763   addAccents("\\thaiSaraAe", getutf8(0x0e41));
1764   addAccents("\\thaiSaraO", getutf8(0x0e42));
1765   addAccents("\\thaiSaraAiMaimuan", getutf8(0x0e43));
1766   addAccents("\\thaiSaraAiMaimalai", getutf8(0x0e44));
1767   addAccents("\\thaiLakkhangyao", getutf8(0x0e45));
1768   addAccents("\\thaiMaiyamok", getutf8(0x0e46));
1769   addAccents("\\thaiMaitaikhu", getutf8(0x0e47));
1770   addAccents("\\thaiMaiEk", getutf8(0x0e48));
1771   addAccents("\\thaiMaiTho", getutf8(0x0e49));
1772   addAccents("\\thaiMaiTri", getutf8(0x0e4a));
1773   addAccents("\\thaiMaiChattawa", getutf8(0x0e4b));
1774   addAccents("\\thaiThanthakhat", getutf8(0x0e4c));
1775   addAccents("\\thaiNikhahit", getutf8(0x0e4d));
1776   addAccents("\\thaiYamakkan", getutf8(0x0e4e));
1777   addAccents("\\thaiFongman", getutf8(0x0e4f));
1778   addAccents("\\thaizero", getutf8(0x0e50));
1779   addAccents("\\thaione", getutf8(0x0e51));
1780   addAccents("\\thaitwo", getutf8(0x0e52));
1781   addAccents("\\thaithree", getutf8(0x0e53));
1782   addAccents("\\thaifour", getutf8(0x0e54));
1783   addAccents("\\thaifive", getutf8(0x0e55));
1784   addAccents("\\thaisix", getutf8(0x0e56));
1785   addAccents("\\thaiseven", getutf8(0x0e57));
1786   addAccents("\\thaieight", getutf8(0x0e58));
1787   addAccents("\\thainine", getutf8(0x0e59));
1788   addAccents("\\thaiAngkhankhu", getutf8(0x0e5a));
1789   addAccents("\\thaiKhomut", getutf8(0x0e5b));
1790   addAccents("\\dag", getutf8(0x2020));
1791   addAccents("\\dagger", getutf8(0x2020));
1792   addAccents("\\textdagger", getutf8(0x2020));
1793   addAccents("\\ddag", getutf8(0x2021));
1794   addAccents("\\ddagger", getutf8(0x2021));
1795   addAccents("\\textdaggerdbl", getutf8(0x2021));
1796   addAccents("\\textbullet", getutf8(0x2022));
1797   addAccents("\\bullet", getutf8(0x2022));
1798   addAccents("\\dots", getutf8(0x2026));
1799   addAccents("\\ldots", getutf8(0x2026));
1800   addAccents("\\textellipsis", getutf8(0x2026));
1801   addAccents("\\textasciiacute", getutf8(0x2032));
1802   addAccents("\\prime", getutf8(0x2032));
1803   addAccents("\\textacutedbl", getutf8(0x2033));
1804   addAccents("\\dprime", getutf8(0x2033));
1805   addAccents("\\textasciigrave", getutf8(0x2035));
1806   addAccents("\\backprime", getutf8(0x2035));
1807   addAccents("\\textsubcircum{ }", getutf8(0x2038));
1808   addAccents("\\caretinsert", getutf8(0x2038));
1809   addAccents("\\textasteriskcentered", getutf8(0x204e));
1810   addAccents("\\ast", getutf8(0x204e));
1811   addAccents("\\textmho", getutf8(0x2127));
1812   addAccents("\\mho", getutf8(0x2127));
1813   addAccents("\\textleftarrow", getutf8(0x2190));
1814   addAccents("\\leftarrow", getutf8(0x2190));
1815   addAccents("\\textuparrow", getutf8(0x2191));
1816   addAccents("\\uparrow", getutf8(0x2191));
1817   addAccents("\\textrightarrow", getutf8(0x2192));
1818   addAccents("\\rightarrow", getutf8(0x2192));
1819   addAccents("\\textdownarrow", getutf8(0x2193));
1820   addAccents("\\downarrow", getutf8(0x2193));
1821   addAccents("\\textglobrise", getutf8(0x2197));
1822   addAccents("\\nearrow", getutf8(0x2197));
1823   addAccents("\\textglobfall", getutf8(0x2198));
1824   addAccents("\\searrow", getutf8(0x2198));
1825   addAccents("\\textsurd", getutf8(0x221a));
1826   addAccents("\\surd", getutf8(0x221a));
1827   addAccents("\\textbigcircle", getutf8(0x25ef));
1828   addAccents("\\bigcirc", getutf8(0x25ef));
1829   addAccents("\\FiveStar", getutf8(0x2605));
1830   addAccents("\\bigstar", getutf8(0x2605));
1831   addAccents("\\FiveStarOpen", getutf8(0x2606));
1832   addAccents("\\bigwhitestar", getutf8(0x2606));
1833   addAccents("\\Checkmark", getutf8(0x2713));
1834   addAccents("\\checkmark", getutf8(0x2713));
1835   addAccents("\\CrossMaltese", getutf8(0x2720));
1836   addAccents("\\maltese", getutf8(0x2720));
1837   addAccents("\\textlangle", getutf8(0x27e8));
1838   addAccents("\\langle", getutf8(0x27e8));
1839   addAccents("\\textrangle", getutf8(0x27e9));
1840   addAccents("\\rangle", getutf8(0x27e9));
1841 }
1842
1843 static void buildAccentsMap()
1844 {
1845   accents["imath"] = "ı";
1846   accents["i"] = "ı";
1847   accents["jmath"] = "ȷ";
1848   accents["cdot"] = "·";
1849   accents["textasciicircum"] = "^";
1850   accents["mathcircumflex"] = "^";
1851   accents["sim"] = "~";
1852   accents["guillemotright"] = "»";
1853   accents["guillemotleft"] = "«";
1854   accents["hairspace"]     = getutf8(0xf0000);  // select from free unicode plane 15
1855   accents["thinspace"]     = getutf8(0xf0002);  // and used _only_ by findadv
1856   accents["negthinspace"]  = getutf8(0xf0003);  // to omit backslashed latex macros
1857   accents["medspace"]      = getutf8(0xf0004);  // See https://en.wikipedia.org/wiki/Private_Use_Areas
1858   accents["negmedspace"]   = getutf8(0xf0005);
1859   accents["thickspace"]    = getutf8(0xf0006);
1860   accents["negthickspace"] = getutf8(0xf0007);
1861   accents["lyx"]           = getutf8(0xf0010);  // Used logos
1862   accents["LyX"]           = getutf8(0xf0010);
1863   accents["tex"]           = getutf8(0xf0011);
1864   accents["TeX"]           = getutf8(0xf0011);
1865   accents["latex"]         = getutf8(0xf0012);
1866   accents["LaTeX"]         = getutf8(0xf0012);
1867   accents["latexe"]        = getutf8(0xf0013);
1868   accents["LaTeXe"]        = getutf8(0xf0013);
1869   accents["lyxarrow"]      = getutf8(0xf0020);
1870   accents["braceleft"]     = getutf8(0xf0030);
1871   accents["braceright"]    = getutf8(0xf0031);
1872   accents["backslash lyx"]           = getutf8(0xf0010);        // Used logos inserted with starting \backslash
1873   accents["backslash LyX"]           = getutf8(0xf0010);
1874   accents["backslash tex"]           = getutf8(0xf0011);
1875   accents["backslash TeX"]           = getutf8(0xf0011);
1876   accents["backslash latex"]         = getutf8(0xf0012);
1877   accents["backslash LaTeX"]         = getutf8(0xf0012);
1878   accents["backslash latexe"]        = getutf8(0xf0013);
1879   accents["backslash LaTeXe"]        = getutf8(0xf0013);
1880   accents["backslash lyxarrow"]      = getutf8(0xf0020);
1881   accents["ddot{\\imath}"] = "ï";
1882   buildaccent("ddot", "aAeEhHiIoOtuUwWxXyY",
1883                       "äÄëËḧḦïÏöÖẗüÜẅẄẍẌÿŸ"); // umlaut
1884   buildaccent("dot|.", "aAbBcCdDeEfFGghHIimMnNoOpPrRsStTwWxXyYzZ",
1885                        "ȧȦḃḂċĊḋḊėĖḟḞĠġḣḢİİṁṀṅṄȯȮṗṖṙṘṡṠṫṪẇẆẋẊẏẎżŻ");   // dot{i} can only happen if ignoring case, but there is no lowercase of 'İ'
1886   accents["acute{\\imath}"] = "í";
1887   buildaccent("acute", "aAcCeEgGkKlLmMoOnNpPrRsSuUwWyYzZiI",
1888                        "áÁćĆéÉǵǴḱḰĺĹḿḾóÓńŃṕṔŕŔśŚúÚẃẂýÝźŹíÍ");
1889   buildaccent("dacute|H|h", "oOuU", "őŐűŰ");        // double acute
1890   buildaccent("mathring|r", "aAuUwy",
1891                             "åÅůŮẘẙ");  // ring
1892   accents["check{\\imath}"] = "ǐ";
1893   accents["check{\\jmath}"] = "ǰ";
1894   buildaccent("check|v", "cCdDaAeEiIoOuUgGkKhHlLnNrRsSTtzZ",
1895                          "čČďĎǎǍěĚǐǏǒǑǔǓǧǦǩǨȟȞľĽňŇřŘšŠŤťžŽ");   // caron
1896   accents["hat{\\imath}"] = "î";
1897   accents["hat{\\jmath}"] = "ĵ";
1898   buildaccent("hat|^", "aAcCeEgGhHiIjJoOsSuUwWyYzZ",
1899                        "âÂĉĈêÊĝĜĥĤîÎĵĴôÔŝŜûÛŵŴŷŶẑẐ");       // circ
1900   accents["bar{\\imath}"] = "ī";
1901   buildaccent("bar|=", "aAeEiIoOuUyY",
1902                        "āĀēĒīĪōŌūŪȳȲ");     // macron
1903   accents["tilde{\\imath}"] = "ĩ";
1904   buildaccent("tilde", "aAeEiInNoOuUvVyY",
1905                        "ãÃẽẼĩĨñÑõÕũŨṽṼỹỸ");       // tilde
1906   accents["breve{\\imath}"] = "ĭ";
1907   buildaccent("breve|u", "aAeEgGiIoOuU",
1908                          "ăĂĕĔğĞĭĬŏŎŭŬ");   // breve
1909   accents["grave{\\imath}"] = "ì";
1910   buildaccent("grave|`", "aAeEiIoOuUnNwWyY",
1911                          "àÀèÈìÌòÒùÙǹǸẁẀỳỲ");       // grave
1912   buildaccent("subdot|d", "BbDdHhKkLlMmNnRrSsTtVvWwZzAaEeIiOoUuYy",
1913                           "ḄḅḌḍḤḥḲḳḶḷṂṃṆṇṚṛṢṣṬṭṾṿẈẉẒẓẠạẸẹỊịỌọỤụỴỵ");        // dot below
1914   buildaccent("ogonek|k", "AaEeIiUuOo",
1915                           "ĄąĘęĮįŲųǪǫ");      // ogonek
1916   buildaccent("cedilla|c", "CcGgKkLlNnRrSsTtEeDdHh",
1917                            "ÇçĢģĶķĻļŅņŖŗŞşŢţȨȩḐḑḨḩ"); // cedilla
1918   buildaccent("subring|textsubring", "Aa",
1919                                      "Ḁḁ"); // subring
1920   buildaccent("subhat|textsubcircum", "DdEeLlNnTtUu",
1921                                       "ḒḓḘḙḼḽṊṋṰṱṶṷ");  // subcircum
1922   buildaccent("subtilde|textsubtilde", "EeIiUu",
1923                                        "ḚḛḬḭṴṵ");   // subtilde
1924   accents["dgrave{\\imath}"] = "ȉ";
1925   accents["textdoublegrave{\\i}"] = "ȉ";
1926   buildaccent("dgrave|textdoublegrave", "AaEeIiOoRrUu",
1927                                         "ȀȁȄȅȈȉȌȍȐȑȔȕ"); // double grave
1928   accents["rcap{\\imath}"] = "ȋ";
1929   accents["textroundcap{\\i}"] = "ȋ";
1930   buildaccent("rcap|textroundcap", "AaEeIiOoRrUu",
1931                                    "ȂȃȆȇȊȋȎȏȒȓȖȗ"); // inverted breve
1932   buildaccent("slashed", "oO",
1933                          "øØ"); // slashed
1934   fillMissingUnicodesymbols(); // Add some still not handled entries contained in 'unicodesynbols'
1935   // LYXERR0("Number of accents " << accents.size());
1936 }
1937
1938 /*
1939  * Created accents in math or regexp environment
1940  * are macros, but we need the utf8 equivalent
1941  */
1942 void Intervall::removeAccents()
1943 {
1944   if (accents.empty())
1945     buildAccentsMap();
1946   static regex const accre("\\\\(([\\S]|grave|breve|ddot|dot|acute|dacute|mathring|check|hat|bar|tilde|subdot|ogonek|"
1947          "cedilla|subring|textsubring|subhat|textsubcircum|subtilde|textsubtilde|dgrave|textdoublegrave|rcap|textroundcap|slashed)\\{[^\\{\\}]+\\}"
1948       "|((i|imath|jmath|cdot|[a-z]+(space)?)|((backslash )?([lL]y[xX]|[tT]e[xX]|[lL]a[tT]e[xX]e?|lyxarrow))|(textquote|brace|guillemot)(left|right)|textasciicircum|mathcircumflex|sim)(?![a-zA-Z]))");
1949   smatch sub;
1950   for (sregex_iterator itacc(par.begin(), par.end(), accre), end; itacc != end; ++itacc) {
1951     sub = *itacc;
1952     string key = sub.str(1);
1953     AccentsIterator it_ac = accents.find(key);
1954     if (it_ac != accents.end()) {
1955       string val = it_ac->second;
1956       size_t pos = sub.position(size_t(0));
1957       for (size_t i = 0; i < val.size(); i++) {
1958         par[pos+i] = val[i];
1959       }
1960       // Remove possibly following space too
1961       if (par[pos+sub.str(0).size()] == ' ')
1962         addIntervall(pos+val.size(), pos + sub.str(0).size()+1);
1963       else
1964         addIntervall(pos+val.size(), pos + sub.str(0).size());
1965       for (size_t i = pos+val.size(); i < pos + sub.str(0).size(); i++) {
1966         // remove traces of any remaining chars
1967         par[i] = ' ';
1968       }
1969     }
1970     else {
1971       LYXERR(Debug::INFO, "Not added accent for \"" << key << "\"");
1972     }
1973   }
1974 }
1975
1976 void Intervall::handleOpenP(int i)
1977 {
1978   actualdeptindex++;
1979   depts[actualdeptindex] = i+1;
1980   closes[actualdeptindex] = -1;
1981   checkDepthIndex(actualdeptindex);
1982 }
1983
1984 void Intervall::handleCloseP(int i, bool closingAllowed)
1985 {
1986   if (actualdeptindex <= 0) {
1987     if (! closingAllowed)
1988       LYXERR(Debug::FIND, "Bad closing parenthesis in latex");  /* should not happen, but the latex input may be wrong */
1989     // if we are at the very end
1990     addIntervall(i, i+1);
1991   }
1992   else {
1993     closes[actualdeptindex] = i+1;
1994     actualdeptindex--;
1995   }
1996 }
1997
1998 void Intervall::resetOpenedP(int openPos)
1999 {
2000   // Used as initializer for foreignlanguage entry
2001   actualdeptindex = 1;
2002   depts[1] = openPos+1;
2003   closes[1] = -1;
2004 }
2005
2006 int Intervall::previousNotIgnored(int start) const
2007 {
2008     int idx = 0;                          /* int intervalls */
2009     for (idx = ignoreidx; idx >= 0; --idx) {
2010       if (start > borders[idx].upper)
2011         return start;
2012       if (start >= borders[idx].low)
2013         start = borders[idx].low-1;
2014     }
2015     return start;
2016 }
2017
2018 int Intervall::nextNotIgnored(int start) const
2019 {
2020     int idx = 0;                          /* int intervalls */
2021     for (idx = 0; idx <= ignoreidx; idx++) {
2022       if (start < borders[idx].low)
2023         return start;
2024       if (start < borders[idx].upper)
2025         start = borders[idx].upper;
2026     }
2027     return start;
2028 }
2029
2030 typedef unordered_map<string, KeyInfo> KeysMap;
2031 typedef unordered_map<string, KeyInfo>::const_iterator KeysIterator;
2032 typedef vector< KeyInfo> Entries;
2033 static KeysMap keys = unordered_map<string, KeyInfo>();
2034
2035 class LatexInfo {
2036  private:
2037   int entidx_;
2038   Entries entries_;
2039   Intervall interval_;
2040   void buildKeys(bool);
2041   void buildEntries(bool);
2042   void makeKey(const string &, KeyInfo, bool isPatternString);
2043   void processRegion(int start, int region_end); /*  remove {} parts */
2044   void removeHead(KeyInfo const &, int count=0);
2045
2046  public:
2047  LatexInfo(string const & par, bool isPatternString)
2048          : entidx_(-1), interval_(isPatternString, par)
2049   {
2050     buildKeys(isPatternString);
2051     entries_ = vector<KeyInfo>();
2052     buildEntries(isPatternString);
2053   }
2054   int getFirstKey() {
2055     entidx_ = 0;
2056     if (entries_.empty()) {
2057       return -1;
2058     }
2059     if (entries_[0].keytype == KeyInfo::isTitle) {
2060       interval_.hasTitle = true;
2061       if (! entries_[0].disabled) {
2062         interval_.titleValue = entries_[0].head;
2063       }
2064       else {
2065         interval_.titleValue = "";
2066       }
2067       removeHead(entries_[0]);
2068       if (entries_.size() > 1)
2069         return 1;
2070       else
2071         return -1;
2072     }
2073     return 0;
2074   }
2075   int getNextKey() {
2076     entidx_++;
2077     if (int(entries_.size()) > entidx_) {
2078       return entidx_;
2079     }
2080     else {
2081       return -1;
2082     }
2083   }
2084   bool setNextKey(int idx) {
2085     if ((idx == entidx_) && (entidx_ >= 0)) {
2086       entidx_--;
2087       return true;
2088     }
2089     else
2090       return false;
2091   }
2092   int find(int start, KeyInfo::KeyType keytype) const {
2093     if (start < 0)
2094       return -1;
2095     int tmpIdx = start;
2096     while (tmpIdx < int(entries_.size())) {
2097       if (entries_[tmpIdx].keytype == keytype)
2098         return tmpIdx;
2099       tmpIdx++;
2100     }
2101     return -1;
2102   }
2103   int process(ostringstream & os, KeyInfo const & actual);
2104   int dispatch(ostringstream & os, int previousStart, KeyInfo & actual);
2105   // string show(int lastpos) { return interval.show(lastpos);}
2106   int nextNotIgnored(int start) { return interval_.nextNotIgnored(start);}
2107   KeyInfo &getKeyInfo(int keyinfo) {
2108     static KeyInfo invalidInfo = KeyInfo();
2109     if ((keyinfo < 0) || ( keyinfo >= int(entries_.size())))
2110       return invalidInfo;
2111     else
2112       return entries_[keyinfo];
2113   }
2114   void setForDefaultLang(KeyInfo const & defLang) {interval_.setForDefaultLang(defLang);}
2115   void addIntervall(int low, int up) { interval_.addIntervall(low, up); }
2116 };
2117
2118
2119 int Intervall::findclosing(int start, int end, char up = '{', char down = '}', int repeat = 1)
2120 {
2121   int skip = 0;
2122   int depth = 0;
2123   for (int i = start; i < end; i += 1 + skip) {
2124     char c;
2125     c = par[i];
2126     skip = 0;
2127     if (c == '\\') skip = 1;
2128     else if (c == up) {
2129       depth++;
2130     }
2131     else if (c == down) {
2132       if (depth == 0) {
2133         repeat--;
2134         if ((repeat <= 0) || (par[i+1] != up))
2135           return i;
2136       }
2137       --depth;
2138     }
2139   }
2140   return end;
2141 }
2142
2143 class MathInfo {
2144   class MathEntry {
2145   public:
2146     string wait;
2147     size_t mathEnd;
2148     size_t mathpostfixsize;
2149     size_t mathStart;
2150     size_t mathprefixsize;
2151     size_t mathSize;
2152   };
2153   size_t actualIdx_;
2154   vector<MathEntry> entries_;
2155  public:
2156   MathInfo() {
2157     actualIdx_ = 0;
2158   }
2159   void insert(string const & wait, size_t start, size_t prefixsize, size_t end, size_t postfixsize) {
2160     MathEntry m = MathEntry();
2161     m.wait = wait;
2162     m.mathStart = start;
2163     m.mathprefixsize = prefixsize;
2164     m.mathEnd = end + postfixsize;
2165     m.mathpostfixsize = postfixsize;
2166     m.mathSize = m.mathEnd - m.mathStart;
2167     entries_.push_back(m);
2168   }
2169   bool empty() const { return entries_.empty(); }
2170   size_t getEndPos() const {
2171     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
2172       return 0;
2173     }
2174     return entries_[actualIdx_].mathEnd;
2175   }
2176   size_t getStartPos() const {
2177     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
2178       return 100000;                    /*  definitely enough? */
2179     }
2180     return entries_[actualIdx_].mathStart;
2181   }
2182   size_t getPrefixSize() const {
2183     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
2184       return 0;
2185     }
2186     return entries_[actualIdx_].mathprefixsize;
2187   }
2188   size_t getPostfixSize() const {
2189     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
2190       return 0;
2191     }
2192     return entries_[actualIdx_].mathpostfixsize;
2193   }
2194   size_t getFirstPos() {
2195     actualIdx_ = 0;
2196     return getStartPos();
2197   }
2198   size_t getSize() const {
2199     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
2200       return size_t(0);
2201     }
2202     return entries_[actualIdx_].mathSize;
2203   }
2204   void incrEntry() { actualIdx_++; }
2205 };
2206
2207 void LatexInfo::buildEntries(bool isPatternString)
2208 {
2209   static regex const rmath("(\\\\)*(\\$|\\\\\\[|\\\\\\]|\\\\(begin|end)\\{((eqnarray|equation|flalign|gather|multline|align|x?x?alignat)\\*?\\})(\\{[0-9]+\\})?)");
2210   static regex const rkeys("(\\\\)*(\\$|\\\\\\[|\\\\\\]|\\\\((([a-zA-Z]+\\*?)(\\{([a-z]+\\*?)\\}|=[0-9]+[a-z]+)?)))");
2211   static bool disableLanguageOverride = false;
2212   smatch sub, submath;
2213   bool evaluatingRegexp = false;
2214   MathInfo mi;
2215   bool evaluatingMath = false;
2216   bool evaluatingCode = false;
2217   size_t codeEnd = 0;
2218   bool evaluatingOptional = false;
2219   size_t optionalEnd = 0;
2220   int codeStart = -1;
2221   KeyInfo found;
2222   bool math_end_waiting = false;
2223   size_t math_pos = 10000;
2224   size_t math_prefix_size = 1;
2225   string math_end;
2226   static vector<string> usedText = vector<string>();
2227   static bool removeMathHull = false;
2228
2229   interval_.removeAccents();
2230
2231   for (sregex_iterator itmath(interval_.par.begin(), interval_.par.end(), rmath), end; itmath != end; ++itmath) {
2232     submath = *itmath;
2233     if ((submath.position(2) - submath.position(0)) %2 == 1) {
2234       // prefixed by odd count of '\\'
2235       continue;
2236     }
2237     if (math_end_waiting) {
2238       size_t pos = submath.position(size_t(2));
2239       if ((math_end == "$") &&
2240           (submath.str(2) == "$")) {
2241         mi.insert("$", math_pos, 1, pos, 1);
2242         math_end_waiting = false;
2243       }
2244       else if ((math_end == "\\]") &&
2245                (submath.str(2) == "\\]")) {
2246         mi.insert("\\]", math_pos, 2, pos, 2);
2247         math_end_waiting = false;
2248       }
2249       else if ((submath.str(3).compare("end") == 0) &&
2250           (submath.str(5).compare(math_end) == 0)) {
2251         mi.insert(math_end, math_pos, math_prefix_size, pos, submath.str(2).length());
2252         math_end_waiting = false;
2253       }
2254       else
2255         continue;
2256     }
2257     else {
2258       if (submath.str(3).compare("begin") == 0) {
2259         math_end_waiting = true;
2260         math_end = submath.str(5);
2261         math_pos = submath.position(size_t(2));
2262         math_prefix_size = submath.str(2).length();
2263       }
2264       else if (submath.str(2).compare("\\[") == 0) {
2265         math_end_waiting = true;
2266         math_end = "\\]";
2267         math_pos = submath.position(size_t(2));
2268       }
2269       else if (submath.str(2) == "$") {
2270         size_t pos = submath.position(size_t(2));
2271         math_end_waiting = true;
2272         math_end = "$";
2273         math_pos = pos;
2274       }
2275     }
2276   }
2277   // Ignore language if there is math somewhere in pattern-string
2278   if (isPatternString) {
2279     for (auto s: usedText) {
2280       // Remove entries created in previous search runs
2281       keys.erase(s);
2282     }
2283     usedText = vector<string>();
2284     if (! mi.empty()) {
2285       // Disable language
2286       keys["foreignlanguage"].disabled = true;
2287       disableLanguageOverride = true;
2288       removeMathHull = false;
2289     }
2290     else {
2291       removeMathHull = true;    // used later if not isPatternString
2292       disableLanguageOverride = false;
2293     }
2294   }
2295   else {
2296     if (disableLanguageOverride) {
2297       keys["foreignlanguage"].disabled = true;
2298     }
2299   }
2300   math_pos = mi.getFirstPos();
2301   for (sregex_iterator it(interval_.par.begin(), interval_.par.end(), rkeys), end; it != end; ++it) {
2302     sub = *it;
2303     if ((sub.position(2) - sub.position(0)) %2 == 1) {
2304       // prefixed by odd count of '\\'
2305       continue;
2306     }
2307     string key = sub.str(5);
2308     if (key == "") {
2309       if (sub.str(2)[0] == '\\')
2310         key = sub.str(2)[1];
2311       else {
2312         key = sub.str(2);
2313       }
2314     }
2315     KeysIterator it_key = keys.find(key);
2316     if (it_key != keys.end()) {
2317       if (it_key->second.keytype == KeyInfo::headRemove) {
2318         KeyInfo found1 = it_key->second;
2319         found1.disabled = true;
2320         found1.head = "\\" + key + "{";
2321         found1._tokenstart = sub.position(size_t(2));
2322         found1._tokensize = found1.head.length();
2323         found1._dataStart = found1._tokenstart + found1.head.length();
2324         int endpos = interval_.findclosing(found1._dataStart, interval_.par.length(), '{', '}', 1);
2325         found1._dataEnd = endpos;
2326         removeHead(found1);
2327         continue;
2328       }
2329     }
2330     if (evaluatingRegexp) {
2331       if (sub.str(3).compare("endregexp") == 0) {
2332         evaluatingRegexp = false;
2333         // found._tokenstart already set
2334         found._dataEnd = sub.position(size_t(2)) + 13;
2335         found._dataStart = found._dataEnd;
2336         found._tokensize = found._dataEnd - found._tokenstart;
2337         found.parenthesiscount = 0;
2338         found.head = interval_.par.substr(found._tokenstart, found._tokensize);
2339       }
2340       else {
2341         continue;
2342       }
2343     }
2344     else {
2345       if (evaluatingMath) {
2346         if (size_t(sub.position(size_t(2))) < mi.getEndPos())
2347           continue;
2348         evaluatingMath = false;
2349         mi.incrEntry();
2350         math_pos = mi.getStartPos();
2351       }
2352       if (it_key == keys.end()) {
2353         found = KeyInfo(KeyInfo::isStandard, 0, true);
2354         LYXERR(Debug::INFO, "Undefined key " << key << " ==> will be used as text");
2355         found = KeyInfo(KeyInfo::isText, 0, false);
2356         if (isPatternString) {
2357           found.keytype = KeyInfo::isChar;
2358           found.disabled = false;
2359           found.used = true;
2360         }
2361         keys[key] = found;
2362         usedText.push_back(key);
2363       }
2364       else
2365         found = keys[key];
2366       if (key.compare("regexp") == 0) {
2367         evaluatingRegexp = true;
2368         found._tokenstart = sub.position(size_t(2));
2369         found._tokensize = 0;
2370         continue;
2371       }
2372     }
2373     // Handle the other params of key
2374     if (found.keytype == KeyInfo::isIgnored)
2375       continue;
2376     else if (found.keytype == KeyInfo::isMath) {
2377       if (size_t(sub.position(size_t(2))) == math_pos) {
2378         found = keys[key];
2379         found._tokenstart = sub.position(size_t(2));
2380         found._tokensize = mi.getSize();
2381         found._dataEnd = found._tokenstart + found._tokensize;
2382         found._dataStart = found._dataEnd;
2383         found.parenthesiscount = 0;
2384         found.head = interval_.par.substr(found._tokenstart, found._tokensize);
2385         if (removeMathHull) {
2386           interval_.addIntervall(found._tokenstart, found._tokenstart + mi.getPrefixSize());
2387           interval_.addIntervall(found._dataEnd - mi.getPostfixSize(), found._dataEnd);
2388         }
2389         else {
2390           // Treate all math constructs as simple math
2391           interval_.par[found._tokenstart] = '$';
2392           interval_.par[found._dataEnd - mi.getPostfixSize()] = '$';
2393           interval_.addIntervall(found._tokenstart + 1, found._tokenstart + mi.getPrefixSize());
2394           interval_.addIntervall(found._dataEnd - mi.getPostfixSize() + 1, found._dataEnd);
2395         }
2396         evaluatingMath = true;
2397       }
2398       else {
2399         // begin|end of unknown env, discard
2400         // First handle tables
2401         // longtable|tabular
2402         bool discardComment;
2403         found = keys[key];
2404         found.keytype = KeyInfo::doRemove;
2405         if ((sub.str(7).compare("longtable") == 0) ||
2406             (sub.str(7).compare("tabular") == 0)) {
2407           discardComment = true;        /* '%' */
2408         }
2409         else {
2410           discardComment = false;
2411           static regex const removeArgs("^(multicols|multipar|sectionbox|subsectionbox|tcolorbox)$");
2412           smatch sub2;
2413           string token = sub.str(7);
2414           if (regex_match(token, sub2, removeArgs)) {
2415             found.keytype = KeyInfo::removeWithArg;
2416           }
2417         }
2418         // discard spaces before pos(2)
2419         int pos = sub.position(size_t(2));
2420         int count;
2421         for (count = 0; pos - count > 0; count++) {
2422           char c = interval_.par[pos-count-1];
2423           if (discardComment) {
2424             if ((c != ' ') && (c != '%'))
2425               break;
2426           }
2427           else if (c != ' ')
2428             break;
2429         }
2430         found._tokenstart = pos - count;
2431         if (sub.str(3).compare(0, 5, "begin") == 0) {
2432           size_t pos1 = pos + sub.str(2).length();
2433           if (sub.str(7).compare("cjk") == 0) {
2434             pos1 = interval_.findclosing(pos1+1, interval_.par.length()) + 1;
2435             if ((interval_.par[pos1] == '{') && (interval_.par[pos1+1] == '}'))
2436               pos1 += 2;
2437             found.keytype = KeyInfo::isMain;
2438             found._dataStart = pos1;
2439             found._dataEnd = interval_.par.length();
2440             found.disabled = keys["foreignlanguage"].disabled;
2441             found.used = keys["foreignlanguage"].used;
2442             found._tokensize = pos1 - found._tokenstart;
2443             found.head = interval_.par.substr(found._tokenstart, found._tokensize);
2444           }
2445           else {
2446             // Swallow possible optional params
2447             while (interval_.par[pos1] == '[') {
2448               pos1 = interval_.findclosing(pos1+1, interval_.par.length(), '[', ']')+1;
2449             }
2450             // Swallow also the eventual parameter
2451             if (interval_.par[pos1] == '{') {
2452               found._dataEnd = interval_.findclosing(pos1+1, interval_.par.length()) + 1;
2453             }
2454             else {
2455               found._dataEnd = pos1;
2456             }
2457             found._dataStart = found._dataEnd;
2458             found._tokensize = count + found._dataEnd - pos;
2459             found.parenthesiscount = 0;
2460             found.head = interval_.par.substr(found._tokenstart, found._tokensize);
2461             found.disabled = true;
2462           }
2463         }
2464         else {
2465           // Handle "\end{...}"
2466           found._dataStart = pos + sub.str(2).length();
2467           found._dataEnd = found._dataStart;
2468           found._tokensize = count + found._dataEnd - pos;
2469           found.parenthesiscount = 0;
2470           found.head = interval_.par.substr(found._tokenstart, found._tokensize);
2471           found.disabled = true;
2472         }
2473       }
2474     }
2475     else if (found.keytype != KeyInfo::isRegex) {
2476       found._tokenstart = sub.position(size_t(2));
2477       if (found.parenthesiscount == 0) {
2478         // Probably to be discarded
2479         size_t following_pos = sub.position(size_t(2)) + sub.str(5).length() + 1;
2480         char following = interval_.par[following_pos];
2481         if (following == ' ')
2482           found.head = "\\" + sub.str(5) + " ";
2483         else if (following == '=') {
2484           // like \uldepth=1000pt
2485           found.head = sub.str(2);
2486         }
2487         else
2488           found.head = "\\" + key;
2489         found._tokensize = found.head.length();
2490         found._dataEnd = found._tokenstart + found._tokensize;
2491         found._dataStart = found._dataEnd;
2492       }
2493       else {
2494         int params = found._tokenstart + key.length() + 1;
2495         if (evaluatingOptional) {
2496           if (size_t(found._tokenstart) > optionalEnd) {
2497             evaluatingOptional = false;
2498           }
2499           else {
2500             found.disabled = true;
2501           }
2502         }
2503         int optend = params;
2504         while (interval_.par[optend] == '[') {
2505           // discard optional parameters
2506           optend = interval_.findclosing(optend+1, interval_.par.length(), '[', ']') + 1;
2507         }
2508         if (optend > params) {
2509           key += interval_.par.substr(params, optend-params);
2510           evaluatingOptional = true;
2511           optionalEnd = optend;
2512           if (found.keytype == KeyInfo::isSectioning) {
2513             // Remove optional values (but still keep in header)
2514             interval_.addIntervall(params, optend);
2515           }
2516         }
2517         string token = sub.str(7);
2518         int closings;
2519         if (interval_.par[optend] != '{') {
2520           closings = 0;
2521           found.parenthesiscount = 0;
2522           found.head = "\\" + key;
2523         }
2524         else
2525           closings = found.parenthesiscount;
2526         if (found.parenthesiscount == 1) {
2527           found.head = "\\" + key + "{";
2528         }
2529         else if (found.parenthesiscount > 1) {
2530           if (token != "") {
2531             found.head = sub.str(2) + "{";
2532             closings = found.parenthesiscount - 1;
2533           }
2534           else {
2535             found.head = "\\" + key + "{";
2536           }
2537         }
2538         found._tokensize = found.head.length();
2539         found._dataStart = found._tokenstart + found.head.length();
2540         if (found.keytype == KeyInfo::doRemove) {
2541           if (closings > 0) {
2542             size_t endpar = 2 + interval_.findclosing(found._dataStart, interval_.par.length(), '{', '}', closings);
2543             if (endpar >= interval_.par.length())
2544               found._dataStart = interval_.par.length();
2545             else
2546               found._dataStart = endpar;
2547             found._tokensize = found._dataStart - found._tokenstart;
2548           }
2549           else {
2550             found._dataStart = found._tokenstart + found._tokensize;
2551           }
2552           closings = 0;
2553         }
2554         if (interval_.par.substr(found._dataStart, 15).compare("\\endarguments{}") == 0) {
2555           found._dataStart += 15;
2556         }
2557         size_t endpos;
2558         if (closings < 1)
2559           endpos = found._dataStart - 1;
2560         else
2561           endpos = interval_.findclosing(found._dataStart, interval_.par.length(), '{', '}', closings);
2562         if (found.keytype == KeyInfo::isList) {
2563           // Check if it really is list env
2564           static regex const listre("^([a-z]+)$");
2565           smatch sub2;
2566           if (!regex_match(token, sub2, listre)) {
2567             // Change the key of this entry. It is not in a list/item environment
2568             found.keytype = KeyInfo::endArguments;
2569           }
2570         }
2571         if (found.keytype == KeyInfo::noMain) {
2572           evaluatingCode = true;
2573           codeEnd = endpos;
2574           codeStart = found._dataStart;
2575         }
2576         else if (evaluatingCode) {
2577           if (size_t(found._dataStart) > codeEnd)
2578             evaluatingCode = false;
2579           else if (found.keytype == KeyInfo::isMain) {
2580             // Disable this key, treate it as standard
2581             found.keytype = KeyInfo::isStandard;
2582             found.disabled = true;
2583             if ((codeEnd +1 >= interval_.par.length()) &&
2584                 (found._tokenstart == codeStart)) {
2585               // trickery, because the code inset starts
2586               // with \selectlanguage ...
2587               codeEnd = endpos;
2588               if (entries_.size() > 1) {
2589                 entries_[entries_.size()-1]._dataEnd = codeEnd;
2590               }
2591             }
2592           }
2593         }
2594         if ((endpos == interval_.par.length()) &&
2595             (found.keytype == KeyInfo::doRemove)) {
2596           // Missing closing => error in latex-input?
2597           // therefore do not delete remaining data
2598           found._dataStart -= 1;
2599           found._dataEnd = found._dataStart;
2600         }
2601         else
2602           found._dataEnd = endpos;
2603       }
2604       if (isPatternString) {
2605         keys[key].used = true;
2606       }
2607     }
2608     entries_.push_back(found);
2609   }
2610 }
2611
2612 void LatexInfo::makeKey(const string &keysstring, KeyInfo keyI, bool isPatternString)
2613 {
2614   stringstream s(keysstring);
2615   string key;
2616   const char delim = '|';
2617   while (getline(s, key, delim)) {
2618     KeyInfo keyII(keyI);
2619     if (isPatternString) {
2620       keyII.used = false;
2621     }
2622     else if ( !keys[key].used)
2623       keyII.disabled = true;
2624     keys[key] = keyII;
2625   }
2626 }
2627
2628 void LatexInfo::buildKeys(bool isPatternString)
2629 {
2630
2631   static bool keysBuilt = false;
2632   if (keysBuilt && !isPatternString) return;
2633
2634   // Keys to ignore in any case
2635   makeKey("text|textcyrillic|lyxmathsym|ensuremath", KeyInfo(KeyInfo::headRemove, 1, true), true);
2636   // Known standard keys with 1 parameter.
2637   // Split is done, if not at start of region
2638   makeKey("textsf|textss|texttt", KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getFamily()), isPatternString);
2639   makeKey("textbf",               KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getSeries()), isPatternString);
2640   makeKey("textit|textsc|textsl", KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getShape()), isPatternString);
2641   makeKey("uuline|uline|uwave",   KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getUnderline()), isPatternString);
2642   makeKey("emph|noun",            KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getMarkUp()), isPatternString);
2643   makeKey("sout|xout",            KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getStrikeOut()), isPatternString);
2644
2645   makeKey("section|subsection|subsubsection|paragraph|subparagraph|minisec",
2646           KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
2647   makeKey("section*|subsection*|subsubsection*|paragraph*",
2648           KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
2649   makeKey("part|part*|chapter|chapter*", KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
2650   makeKey("title|subtitle|author|subject|publishers|dedication|uppertitleback|lowertitleback|extratitle|lyxaddress|lyxrightaddress", KeyInfo(KeyInfo::isTitle, 1, ignoreFormats.getFrontMatter()), isPatternString);
2651   // Regex
2652   makeKey("regexp", KeyInfo(KeyInfo::isRegex, 1, false), isPatternString);
2653
2654   // Split is done, if not at start of region
2655   makeKey("textcolor", KeyInfo(KeyInfo::isStandard, 2, ignoreFormats.getColor()), isPatternString);
2656   makeKey("latexenvironment", KeyInfo(KeyInfo::isStandard, 2, false), isPatternString);
2657
2658   // Split is done always.
2659   makeKey("foreignlanguage", KeyInfo(KeyInfo::isMain, 2, ignoreFormats.getLanguage()), isPatternString);
2660
2661   // Known charaters
2662   // No split
2663   makeKey("backslash|textbackslash|slash",  KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2664   makeKey("textasciicircum|textasciitilde", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2665   makeKey("textasciiacute|texemdash",       KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2666   makeKey("dots|ldots",                     KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2667   // Spaces
2668   makeKey("quad|qquad|hfill|dotfill",               KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2669   makeKey("textvisiblespace|nobreakspace",          KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2670   makeKey("negthickspace|negmedspace|negthinspace", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2671   makeKey("thickspace|medspace|thinspace",          KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2672   // Skip
2673   // makeKey("enskip|smallskip|medskip|bigskip|vfill", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2674   // Custom space/skip, remove the content (== length value)
2675   makeKey("vspace|vspace*|hspace|hspace*|mspace", KeyInfo(KeyInfo::noContent, 1, false), isPatternString);
2676   // Found in fr/UserGuide.lyx
2677   makeKey("og|fg", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2678   // quotes
2679   makeKey("textquotedbl|quotesinglbase|lyxarrow", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2680   makeKey("textquotedblleft|textquotedblright", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2681   // Known macros to remove (including their parameter)
2682   // No split
2683   makeKey("input|inputencoding|label|ref|index|bibitem", KeyInfo(KeyInfo::doRemove, 1, false), isPatternString);
2684   makeKey("addtocounter|setlength",                 KeyInfo(KeyInfo::noContent, 2, true), isPatternString);
2685   // handle like standard keys with 1 parameter.
2686   makeKey("url|href|vref|thanks", KeyInfo(KeyInfo::isStandard, 1, false), isPatternString);
2687
2688   // Ignore deleted text
2689   makeKey("lyxdeleted", KeyInfo(KeyInfo::doRemove, 3, false), isPatternString);
2690   // but preserve added text
2691   makeKey("lyxadded", KeyInfo(KeyInfo::doRemove, 2, false), isPatternString);
2692
2693   // Macros to remove, but let the parameter survive
2694   // No split
2695   makeKey("menuitem|textmd|textrm", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2696
2697   // Remove language spec from content of these insets
2698   makeKey("code", KeyInfo(KeyInfo::noMain, 1, false), isPatternString);
2699
2700   // Same effect as previous, parameter will survive (because there is no one anyway)
2701   // No split
2702   makeKey("noindent|textcompwordmark|maketitle", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2703   // Remove table decorations
2704   makeKey("hline|tabularnewline|toprule|bottomrule|midrule", KeyInfo(KeyInfo::doRemove, 0, true), isPatternString);
2705   // Discard shape-header.
2706   // For footnote or shortcut too, because of lang settings
2707   // and wrong handling if used 'KeyInfo::noMain'
2708   makeKey("circlepar|diamondpar|heartpar|nutpar",  KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2709   makeKey("trianglerightpar|hexagonpar|starpar",   KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2710   makeKey("triangleuppar|triangledownpar|droppar", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2711   makeKey("triangleleftpar|shapepar|dropuppar",    KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2712   makeKey("hphantom|vphantom|footnote|shortcut|include|includegraphics",     KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2713   makeKey("parbox", KeyInfo(KeyInfo::doRemove, 1, true), isPatternString);
2714   // like ('tiny{}' or '\tiny ' ... )
2715   makeKey("footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge", KeyInfo(KeyInfo::isSize, 0, false), isPatternString);
2716
2717   // Survives, like known character
2718   // makeKey("lyx|LyX|latex|LaTeX|latexe|LaTeXe|tex|TeX", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2719   makeKey("tableofcontents", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2720   makeKey("item|listitem", KeyInfo(KeyInfo::isList, 1, false), isPatternString);
2721
2722   makeKey("begin|end", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
2723   makeKey("[|]", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
2724   makeKey("$", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
2725
2726   makeKey("par|uldepth|ULdepth|protect|nobreakdash|medskip|relax", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2727   // Remove RTL/LTR marker
2728   makeKey("l|r|textlr|textfr|textar|beginl|endl", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2729   makeKey("lettrine", KeyInfo(KeyInfo::cleanToStart, 0, true), isPatternString);
2730   makeKey("lyxslide", KeyInfo(KeyInfo::isSectioning, 1, true), isPatternString);
2731   makeKey("endarguments", KeyInfo(KeyInfo::endArguments, 0, true), isPatternString);
2732   makeKey("twocolumn", KeyInfo(KeyInfo::removeWithArg, 2, true), isPatternString);
2733   makeKey("tnotetext|ead|fntext|cortext|address", KeyInfo(KeyInfo::removeWithArg, 0, true), isPatternString);
2734   makeKey("lyxend", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2735   if (isPatternString) {
2736     // Allow the first searched string to rebuild the keys too
2737     keysBuilt = false;
2738   }
2739   else {
2740     // no need to rebuild again
2741     keysBuilt = true;
2742   }
2743 }
2744
2745 /*
2746  * Keep the list of actual opened parentheses actual
2747  * (e.g. depth == 4 means there are 4 '{' not processed yet)
2748  */
2749 void Intervall::handleParentheses(int lastpos, bool closingAllowed)
2750 {
2751   int skip = 0;
2752   for (int i = depts[actualdeptindex]; i < lastpos; i+= 1 + skip) {
2753     char c;
2754     c = par[i];
2755     skip = 0;
2756     if (c == '\\') skip = 1;
2757     else if (c == '{') {
2758       handleOpenP(i);
2759     }
2760     else if (c == '}') {
2761       handleCloseP(i, closingAllowed);
2762     }
2763   }
2764 }
2765
2766 #if (0)
2767 string Intervall::show(int lastpos)
2768 {
2769   int idx = 0;                          /* int intervalls */
2770   string s;
2771   int i = 0;
2772   for (idx = 0; idx <= ignoreidx; idx++) {
2773     while (i < lastpos) {
2774       int printsize;
2775       if (i <= borders[idx].low) {
2776         if (borders[idx].low > lastpos)
2777           printsize = lastpos - i;
2778         else
2779           printsize = borders[idx].low - i;
2780         s += par.substr(i, printsize);
2781         i += printsize;
2782         if (i >= borders[idx].low)
2783           i = borders[idx].upper;
2784       }
2785       else {
2786         i = borders[idx].upper;
2787         break;
2788       }
2789     }
2790   }
2791   if (lastpos > i) {
2792     s += par.substr(i, lastpos-i);
2793   }
2794   return s;
2795 }
2796 #endif
2797
2798 void Intervall::output(ostringstream &os, int lastpos)
2799 {
2800   // get number of chars to output
2801   int idx = 0;                          /* int intervalls */
2802   int i = 0;
2803   int printed = 0;
2804   string startTitle = titleValue;
2805   for (idx = 0; idx <= ignoreidx; idx++) {
2806     if (i < lastpos) {
2807       if (i <= borders[idx].low) {
2808         int printsize;
2809         if (borders[idx].low > lastpos)
2810           printsize = lastpos - i;
2811         else
2812           printsize = borders[idx].low - i;
2813         if (printsize > 0) {
2814           os << startTitle << par.substr(i, printsize);
2815           i += printsize;
2816           printed += printsize;
2817           startTitle = "";
2818         }
2819         handleParentheses(i, false);
2820         if (i >= borders[idx].low)
2821           i = borders[idx].upper;
2822       }
2823       else {
2824         i = borders[idx].upper;
2825       }
2826     }
2827     else
2828       break;
2829   }
2830   if (lastpos > i) {
2831     os << startTitle << par.substr(i, lastpos-i);
2832     printed += lastpos-i;
2833   }
2834   handleParentheses(lastpos, false);
2835   int startindex;
2836   if (keys["foreignlanguage"].disabled)
2837     startindex = actualdeptindex-langcount;
2838   else
2839     startindex = actualdeptindex;
2840   for (int i = startindex; i > 0; --i) {
2841     os << "}";
2842   }
2843   if (hasTitle && (printed > 0))
2844     os << "}";
2845   if (! isPatternString_)
2846     os << "\n";
2847   handleParentheses(lastpos, true); /* extra closings '}' allowed here */
2848 }
2849
2850 void LatexInfo::processRegion(int start, int region_end)
2851 {
2852   while (start < region_end) {          /* Let {[} and {]} survive */
2853     int cnt = interval_.isOpeningPar(start);
2854     if (cnt == 1) {
2855       // Closing is allowed past the region
2856       int closing = interval_.findclosing(start+1, interval_.par.length());
2857       interval_.addIntervall(start, start+1);
2858       interval_.addIntervall(closing, closing+1);
2859     }
2860     else if (cnt == 3)
2861       start += 2;
2862     start = interval_.nextNotIgnored(start+1);
2863   }
2864 }
2865
2866 void LatexInfo::removeHead(KeyInfo const & actual, int count)
2867 {
2868   if (actual.parenthesiscount == 0) {
2869     // "{\tiny{} ...}" ==> "{{} ...}"
2870     interval_.addIntervall(actual._tokenstart-count, actual._tokenstart + actual._tokensize);
2871   }
2872   else {
2873     // Remove header hull, that is "\url{abcd}" ==> "abcd"
2874     interval_.addIntervall(actual._tokenstart - count, actual._dataStart);
2875     interval_.addIntervall(actual._dataEnd, actual._dataEnd+1);
2876   }
2877 }
2878
2879 int LatexInfo::dispatch(ostringstream &os, int previousStart, KeyInfo &actual)
2880 {
2881   int nextKeyIdx = 0;
2882   switch (actual.keytype)
2883   {
2884     case KeyInfo::isTitle: {
2885       removeHead(actual);
2886       nextKeyIdx = getNextKey();
2887       break;
2888     }
2889     case KeyInfo::cleanToStart: {
2890       actual._dataEnd = actual._dataStart;
2891       nextKeyIdx = getNextKey();
2892       // Search for end of arguments
2893       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
2894       if (tmpIdx > 0) {
2895         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
2896           entries_[i].disabled = true;
2897         }
2898         actual._dataEnd = entries_[tmpIdx]._dataEnd;
2899       }
2900       while (interval_.par[actual._dataEnd] == ' ')
2901         actual._dataEnd++;
2902       interval_.addIntervall(0, actual._dataEnd+1);
2903       interval_.actualdeptindex = 0;
2904       interval_.depts[0] = actual._dataEnd+1;
2905       interval_.closes[0] = -1;
2906       break;
2907     }
2908     case KeyInfo::isText:
2909       interval_.par[actual._tokenstart] = '#';
2910       //interval_.addIntervall(actual._tokenstart, actual._tokenstart+1);
2911       nextKeyIdx = getNextKey();
2912       break;
2913     case KeyInfo::noContent: {          /* char like "\hspace{2cm}" */
2914       if (actual.disabled)
2915         interval_.addIntervall(actual._tokenstart, actual._dataEnd);
2916       else
2917         interval_.addIntervall(actual._dataStart, actual._dataEnd);
2918     }
2919       // fall through
2920     case KeyInfo::isChar: {
2921       nextKeyIdx = getNextKey();
2922       break;
2923     }
2924     case KeyInfo::isSize: {
2925       if (actual.disabled || (interval_.par[actual._dataStart] != '{') || (interval_.par[actual._dataStart-1] == ' ')) {
2926         if (actual.parenthesiscount == 0)
2927           interval_.addIntervall(actual._tokenstart, actual._dataEnd);
2928         else {
2929           interval_.addIntervall(actual._tokenstart, actual._dataEnd+1);
2930         }
2931         nextKeyIdx = getNextKey();
2932       } else {
2933         // Here _dataStart points to '{', so correct it
2934         actual._dataStart += 1;
2935         actual._tokensize += 1;
2936         actual.parenthesiscount = 1;
2937         if (interval_.par[actual._dataStart] == '}') {
2938           // Determine the end if used like '{\tiny{}...}'
2939           actual._dataEnd = interval_.findclosing(actual._dataStart+1, interval_.par.length()) + 1;
2940           interval_.addIntervall(actual._dataStart, actual._dataStart+1);
2941         }
2942         else {
2943           // Determine the end if used like '\tiny{...}'
2944           actual._dataEnd = interval_.findclosing(actual._dataStart, interval_.par.length()) + 1;
2945         }
2946         // Split on this key if not at start
2947         int start = interval_.nextNotIgnored(previousStart);
2948         if (start < actual._tokenstart) {
2949           interval_.output(os, actual._tokenstart);
2950           interval_.addIntervall(start, actual._tokenstart);
2951         }
2952         // discard entry if at end of actual
2953         nextKeyIdx = process(os, actual);
2954       }
2955       break;
2956     }
2957     case KeyInfo::endArguments: {
2958       // Remove trailing '{}' too
2959       actual._dataStart += 1;
2960       actual._dataEnd += 1;
2961       interval_.addIntervall(actual._tokenstart, actual._dataEnd+1);
2962       nextKeyIdx = getNextKey();
2963       break;
2964     }
2965     case KeyInfo::noMain:
2966       // fall through
2967     case KeyInfo::isStandard: {
2968       if (actual.disabled) {
2969         removeHead(actual);
2970         processRegion(actual._dataStart, actual._dataStart+1);
2971         nextKeyIdx = getNextKey();
2972       } else {
2973         // Split on this key if not at datastart of calling entry
2974         int start = interval_.nextNotIgnored(previousStart);
2975         if (start < actual._tokenstart) {
2976           interval_.output(os, actual._tokenstart);
2977           interval_.addIntervall(start, actual._tokenstart);
2978         }
2979         // discard entry if at end of actual
2980         nextKeyIdx = process(os, actual);
2981       }
2982       break;
2983     }
2984     case KeyInfo::removeWithArg: {
2985       nextKeyIdx = getNextKey();
2986       // Search for end of arguments
2987       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
2988       if (tmpIdx > 0) {
2989         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
2990           entries_[i].disabled = true;
2991         }
2992         actual._dataEnd = entries_[tmpIdx]._dataEnd;
2993       }
2994       interval_.addIntervall(actual._tokenstart, actual._dataEnd+1);
2995       break;
2996     }
2997     case KeyInfo::doRemove: {
2998       // Remove the key with all parameters and following spaces
2999       size_t pos;
3000       size_t start;
3001       if (interval_.par[actual._dataEnd-1] == ' ')
3002         start = actual._dataEnd;
3003       else
3004         start = actual._dataEnd+1;
3005       for (pos = start; pos < interval_.par.length(); pos++) {
3006         if ((interval_.par[pos] != ' ') && (interval_.par[pos] != '%'))
3007           break;
3008       }
3009       // Remove also enclosing parentheses [] and {}
3010       int numpars = 0;
3011       int spaces = 0;
3012       while (actual._tokenstart > numpars) {
3013         if (pos+numpars >= interval_.par.size())
3014           break;
3015         else if (interval_.par[pos+numpars] == ']' && interval_.par[actual._tokenstart-numpars-1] == '[')
3016           numpars++;
3017         else if (interval_.par[pos+numpars] == '}' && interval_.par[actual._tokenstart-numpars-1] == '{')
3018           numpars++;
3019         else
3020           break;
3021       }
3022       if (numpars > 0) {
3023         if (interval_.par[pos+numpars] == ' ')
3024           spaces++;
3025       }
3026
3027       interval_.addIntervall(actual._tokenstart-numpars, pos+numpars+spaces);
3028       nextKeyIdx = getNextKey();
3029       break;
3030     }
3031     case KeyInfo::isList: {
3032       // Discard space before _tokenstart
3033       int count;
3034       for (count = 0; count < actual._tokenstart; count++) {
3035         if (interval_.par[actual._tokenstart-count-1] != ' ')
3036           break;
3037       }
3038       nextKeyIdx = getNextKey();
3039       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
3040       if (tmpIdx > 0) {
3041         // Special case: \item is not a list, but a command (like in Style Author_Biography in maa-monthly.layout)
3042         // with arguments
3043         // How else can we catch this one?
3044         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
3045           entries_[i].disabled = true;
3046         }
3047         actual._dataEnd = entries_[tmpIdx]._dataEnd;
3048       }
3049       else if (nextKeyIdx > 0) {
3050         // Ignore any lang entries inside data region
3051         for (int i = nextKeyIdx; i < int(entries_.size()) && entries_[i]._tokenstart < actual._dataEnd; i++) {
3052           if (entries_[i].keytype == KeyInfo::isMain)
3053             entries_[i].disabled = true;
3054         }
3055       }
3056       if (actual.disabled) {
3057         interval_.addIntervall(actual._tokenstart-count, actual._dataEnd+1);
3058       }
3059       else {
3060         interval_.addIntervall(actual._tokenstart-count, actual._tokenstart);
3061       }
3062       if (interval_.par[actual._dataEnd+1] == '[') {
3063         int posdown = interval_.findclosing(actual._dataEnd+2, interval_.par.length(), '[', ']');
3064         if ((interval_.par[actual._dataEnd+2] == '{') &&
3065             (interval_.par[posdown-1] == '}')) {
3066           interval_.addIntervall(actual._dataEnd+1,actual._dataEnd+3);
3067           interval_.addIntervall(posdown-1, posdown+1);
3068         }
3069         else {
3070           interval_.addIntervall(actual._dataEnd+1, actual._dataEnd+2);
3071           interval_.addIntervall(posdown, posdown+1);
3072         }
3073         int blk = interval_.nextNotIgnored(actual._dataEnd+1);
3074         if (blk > posdown) {
3075           // Discard at most 1 space after empty item
3076           int count;
3077           for (count = 0; count < 1; count++) {
3078             if (interval_.par[blk+count] != ' ')
3079               break;
3080           }
3081           if (count > 0)
3082             interval_.addIntervall(blk, blk+count);
3083         }
3084       }
3085       break;
3086     }
3087     case KeyInfo::isSectioning: {
3088       // Discard spaces before _tokenstart
3089       int count;
3090       int val = actual._tokenstart;
3091       for (count = 0; count < actual._tokenstart;) {
3092         val = interval_.previousNotIgnored(val-1);
3093         if (val < 0 || interval_.par[val] != ' ')
3094           break;
3095         else {
3096           count = actual._tokenstart - val;
3097         }
3098       }
3099       if (actual.disabled) {
3100         removeHead(actual, count);
3101         nextKeyIdx = getNextKey();
3102       } else {
3103         interval_.addIntervall(actual._tokenstart-count, actual._tokenstart);
3104         nextKeyIdx = process(os, actual);
3105       }
3106       break;
3107     }
3108     case KeyInfo::isMath: {
3109       // Same as regex, use the content unchanged
3110       nextKeyIdx = getNextKey();
3111       break;
3112     }
3113     case KeyInfo::isRegex: {
3114       // DO NOT SPLIT ON REGEX
3115       // Do not disable
3116       nextKeyIdx = getNextKey();
3117       break;
3118     }
3119     case KeyInfo::isIgnored: {
3120       // Treat like a character for now
3121       nextKeyIdx = getNextKey();
3122       break;
3123     }
3124     case KeyInfo::isMain: {
3125       if (interval_.par.substr(actual._dataStart, 2) == "% ")
3126         interval_.addIntervall(actual._dataStart, actual._dataStart+2);
3127       if (actual._tokenstart > 0) {
3128         int prev = interval_.previousNotIgnored(actual._tokenstart - 1);
3129         if ((prev >= 0) && interval_.par[prev] == '%')
3130           interval_.addIntervall(prev, prev+1);
3131       }
3132       if (actual.disabled) {
3133         removeHead(actual);
3134         interval_.langcount++;
3135         if ((interval_.par.substr(actual._dataStart, 3) == " \\[") ||
3136             (interval_.par.substr(actual._dataStart, 8) == " \\begin{")) {
3137           // Discard also the space before math-equation
3138           interval_.addIntervall(actual._dataStart, actual._dataStart+1);
3139         }
3140         nextKeyIdx = getNextKey();
3141         // interval.resetOpenedP(actual._dataStart-1);
3142       }
3143       else {
3144         if (actual._tokenstart < 26) {
3145           // for the first (and maybe dummy) language
3146           interval_.setForDefaultLang(actual);
3147         }
3148         interval_.resetOpenedP(actual._dataStart-1);
3149       }
3150       break;
3151     }
3152     case KeyInfo::invalid:
3153     case KeyInfo::headRemove:
3154       // These two cases cannot happen, already handled
3155       // fall through
3156     default: {
3157       // LYXERR(Debug::INFO, "Unhandled keytype");
3158       nextKeyIdx = getNextKey();
3159       break;
3160     }
3161   }
3162   return nextKeyIdx;
3163 }
3164
3165 int LatexInfo::process(ostringstream & os, KeyInfo const & actual )
3166 {
3167   int end = interval_.nextNotIgnored(actual._dataEnd);
3168   int oldStart = actual._dataStart;
3169   int nextKeyIdx = getNextKey();
3170   while (true) {
3171     if ((nextKeyIdx < 0) ||
3172         (entries_[nextKeyIdx]._tokenstart >= actual._dataEnd) ||
3173         (entries_[nextKeyIdx].keytype == KeyInfo::invalid)) {
3174       if (oldStart <= end) {
3175         processRegion(oldStart, end);
3176         oldStart = end+1;
3177       }
3178       break;
3179     }
3180     KeyInfo &nextKey = getKeyInfo(nextKeyIdx);
3181
3182     if ((nextKey.keytype == KeyInfo::isMain) && !nextKey.disabled) {
3183       (void) dispatch(os, actual._dataStart, nextKey);
3184       end = nextKey._tokenstart;
3185       break;
3186     }
3187     processRegion(oldStart, nextKey._tokenstart);
3188     nextKeyIdx = dispatch(os, actual._dataStart, nextKey);
3189
3190     oldStart = nextKey._dataEnd+1;
3191   }
3192   // now nextKey is either invalid or is outside of actual._dataEnd
3193   // output the remaining and discard myself
3194   if (oldStart <= end) {
3195     processRegion(oldStart, end);
3196   }
3197   if (interval_.par.size() > (size_t) end && interval_.par[end] == '}') {
3198     end += 1;
3199     // This is the normal case.
3200     // But if using the firstlanguage, the closing may be missing
3201   }
3202   // get minimum of 'end' and  'actual._dataEnd' in case that the nextKey.keytype was 'KeyInfo::isMain'
3203   int output_end;
3204   if (actual._dataEnd < end)
3205     output_end = interval_.nextNotIgnored(actual._dataEnd);
3206   else if (interval_.par.size() > (size_t) end)
3207     output_end = interval_.nextNotIgnored(end);
3208   else
3209     output_end = interval_.par.size();
3210   if ((actual.keytype == KeyInfo::isMain) && actual.disabled) {
3211     interval_.addIntervall(actual._tokenstart, actual._tokenstart+actual._tokensize);
3212   }
3213   // Remove possible empty data
3214   int dstart = interval_.nextNotIgnored(actual._dataStart);
3215   while (interval_.isOpeningPar(dstart) == 1) {
3216     interval_.addIntervall(dstart, dstart+1);
3217     int dend = interval_.findclosing(dstart+1, output_end);
3218     interval_.addIntervall(dend, dend+1);
3219     dstart = interval_.nextNotIgnored(dstart+1);
3220   }
3221   if (dstart < output_end)
3222     interval_.output(os, output_end);
3223   if (nextKeyIdx < 0)
3224     interval_.addIntervall(0, end);
3225   else
3226     interval_.addIntervall(actual._tokenstart, end);
3227   return nextKeyIdx;
3228 }
3229
3230 string splitOnKnownMacros(string par, bool isPatternString)
3231 {
3232   ostringstream os;
3233   LatexInfo li(par, isPatternString);
3234   // LYXERR(Debug::INFO, "Berfore split: " << par);
3235   KeyInfo DummyKey = KeyInfo(KeyInfo::KeyType::isMain, 2, true);
3236   DummyKey.head = "";
3237   DummyKey._tokensize = 0;
3238   DummyKey._dataStart = 0;
3239   DummyKey._dataEnd = par.length();
3240   DummyKey.disabled = true;
3241   int firstkeyIdx = li.getFirstKey();
3242   string s;
3243   if (firstkeyIdx >= 0) {
3244     KeyInfo firstKey = li.getKeyInfo(firstkeyIdx);
3245     DummyKey._tokenstart = firstKey._tokenstart;
3246     int nextkeyIdx;
3247     if ((firstKey.keytype != KeyInfo::isMain) || firstKey.disabled) {
3248       // Use dummy firstKey
3249       firstKey = DummyKey;
3250       (void) li.setNextKey(firstkeyIdx);
3251     }
3252     else {
3253       if (par.substr(firstKey._dataStart, 2) == "% ")
3254         li.addIntervall(firstKey._dataStart, firstKey._dataStart+2);
3255     }
3256     nextkeyIdx = li.process(os, firstKey);
3257     while (nextkeyIdx >= 0) {
3258       // Check for a possible gap between the last
3259       // entry and this one
3260       int datastart = li.nextNotIgnored(firstKey._dataStart);
3261       KeyInfo &nextKey = li.getKeyInfo(nextkeyIdx);
3262       if ((nextKey._tokenstart > datastart)) {
3263         // Handle the gap
3264         firstKey._dataStart = datastart;
3265         firstKey._dataEnd = par.length();
3266         (void) li.setNextKey(nextkeyIdx);
3267         // Fake the last opened parenthesis
3268         li.setForDefaultLang(firstKey);
3269         nextkeyIdx = li.process(os, firstKey);
3270       }
3271       else {
3272         if (nextKey.keytype != KeyInfo::isMain) {
3273           firstKey._dataStart = datastart;
3274           firstKey._dataEnd = nextKey._dataEnd+1;
3275           (void) li.setNextKey(nextkeyIdx);
3276           li.setForDefaultLang(firstKey);
3277           nextkeyIdx = li.process(os, firstKey);
3278         }
3279         else {
3280           nextkeyIdx = li.process(os, nextKey);
3281         }
3282       }
3283     }
3284     // Handle the remaining
3285     firstKey._dataStart = li.nextNotIgnored(firstKey._dataStart);
3286     firstKey._dataEnd = par.length();
3287     // Check if ! empty
3288     if ((firstKey._dataStart < firstKey._dataEnd) &&
3289         (par[firstKey._dataStart] != '}')) {
3290       li.setForDefaultLang(firstKey);
3291       (void) li.process(os, firstKey);
3292     }
3293     s = os.str();
3294     if (s.empty()) {
3295       // return string definitelly impossible to match
3296       s = "\\foreignlanguage{ignore}{ }";
3297     }
3298   }
3299   else
3300     s = par;                            /* no known macros found */
3301   // LYXERR(Debug::INFO, "After split: " << s);
3302   return s;
3303 }
3304
3305 /*
3306  * Try to unify the language specs in the latexified text.
3307  * Resulting modified string is set to "", if
3308  * the searched tex does not contain all the features in the search pattern
3309  */
3310 static string correctlanguagesetting(string par, bool isPatternString, bool withformat, lyx::Buffer *pbuf = nullptr)
3311 {
3312         static Features regex_f;
3313         static int missed = 0;
3314         static bool regex_with_format = false;
3315
3316         int parlen = par.length();
3317
3318         while ((parlen > 0) && (par[parlen-1] == '\n')) {
3319                 parlen--;
3320         }
3321         if (isPatternString && (parlen > 0) && (par[parlen-1] == '~')) {
3322                 // Happens to be there in case of description or labeling environment
3323                 parlen--;
3324         }
3325         string result;
3326         if (withformat) {
3327                 // Split the latex input into pieces which
3328                 // can be digested by our search engine
3329                 LYXERR(Debug::FIND, "input: \"" << par << "\"");
3330                 if (isPatternString && (pbuf != nullptr)) { // Check if we should disable/enable test for language
3331                         // We check for polyglossia, because in runparams.flavor we use Flavor::XeTeX
3332                         string doclang = pbuf->params().language->polyglossia();
3333                         static regex langre("\\\\(foreignlanguage)\\{([^\\}]+)\\}");
3334                         smatch sub;
3335                         bool toIgnoreLang = true;
3336                         for (sregex_iterator it(par.begin(), par.end(), langre), end; it != end; ++it) {
3337                                 sub = *it;
3338                                 if (sub.str(2) != doclang) {
3339                                         toIgnoreLang = false;
3340                                         break;
3341                                 }
3342                         }
3343                         setIgnoreFormat("language", toIgnoreLang, false);
3344
3345                 }
3346                 result = splitOnKnownMacros(par.substr(0,parlen), isPatternString);
3347                 LYXERR(Debug::FIND, "After splitOnKnownMacros:\n\"" << result << "\"");
3348         }
3349         else
3350                 result = par.substr(0, parlen);
3351         if (isPatternString) {
3352                 missed = 0;
3353                 if (withformat) {
3354                         regex_f = identifyFeatures(result);
3355                         string features = "";
3356                         for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
3357                                 string a = it->first;
3358                                 regex_with_format = true;
3359                                 features += " " + a;
3360                                 // LYXERR(Debug::INFO, "Identified regex format:" << a);
3361                         }
3362                         LYXERR(Debug::FIND, "Identified Features" << features);
3363
3364                 }
3365         } else if (regex_with_format) {
3366                 Features info = identifyFeatures(result);
3367                 for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
3368                         string a = it->first;
3369                         bool b = it->second;
3370                         if (b && ! info[a]) {
3371                                 missed++;
3372                                 LYXERR(Debug::FIND, "Missed(" << missed << " " << a <<", srclen = " << parlen );
3373                                 return "";
3374                         }
3375                 }
3376
3377         }
3378         else {
3379                 // LYXERR(Debug::INFO, "No regex formats");
3380         }
3381         return result;
3382 }
3383
3384
3385 // Remove trailing closure of math, macros and environments, so to catch parts of them.
3386 static int identifyClosing(string & t)
3387 {
3388         int open_braces = 0;
3389         do {
3390                 LYXERR(Debug::FIND, "identifyClosing(): t now is '" << t << "'");
3391                 if (regex_replace(t, t, "(.*[^\\\\])\\$$", "$1"))
3392                         continue;
3393                 if (regex_replace(t, t, "(.*[^\\\\])\\\\\\]$", "$1"))
3394                         continue;
3395                 if (regex_replace(t, t, "(.*[^\\\\])\\\\end\\{[a-zA-Z_]*\\*?\\}$", "$1"))
3396                         continue;
3397                 if (regex_replace(t, t, "(.*[^\\\\])\\}$", "$1")) {
3398                         ++open_braces;
3399                         continue;
3400                 }
3401                 break;
3402         } while (true);
3403         return open_braces;
3404 }
3405
3406 static int num_replaced = 0;
3407 static bool previous_single_replace = true;
3408
3409 void MatchStringAdv::CreateRegexp(FindAndReplaceOptions const & opt, string regexp_str, string regexp2_str, string par_as_string)
3410 {
3411 #if QTSEARCH
3412         // Handle \w properly
3413         QRegularExpression::PatternOptions popts = QRegularExpression::UseUnicodePropertiesOption | QRegularExpression::MultilineOption;
3414         if (! opt.casesensitive) {
3415                 popts |= QRegularExpression::CaseInsensitiveOption;
3416         }
3417         regexp = QRegularExpression(QString::fromStdString(regexp_str), popts);
3418         regexp2 = QRegularExpression(QString::fromStdString(regexp2_str), popts);
3419         regexError = "";
3420         if (regexp.isValid() && regexp2.isValid()) {
3421                 regexIsValid = true;
3422                 // Check '{', '}' pairs inside the regex
3423                 int balanced = 0;
3424                 int skip = 1;
3425                 for (unsigned i = 0; i < par_as_string.size(); i+= skip) {
3426                         char c = par_as_string[i];
3427                         if (c == '\\') {
3428                                 skip = 2;
3429                                 continue;
3430                         }
3431                         if (c == '{')
3432                                 balanced++;
3433                         else if (c == '}') {
3434                                 balanced--;
3435                                 if (balanced < 0)
3436                                         break;
3437                         }
3438                         skip = 1;
3439                 }
3440                 if (balanced != 0) {
3441                         regexIsValid = false;
3442                         regexError = "Unbalanced curly brackets in regexp \"" + regexp_str + "\"";
3443                 }
3444         }
3445         else {
3446                 regexIsValid = false;
3447                 if (!regexp.isValid())
3448                         regexError += "Invalid regexp \"" + regexp_str + "\", error = " + regexp.errorString().toStdString();
3449                 else
3450                         regexError += "Invalid regexp2 \"" + regexp2_str + "\", error = " + regexp2.errorString().toStdString();
3451         }
3452 #else
3453         (void)par_as_string;
3454         if (opt.casesensitive) {
3455                 regexp = regex(regexp_str);
3456                 regexp2 = regex(regexp2_str);
3457         }
3458         else {
3459                 regexp = regex(regexp_str, std::regex_constants::icase);
3460                 regexp2 = regex(regexp2_str, std::regex_constants::icase);
3461         }
3462 #endif
3463 }
3464
3465 static void modifyRegexForMatchWord(string &t)
3466 {
3467         string s("");
3468         regex wordre("(\\\\)*((\\.|\\\\b))");
3469         size_t lastpos = 0;
3470         smatch sub;
3471         for (sregex_iterator it(t.begin(), t.end(), wordre), end; it != end; ++it) {
3472                 sub = *it;
3473                 if ((sub.position(2) - sub.position(0)) % 2 == 1) {
3474                         continue;
3475                 }
3476                 else if (sub.str(2) == "\\\\b")
3477                         return;
3478                 if (lastpos < (size_t) sub.position(2))
3479                         s += t.substr(lastpos, sub.position(2) - lastpos);
3480                 s += "\\S";
3481                 lastpos = sub.position(2) + sub.length(2);
3482         }
3483         if (lastpos == 0) {
3484                 s = "\\b" + t + "\\b";
3485                 t = s;
3486                 return;
3487         }
3488         else if (lastpos < t.length())
3489                 s += t.substr(lastpos, t.length() - lastpos);
3490       t = "\\b" + s + "\\b";
3491 }
3492
3493 MatchStringAdv::MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions & opt)
3494         : p_buf(&buf), p_first_buf(&buf), opt(opt)
3495 {
3496         Buffer & find_buf = *theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true);
3497         docstring const & ds = stringifySearchBuffer(find_buf, opt);
3498         use_regexp = lyx::to_utf8(ds).find("\\regexp{") != std::string::npos;
3499         if (opt.replace_all && previous_single_replace) {
3500                 previous_single_replace = false;
3501                 num_replaced = 0;
3502         }
3503         else if (!opt.replace_all) {
3504                 num_replaced = 0;       // count number of replaced strings
3505                 previous_single_replace = true;
3506         }
3507         // When using regexp, braces are hacked already by escape_for_regex()
3508         par_as_string = normalize(ds);
3509         open_braces = 0;
3510         close_wildcards = 0;
3511
3512         size_t lead_size = 0;
3513         // correct the language settings
3514         par_as_string = correctlanguagesetting(par_as_string, true, !opt.ignoreformat, &buf);
3515         opt.matchAtStart = false;
3516         if (!use_regexp) {
3517                 identifyClosing(par_as_string); // Removes math closings ($, ], ...) at end of string
3518                 if (opt.ignoreformat) {
3519                         lead_size = 0;
3520                 }
3521                 else {
3522                         lead_size = identifyLeading(par_as_string);
3523                 }
3524                 lead_as_string = par_as_string.substr(0, lead_size);
3525                 string lead_as_regex_string = string2regex(lead_as_string);
3526                 par_as_string_nolead = par_as_string.substr(lead_size, par_as_string.size() - lead_size);
3527                 string par_as_regex_string_nolead = string2regex(par_as_string_nolead);
3528                 /* Handle whole words too in this case
3529                 */
3530                 if (opt.matchword) {
3531                         par_as_regex_string_nolead = "\\b" + par_as_regex_string_nolead + "\\b";
3532                         opt.matchword = false;
3533                 }
3534                 string regexp_str = "(" + lead_as_regex_string + ")()" + par_as_regex_string_nolead;
3535                 string regexp2_str = "(" + lead_as_regex_string + ")(.*?)" + par_as_regex_string_nolead;
3536                 CreateRegexp(opt, regexp_str, regexp2_str);
3537                 use_regexp = true;
3538                 LYXERR(Debug::FIND, "Setting regexp to : '" << regexp_str << "'");
3539                 LYXERR(Debug::FIND, "Setting regexp2 to: '" << regexp2_str << "'");
3540                 return;
3541         }
3542
3543         if (!opt.ignoreformat) {
3544                 lead_size = identifyLeading(par_as_string);
3545                 LYXERR(Debug::FIND, "Lead_size: " << lead_size);
3546                 lead_as_string = par_as_string.substr(0, lead_size);
3547                 par_as_string_nolead = par_as_string.substr(lead_size, par_as_string.size() - lead_size);
3548         }
3549
3550         // Here we are using regexp
3551         LASSERT(use_regexp, /**/);
3552         {
3553                 string lead_as_regexp;
3554                 if (lead_size > 0) {
3555                         lead_as_regexp = string2regex(par_as_string.substr(0, lead_size));
3556                         (void)regex_replace(par_as_string_nolead, par_as_string_nolead, "\\$$", "");
3557                         (void)regex_replace(par_as_string_nolead, par_as_string_nolead, "}$", "");
3558                         par_as_string = par_as_string_nolead;
3559                         LYXERR(Debug::FIND, "lead_as_regexp is '" << lead_as_regexp << "'");
3560                         LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
3561                 }
3562                 // LYXERR(Debug::FIND, "par_as_string before escape_for_regex() is '" << par_as_string << "'");
3563                 par_as_string = escape_for_regex(par_as_string, !opt.ignoreformat);
3564                 // Insert (.*?) before trailing closure of math, macros and environments, so to catch parts of them.
3565                 // LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
3566                 ++close_wildcards;
3567                 size_t lng = par_as_string.size();
3568                 if (!opt.ignoreformat) {
3569                         // Remove extra '\}' at end if not part of \{\.\}
3570                         while(lng > 2) {
3571                                 if (par_as_string.substr(lng-2, 2).compare("\\}") == 0) {
3572                                         if (lng >= 6) {
3573                                                 if (par_as_string.substr(lng-6,3).compare("\\{\\") == 0)
3574                                                         break;
3575                                         }
3576                                         lng -= 2;
3577                                         open_braces++;
3578                                 }
3579                                 else
3580                                         break;
3581                         }
3582                         if (lng < par_as_string.size())
3583                                 par_as_string = par_as_string.substr(0,lng);
3584                 }
3585                 LYXERR(Debug::FIND, "par_as_string after correctRegex is '" << par_as_string << "'");
3586                 if ((lng > 0) && (par_as_string[0] == '^')) {
3587                         par_as_string = par_as_string.substr(1);
3588                         --lng;
3589                         opt.matchAtStart = true;
3590                 }
3591                 // LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
3592                 // LYXERR(Debug::FIND, "Open braces: " << open_braces);
3593                 // LYXERR(Debug::FIND, "Replaced text (to be used as regex): " << par_as_string);
3594
3595                 // If entered regexp must match at begin of searched string buffer
3596                 // Kornel: Added parentheses to use $1 for size of the leading string
3597                 string regexp_str;
3598                 string regexp2_str;
3599                 {
3600                         // TODO: Adapt '\[12345678]' in par_as_string to acount for the first '()
3601                         // Unfortunately is '\1', '\2', etc not working for strings with extra format
3602                         // so the convert has no effect in that case
3603                         for (int i = 7; i > 0; --i) {
3604                                 string orig = "\\\\" + std::to_string(i);
3605                                 string dest = "\\" + std::to_string(i+2);
3606                                 while (regex_replace(par_as_string, par_as_string, orig, dest));
3607                         }
3608                         if (opt.matchword) {
3609                                 modifyRegexForMatchWord(par_as_string);
3610                                 opt.matchword = false;
3611                         }
3612                         regexp_str = "(" + lead_as_regexp + ")()" + par_as_string;
3613                         regexp2_str = "(" + lead_as_regexp + ")(.*?)" + par_as_string;
3614                 }
3615                 LYXERR(Debug::FIND, "Setting regexp to : '" << regexp_str << "'");
3616                 LYXERR(Debug::FIND, "Setting regexp2 to: '" << regexp2_str << "'");
3617                 CreateRegexp(opt, regexp_str, regexp2_str, par_as_string);
3618         }
3619 }
3620
3621 MatchResult MatchStringAdv::findAux(DocIterator const & cur, int len, bool at_begin) const
3622 {
3623         MatchResult mres;
3624
3625         mres.searched_size = len;
3626         if (at_begin &&
3627                 (opt.restr == FindAndReplaceOptions::R_ONLY_MATHS && !cur.inMathed()) )
3628                 return mres;
3629
3630         docstring docstr = stringifyFromForSearch(opt, cur, len);
3631         string str;
3632         str = normalize(docstr);
3633         if (!opt.ignoreformat) {
3634                 str = correctlanguagesetting(str, false, !opt.ignoreformat);
3635                 // remove closing '}' and '\n' to allow for use of '$' in regex
3636                 size_t lng = str.size();
3637                 while ((lng > 1) && ((str[lng -1] == '}') || (str[lng -1] == '\n')))
3638                         lng--;
3639                 if (lng != str.size()) {
3640                         str = str.substr(0, lng);
3641                 }
3642         }
3643         if (str.empty()) {
3644                 mres.match_len = -1;
3645                 return mres;
3646         }
3647         LYXERR(Debug::FIND, "After normalization: Matching against:\n'" << str << "'");
3648
3649         LASSERT(use_regexp, /**/);
3650         {
3651                 // use_regexp always true
3652                 LYXERR(Debug::FIND, "Searching in regexp mode: at_begin=" << at_begin);
3653 #if QTSEARCH
3654                 QString qstr = QString::fromStdString(str);
3655                 QRegularExpression const *p_regexp;
3656                 QRegularExpression::MatchType flags = QRegularExpression::NormalMatch;
3657                 if (at_begin) {
3658                         p_regexp = &regexp;
3659                 } else {
3660                         p_regexp = &regexp2;
3661                 }
3662                 QRegularExpressionMatch match = p_regexp->match(qstr, 0, flags);
3663                 if (!match.hasMatch())
3664                         return mres;
3665 #else
3666                 regex const *p_regexp;
3667                 regex_constants::match_flag_type flags;
3668                 if (at_begin) {
3669                         flags = regex_constants::match_continuous;
3670                         p_regexp = &regexp;
3671                 } else {
3672                         flags = regex_constants::match_default;
3673                         p_regexp = &regexp2;
3674                 }
3675                 sregex_iterator re_it(str.begin(), str.end(), *p_regexp, flags);
3676                 if (re_it == sregex_iterator())
3677                         return mres;
3678                 match_results<string::const_iterator> const & m = *re_it;
3679 #endif
3680                 // Whole found string, including the leading
3681                 // std: m[0].second - m[0].first
3682                 // Qt: match.capturedEnd(0) - match.capturedStart(0)
3683                 //
3684                 // Size of the leading string
3685                 // std: m[1].second - m[1].first
3686                 // Qt: match.capturedEnd(1) - match.capturedStart(1)
3687                 int leadingsize = 0;
3688 #if QTSEARCH
3689                 if (match.lastCapturedIndex() > 0) {
3690                         leadingsize = match.capturedEnd(1) - match.capturedStart(1);
3691                 }
3692
3693 #else
3694                 if (m.size() > 2) {
3695                         leadingsize = m[1].second - m[1].first;
3696                 }
3697 #endif
3698 #if QTSEARCH
3699                 mres.match_prefix = match.capturedEnd(2) - match.capturedStart(2);
3700                 mres.match_len = match.capturedEnd(0) - match.capturedEnd(2);
3701                 // because of different number of closing at end of string
3702                 // we have to 'unify' the length of the post-match.
3703                 // Done by ignoring closing parenthesis and linefeeds at string end
3704                 int matchend = match.capturedEnd(0);
3705                 size_t strsize = qstr.size();
3706                 if (!opt.ignoreformat) {
3707                         while (mres.match_len > 0) {
3708                                 QChar c = qstr.at(matchend - 1);
3709                                 if ((c == '\n') || (c == '}') || (c == '{')) {
3710                                         mres.match_len--;
3711                                         matchend--;
3712                                 }
3713                                 else
3714                                         break;
3715                         }
3716                         while (strsize > (size_t) match.capturedEnd(0)) {
3717                                 QChar c = qstr.at(strsize-1);
3718                                 if ((c == '\n') || (c == '}')) {
3719                                         --strsize;
3720                                 }
3721                                 else
3722                                         break;
3723                         }
3724                 }
3725                 // LYXERR0(qstr.toStdString());
3726                 mres.match2end = strsize - matchend;
3727                 mres.pos = match.capturedStart(2);
3728 #else
3729                 mres.match_prefix = m[2].second - m[2].first;
3730                 mres.match_len = m[0].second - m[2].second;
3731                 // ignore closing parenthesis and linefeeds at string end
3732                 size_t strend = m[0].second - m[0].first;
3733                 int matchend = strend;
3734                 size_t strsize = str.size();
3735                 if (!opt.ignoreformat) {
3736                         while (mres.match_len > 0) {
3737                                 char c = str.at(matchend - 1);
3738                                 if ((c == '\n') || (c == '}') || (c == '{')) {
3739                                         mres.match_len--;
3740                                         matchend--;
3741                                 }
3742                                 else
3743                                         break;
3744                         }
3745                         while (strsize > strend) {
3746                                 if ((str.at(strsize-1) == '}') || (str.at(strsize-1) == '\n')) {
3747                                         --strsize;
3748                                 }
3749                                 else
3750                                         break;
3751                         }
3752                 }
3753                 // LYXERR0(str);
3754                 mres.match2end = strsize - matchend;
3755                 mres.pos = m[2].first - m[0].first;;
3756 #endif
3757                 if (mres.match2end < 0)
3758                   mres.match_len = 0;
3759                 mres.leadsize = leadingsize;
3760 #if QTSEARCH
3761                 if (mres.match_len > 0) {
3762                   string a0 = match.captured(0).mid(mres.pos + mres.match_prefix, mres.match_len).toStdString();
3763                   mres.result.push_back(a0);
3764                   for (int i = 3; i <= match.lastCapturedIndex(); i++) {
3765                     mres.result.push_back(match.captured(i).toStdString());
3766                   }
3767                 }
3768 #else
3769                 if (mres.match_len > 0) {
3770                   string a0 = m[0].str().substr(mres.pos + mres.match_prefix, mres.match_len);
3771                   mres.result.push_back(a0);
3772                   for (size_t i = 3; i < m.size(); i++) {
3773                     mres.result.push_back(m[i]);
3774                   }
3775                 }
3776 #endif
3777                 return mres;
3778         }
3779 }
3780
3781
3782 MatchResult MatchStringAdv::operator()(DocIterator const & cur, int len, bool at_begin) const
3783 {
3784         MatchResult mres = findAux(cur, len, at_begin);
3785         int res = mres.match_len;
3786         LYXERR(Debug::FIND,
3787                "res=" << res << ", at_begin=" << at_begin
3788                << ", matchAtStart=" << opt.matchAtStart
3789                << ", inTexted=" << cur.inTexted());
3790         if (opt.matchAtStart) {
3791                 if (cur.pos() != 0)
3792                         mres.match_len = 0;
3793                 else if (mres.match_prefix > 0)
3794                         mres.match_len = 0;
3795                 return mres;
3796         }
3797         else
3798                 return mres;
3799 }
3800
3801 #if 0
3802 static bool simple_replace(string &t, string from, string to)
3803 {
3804   regex repl("(\\\\)*(" + from + ")");
3805   string s("");
3806   size_t lastpos = 0;
3807   smatch sub;
3808   for (sregex_iterator it(t.begin(), t.end(), repl), end; it != end; ++it) {
3809     sub = *it;
3810     if ((sub.position(2) - sub.position(0)) % 2 == 1)
3811       continue;
3812     if (lastpos < (size_t) sub.position(2))
3813       s += t.substr(lastpos, sub.position(2) - lastpos);
3814     s += to;
3815     lastpos = sub.position(2) + sub.length(2);
3816   }
3817   if (lastpos == 0)
3818     return false;
3819   else if (lastpos < t.length())
3820     s += t.substr(lastpos, t.length() - lastpos);
3821   t = s;
3822   return true;
3823 }
3824 #endif
3825
3826 string MatchStringAdv::normalize(docstring const & s) const
3827 {
3828         string t;
3829         t = lyx::to_utf8(s);
3830         // Remove \n at begin
3831         while (!t.empty() && t[0] == '\n')
3832                 t = t.substr(1);
3833         // Remove \n at end
3834         while (!t.empty() && t[t.size() - 1] == '\n')
3835                 t = t.substr(0, t.size() - 1);
3836         size_t pos;
3837         // Handle all other '\n'
3838         while ((pos = t.find("\n")) != string::npos) {
3839                 if (pos > 1 && t[pos-1] == '\\' && t[pos-2] == '\\' ) {
3840                         // Handle '\\\n'
3841                         if (isAlnumASCII(t[pos+1])) {
3842                                 t.replace(pos-2, 3, " ");
3843                         }
3844                         else {
3845                                 t.replace(pos-2, 3, "");
3846                         }
3847                 }
3848                 else if (!isAlnumASCII(t[pos+1]) || !isAlnumASCII(t[pos-1])) {
3849                         // '\n' adjacent to non-alpha-numerics, discard
3850                         t.replace(pos, 1, "");
3851                 }
3852                 else {
3853                         // Replace all other \n with spaces
3854                         t.replace(pos, 1, " ");
3855                 }
3856         }
3857         // Remove stale empty \emph{}, \textbf{} and similar blocks from latexify
3858         // Kornel: Added textsl, textsf, textit, texttt and noun
3859         // + allow to seach for colored text too
3860         LYXERR(Debug::FIND, "Removing stale empty macros from: " << t);
3861         while (regex_replace(t, t, "\\\\(emph|noun|text(bf|sl|sf|it|tt)|(u|uu)line|(s|x)out|uwave)(\\{(\\{\\})?\\})+", ""))
3862                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
3863         while (regex_replace(t, t, "\\\\((sub)?(((sub)?section)|paragraph)|part)\\*?(\\{(\\{\\})?\\})+", ""))
3864                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
3865         while (regex_replace(t, t, "\\\\(foreignlanguage|textcolor|item)\\{[a-z]+\\}(\\{(\\{\\})?\\})+", ""));
3866
3867         return t;
3868 }
3869
3870
3871 docstring stringifyFromCursor(DocIterator const & cur, int len)
3872 {
3873         LYXERR(Debug::FIND, "Stringifying with len=" << len << " from cursor at pos: " << cur);
3874         if (cur.inTexted()) {
3875                 Paragraph const & par = cur.paragraph();
3876                 // TODO what about searching beyond/across paragraph breaks ?
3877                 // TODO Try adding a AS_STR_INSERTS as last arg
3878                 pos_type end = ( len == -1 || cur.pos() + len > int(par.size()) ) ?
3879                         int(par.size()) : cur.pos() + len;
3880                 // OutputParams runparams(&cur.buffer()->params().encoding());
3881                 OutputParams runparams(encodings.fromLyXName("utf8"));
3882                 runparams.nice = true;
3883                 runparams.flavor = Flavor::XeTeX;
3884                 runparams.linelen = 10000; //lyxrc.plaintext_linelen;
3885                 // No side effect of file copying and image conversion
3886                 runparams.dryrun = true;
3887                 int option = AS_STR_INSETS | AS_STR_PLAINTEXT;
3888                 if (ignoreFormats.getDeleted()) {
3889                         option |= AS_STR_SKIPDELETE;
3890                         runparams.for_searchAdv = OutputParams::SearchWithoutDeleted;
3891                 }
3892                 else {
3893                         runparams.for_searchAdv = OutputParams::SearchWithDeleted;
3894                 }
3895                 if (ignoreFormats.getNonContent()) {
3896                         runparams.for_searchAdv |= OutputParams::SearchNonOutput;
3897                 }
3898                 LYXERR(Debug::FIND, "Stringifying with cur: "
3899                         << cur << ", from pos: " << cur.pos() << ", end: " << end);
3900                 return from_utf8(latexNamesToUtf8(par.asString(cur.pos(), end,
3901                                                                 option,
3902                                                                 &runparams)));
3903         } else if (cur.inMathed()) {
3904                 CursorSlice cs = cur.top();
3905                 MathData md = cs.cell();
3906                 MathData::const_iterator it_end =
3907                         (( len == -1 || cs.pos() + len > int(md.size()))
3908                          ? md.end()
3909                          : md.begin() + cs.pos() + len );
3910                 MathData md2;
3911                 for (MathData::const_iterator it = md.begin() + cs.pos(); it != it_end; ++it)
3912                         md2.push_back(*it);
3913                 docstring s = from_utf8(latexNamesToUtf8(asString(md2)));
3914                 LYXERR(Debug::FIND, "Stringified math: '" << s << "'");
3915                 return s;
3916         }
3917         LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
3918         return docstring();
3919 }
3920
3921 /** Computes the LaTeX export of buf starting from cur and ending len positions
3922  * after cur, if len is positive, or at the paragraph or innermost inset end
3923  * if len is -1.
3924  */
3925 docstring latexifyFromCursor(DocIterator const & cur, int len)
3926 {
3927         /*
3928         LYXERR(Debug::FIND, "Latexifying with len=" << len << " from cursor at pos: " << cur);
3929         LYXERR(Debug::FIND, "  with cur.lastpost=" << cur.lastpos() << ", cur.lastrow="
3930                << cur.lastrow() << ", cur.lastcol=" << cur.lastcol());
3931         */
3932         Buffer const & buf = *cur.buffer();
3933
3934         odocstringstream ods;
3935         otexstream os(ods);
3936         //OutputParams runparams(&buf.params().encoding());
3937         OutputParams runparams(encodings.fromLyXName("utf8"));
3938         runparams.nice = false;
3939         runparams.flavor = Flavor::XeTeX;
3940         runparams.linelen = 8000; //lyxrc.plaintext_linelen;
3941         // No side effect of file copying and image conversion
3942         runparams.dryrun = true;
3943         if (ignoreFormats.getDeleted()) {
3944                 runparams.for_searchAdv = OutputParams::SearchWithoutDeleted;
3945         }
3946         else {
3947                 runparams.for_searchAdv = OutputParams::SearchWithDeleted;
3948         }
3949         if (ignoreFormats.getNonContent()) {
3950                 runparams.for_searchAdv |= OutputParams::SearchNonOutput;
3951         }
3952
3953         if (cur.inTexted()) {
3954                 // @TODO what about searching beyond/across paragraph breaks ?
3955                 pos_type endpos = cur.paragraph().size();
3956                 if (len != -1 && endpos > cur.pos() + len)
3957                         endpos = cur.pos() + len;
3958                 TeXOnePar(buf, *cur.innerText(), cur.pit(), os, runparams,
3959                           string(), cur.pos(), endpos);
3960                 string s = lyx::to_utf8(ods.str());
3961                 LYXERR(Debug::FIND, "Latexified +modified text: '" << s << "'");
3962                 return(lyx::from_utf8(s));
3963         } else if (cur.inMathed()) {
3964                 // Retrieve the math environment type, and add '$' or '$[' or others (\begin{equation}) accordingly
3965                 for (int s = cur.depth() - 1; s >= 0; --s) {
3966                         CursorSlice const & cs = cur[s];
3967                         if (cs.asInsetMath() && cs.asInsetMath()->asHullInset()) {
3968                                 TeXMathStream ws(os);
3969                                 cs.asInsetMath()->asHullInset()->header_write(ws);
3970                                 break;
3971                         }
3972                 }
3973
3974                 CursorSlice const & cs = cur.top();
3975                 MathData md = cs.cell();
3976                 MathData::const_iterator it_end =
3977                         ((len == -1 || cs.pos() + len > int(md.size()))
3978                          ? md.end()
3979                          : md.begin() + cs.pos() + len);
3980                 MathData md2;
3981                 for (MathData::const_iterator it = md.begin() + cs.pos();
3982                      it != it_end; ++it)
3983                         md2.push_back(*it);
3984
3985                 ods << asString(md2);
3986                 // Retrieve the math environment type, and add '$' or '$]'
3987                 // or others (\end{equation}) accordingly
3988                 for (int s = cur.depth() - 1; s >= 0; --s) {
3989                         CursorSlice const & cs2 = cur[s];
3990                         InsetMath * inset = cs2.asInsetMath();
3991                         if (inset && inset->asHullInset()) {
3992                                 TeXMathStream ws(os);
3993                                 inset->asHullInset()->footer_write(ws);
3994                                 break;
3995                         }
3996                 }
3997                 LYXERR(Debug::FIND, "Latexified math: '" << lyx::to_utf8(ods.str()) << "'");
3998         } else {
3999                 LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
4000         }
4001         return ods.str();
4002 }
4003
4004 #if defined(ResultsDebug)
4005 // Debugging output
4006 static void displayMResult(MatchResult &mres, string from, DocIterator & cur)
4007 {
4008         LYXERR0( "from:\t\t\t" << from);
4009         string status;
4010         if (mres.pos_len > 0) {
4011                 // Set in finalize
4012                 status = "FINALSEARCH";
4013         }
4014         else {
4015                 if (mres.match_len > 0) {
4016                         if ((mres.match_prefix == 0) && (mres.pos == mres.leadsize))
4017                                 status = "Good Match";
4018                         else
4019                                 status = "Matched in";
4020                 }
4021                 else
4022                         status = "MissedSearch";
4023         }
4024
4025         LYXERR0( status << "(" << cur.pos() << " ... " << mres.searched_size + cur.pos() << ") cur.lastpos(" << cur.lastpos() << ")");
4026         if ((mres.leadsize > 0) || (mres.match_len > 0) || (mres.match2end > 0))
4027                 LYXERR0( "leadsize(" << mres.leadsize << ") match_len(" << mres.match_len << ") match2end(" << mres.match2end << ")");
4028         if ((mres.pos > 0) || (mres.match_prefix > 0))
4029                 LYXERR0( "pos(" << mres.pos << ") match_prefix(" << mres.match_prefix << ")");
4030         for (size_t i = 0; i < mres.result.size(); i++)
4031                 LYXERR0( "Match " << i << " = \"" << mres.result[i] << "\"");
4032 }
4033         #define displayMres(s, txt, cur) displayMResult(s, txt, cur);
4034 #else
4035         #define displayMres(s, txt, cur)
4036 #endif
4037
4038 /** Finalize an advanced find operation, advancing the cursor to the innermost
4039  ** position that matches, plus computing the length of the matching text to
4040  ** be selected
4041  ** Return the cur.pos() difference between start and end of found match
4042  **/
4043 MatchResult findAdvFinalize(DocIterator & cur, MatchStringAdv const & match, MatchResult const & expected = MatchResult(-1))
4044 {
4045         // Search the foremost position that matches (avoids find of entire math
4046         // inset when match at start of it)
4047         DocIterator old_cur(cur.buffer());
4048         MatchResult mres;
4049         static MatchResult fail = MatchResult();
4050         MatchResult max_match;
4051         // If (prefix_len > 0) means that forwarding 1 position will remove the complete entry
4052         // Happens with e.g. hyperlinks
4053         // either one sees "http://www.bla.bla" or nothing
4054         // so the search for "www" gives prefix_len = 7 (== sizeof("http://")
4055         // and although we search for only 3 chars, we find the whole hyperlink inset
4056         bool at_begin = (expected.match_prefix == 0);
4057         if (!match.opt.forward && match.opt.ignoreformat) {
4058                 if (expected.pos > 0)
4059                         return fail;
4060         }
4061         LASSERT(at_begin, /**/);
4062         if (expected.match_len > 0 && at_begin) {
4063                 // Search for deepest match
4064                 old_cur = cur;
4065                 max_match = expected;
4066                 do {
4067                         size_t d = cur.depth();
4068                         cur.forwardPos();
4069                         if (!cur)
4070                                 break;
4071                         if (cur.depth() < d)
4072                                 break;
4073                         if (cur.depth() == d)
4074                                 break;
4075                         size_t lastd = d;
4076                         while (cur && cur.depth() > lastd) {
4077                                 lastd = cur.depth();
4078                                 mres = match(cur, -1, at_begin);
4079                                 displayMres(mres, "Checking innermost", cur);
4080                                 if (mres.match_len > 0)
4081                                         break;
4082                                 // maybe deeper?
4083                                 cur.forwardPos();
4084                         }
4085                         if (mres.match_len < expected.match_len)
4086                                 break;
4087                         max_match = mres;
4088                         old_cur = cur;;
4089                 } while(1);
4090                 cur = old_cur;
4091         }
4092         else {
4093                 // (expected.match_len <= 0)
4094                 mres = match(cur);      /* match valid only if not searching whole words */
4095                 displayMres(mres, "Start with negative match", cur);
4096                 max_match = mres;
4097         }
4098         if (max_match.match_len <= 0) return fail;
4099         LYXERR(Debug::FIND, "Ok");
4100
4101         // Compute the match length
4102         int len = 1;
4103         if (cur.pos() + len > cur.lastpos())
4104           return fail;
4105
4106         LASSERT(match.use_regexp, /**/);
4107         {
4108           int minl = 1;
4109           int maxl = cur.lastpos() - cur.pos();
4110           // Greedy behaviour while matching regexps
4111           while (maxl > minl) {
4112             MatchResult mres2;
4113             mres2 = match(cur, len, at_begin);
4114             displayMres(mres2, "Finalize loop", cur);
4115             int actual_match_len = mres2.match_len;
4116             if (actual_match_len >= max_match.match_len) {
4117               // actual_match_len > max_match _can_ happen,
4118               // if the search area splits
4119               // some following word so that the regex
4120               // (e.g. 'r.*r\b' matches 'r' from the middle of the
4121               // splitted word)
4122               // This means, the len value is too big
4123               actual_match_len = max_match.match_len;
4124               max_match = mres2;
4125               max_match.match_len = actual_match_len;
4126               maxl = len;
4127               if (maxl - minl < 4)
4128                 len = (maxl + minl)/2;
4129               else
4130                 len = minl + (maxl - minl + 3)/4;
4131             }
4132             else {
4133               // (actual_match_len < max_match.match_len)
4134               minl = len + 1;
4135               len = (maxl + minl)/2;
4136             }
4137           }
4138           len = minl;
4139           old_cur = cur;
4140           // Search for real start of matched characters
4141           while (len > 1) {
4142             MatchResult actual_match;
4143             do {
4144               cur.forwardPos();
4145             } while (cur.depth() > old_cur.depth()); /* Skip inner insets */
4146             if (cur.depth() < old_cur.depth()) {
4147               // Outer inset?
4148               LYXERR(Debug::INFO, "cur.depth() < old_cur.depth(), this should never happen");
4149               break;
4150             }
4151             if (cur.pos() != old_cur.pos()) {
4152               // OK, forwarded 1 pos in actual inset
4153               actual_match = match(cur, len-1, at_begin);
4154               if (actual_match.match_len == max_match.match_len) {
4155                 // Ha, got it! The shorter selection has the same match length
4156                 len--;
4157                 old_cur = cur;
4158                 max_match = actual_match;
4159               }
4160               else {
4161                 // OK, the shorter selection matches less chars, revert to previous value
4162                 cur = old_cur;
4163                 break;
4164               }
4165             }
4166             else {
4167               LYXERR(Debug::INFO, "cur.pos() == old_cur.pos(), this should never happen");
4168               actual_match = match(cur, len, at_begin);
4169               if (actual_match.match_len == max_match.match_len) {
4170                 old_cur = cur;
4171                 max_match = actual_match;
4172               }
4173             }
4174           }
4175           if (len == 0)
4176             return fail;
4177           else {
4178             max_match.pos_len = len;
4179             displayMres(max_match, "SEARCH RESULT", cur)
4180             return max_match;
4181           }
4182         }
4183 }
4184
4185 /// Finds forward
4186 int findForwardAdv(DocIterator & cur, MatchStringAdv & match)
4187 {
4188         if (!cur)
4189                 return 0;
4190         bool repeat = false;
4191         DocIterator orig_cur;   // to be used if repeat not successful
4192         MatchResult orig_mres;
4193         while (!theApp()->longOperationCancelled() && cur) {
4194                 //(void) findAdvForwardInnermost(cur);
4195                 LYXERR(Debug::FIND, "findForwardAdv() cur: " << cur);
4196                 MatchResult mres = match(cur, -1, false);
4197                 string msg = "Starting";
4198                 if (repeat)
4199                         msg = "Repeated";
4200                 displayMres(mres, msg + " findForwardAdv", cur)
4201                 int match_len = mres.match_len;
4202                 if ((mres.pos > 100000) || (mres.match2end > 100000) || (match_len > 100000)) {
4203                         LYXERR(Debug::INFO, "BIG LENGTHS: " << mres.pos << ", " << match_len << ", " << mres.match2end);
4204                         match_len = 0;
4205                 }
4206                 if (match_len <= 0) {
4207                         // This should exit nested insets, if any, or otherwise undefine the currsor.
4208                         cur.pos() = cur.lastpos();
4209                         LYXERR(Debug::FIND, "Advancing pos: cur=" << cur);
4210                         cur.forwardPos();
4211                 }
4212                 else {  // match_len > 0
4213                         // Try to find the begin of searched string
4214                         int increment;
4215                         int firstInvalid = cur.lastpos() - cur.pos();
4216                         {
4217                                 int incrmatch = (mres.match_prefix + mres.pos - mres.leadsize + 1)*3/4;
4218                                 int incrcur = (firstInvalid + 1 )*3/4;
4219                                 if (incrcur < incrmatch)
4220                                         increment = incrcur;
4221                                 else
4222                                         increment = incrmatch;
4223                                 if (increment < 1)
4224                                         increment = 1;
4225                         }
4226                         LYXERR(Debug::FIND, "Set increment to " << increment);
4227                         while (increment > 0) {
4228                                 DocIterator old_cur = cur;
4229                                 if (cur.pos() + increment >= cur.lastpos()) {
4230                                         increment /= 2;
4231                                         continue;
4232                                 }
4233                                 cur.pos() = cur.pos() + increment;
4234                                 MatchResult mres2 = match(cur, -1, false);
4235                                 displayMres(mres2, "findForwardAdv loop", cur)
4236                                 switch (interpretMatch(mres, mres2)) {
4237                                         case MatchResult::newIsTooFar:
4238                                                 // behind the expected match
4239                                                 firstInvalid = increment;
4240                                                 cur = old_cur;
4241                                                 increment /= 2;
4242                                                 break;
4243                                         case MatchResult::newIsBetter:
4244                                                 // not reached yet, but cur.pos()+increment is bettert
4245                                                 mres = mres2;
4246                                                 firstInvalid -= increment;
4247                                                 if (increment > firstInvalid*3/4)
4248                                                         increment = firstInvalid*3/4;
4249                                                 if ((mres2.pos == mres2.leadsize) && (increment >= mres2.match_prefix)) {
4250                                                         if (increment >= mres2.match_prefix)
4251                                                                 increment = (mres2.match_prefix+1)*3/4;
4252                                                 }
4253                                                 break;
4254                                         default:
4255                                                 // Todo@
4256                                                 // Handle not like MatchResult::newIsTooFar
4257                                                 LYXERR0( "Probably too far: Increment = " << increment << " match_prefix = " << mres.match_prefix);
4258                                                 firstInvalid--;
4259                                                 increment = increment*3/4;
4260                                                 cur = old_cur;
4261                                         break;
4262                                 }
4263                         }
4264                         if (mres.match_len > 0) {
4265                                 if (mres.match_prefix + mres.pos - mres.leadsize > 0) {
4266                                         // The match seems to indicate some deeper level 
4267                                         repeat = true;
4268                                         orig_cur = cur;
4269                                         orig_mres = mres;
4270                                         cur.forwardPos();
4271                                         continue;
4272                                 }
4273                         }
4274                         else if (repeat) {
4275                                 // should never be reached.
4276                                 cur = orig_cur;
4277                                 mres = orig_mres;
4278                         }
4279                         // LYXERR0("Leaving first loop");
4280                         LYXERR(Debug::FIND, "Finalizing 1");
4281                         MatchResult found_match = findAdvFinalize(cur, match, mres);
4282                         if (found_match.match_len > 0) {
4283                                 LASSERT(found_match.pos_len > 0, /**/);
4284                                 match.FillResults(found_match);
4285                                 return found_match.pos_len;
4286                         }
4287                         else {
4288                                 // try next possible match
4289                                 cur.forwardPos();
4290                                 repeat = false;
4291                                 continue;
4292                         }
4293                 }
4294         }
4295         return 0;
4296 }
4297
4298
4299 /// Find the most backward consecutive match within same paragraph while searching backwards.
4300 MatchResult findMostBackwards(DocIterator & cur, MatchStringAdv const & match, MatchResult &expected)
4301 {
4302         DocIterator cur_begin = cur;
4303         cur_begin.pos() = 0;
4304         DocIterator tmp_cur = cur;
4305         MatchResult mr = findAdvFinalize(tmp_cur, match, expected);
4306         Inset & inset = cur.inset();
4307         for (; cur != cur_begin; cur.backwardPos()) {
4308                 LYXERR(Debug::FIND, "findMostBackwards(): cur=" << cur);
4309                 DocIterator new_cur = cur;
4310                 new_cur.backwardPos();
4311                 if (new_cur == cur || &new_cur.inset() != &inset || !match(new_cur).match_len)
4312                         break;
4313                 MatchResult new_mr = findAdvFinalize(new_cur, match, expected);
4314                 if (new_mr.match_len == mr.match_len)
4315                         break;
4316                 mr = new_mr;
4317         }
4318         LYXERR(Debug::FIND, "findMostBackwards(): exiting with cur=" << cur);
4319         return mr;
4320 }
4321
4322
4323 /// Finds backwards
4324 int findBackwardsAdv(DocIterator & cur, MatchStringAdv & match)
4325 {
4326         if (! cur)
4327                 return 0;
4328         // Backup of original position
4329         DocIterator cur_begin = doc_iterator_begin(cur.buffer());
4330         if (cur == cur_begin)
4331                 return 0;
4332         cur.backwardPos();
4333         DocIterator cur_orig(cur);
4334         bool pit_changed = false;
4335         do {
4336                 cur.pos() = 0;
4337                 MatchResult found_match = match(cur, -1, false);
4338
4339                 if (found_match.match_len > 0) {
4340                         if (pit_changed)
4341                                 cur.pos() = cur.lastpos();
4342                         else
4343                                 cur.pos() = cur_orig.pos();
4344                         LYXERR(Debug::FIND, "findBackAdv2: cur: " << cur);
4345                         DocIterator cur_prev_iter;
4346                         do {
4347                                 found_match = match(cur);
4348                                 LYXERR(Debug::FIND, "findBackAdv3: found_match="
4349                                        << (found_match.match_len > 0) << ", cur: " << cur);
4350                                 if (found_match.match_len > 0) {
4351                                         MatchResult found_mr = findMostBackwards(cur, match, found_match);
4352                                         if (found_mr.pos_len > 0) {
4353                                                 match.FillResults(found_mr);
4354                                                 return found_mr.pos_len;
4355                                         }
4356                                 }
4357
4358                                 // Stop if begin of document reached
4359                                 if (cur == cur_begin)
4360                                         break;
4361                                 cur_prev_iter = cur;
4362                                 cur.backwardPos();
4363                         } while (true);
4364                 }
4365                 if (cur == cur_begin)
4366                         break;
4367                 if (cur.pit() > 0)
4368                         --cur.pit();
4369                 else
4370                         cur.backwardPos();
4371                 pit_changed = true;
4372         } while (!theApp()->longOperationCancelled());
4373         return 0;
4374 }
4375
4376
4377 } // namespace
4378
4379
4380 docstring stringifyFromForSearch(FindAndReplaceOptions const & opt,
4381                                  DocIterator const & cur, int len)
4382 {
4383         if (cur.pos() < 0 || cur.pos() > cur.lastpos())
4384                 return docstring();
4385         if (!opt.ignoreformat)
4386                 return latexifyFromCursor(cur, len);
4387         else
4388                 return stringifyFromCursor(cur, len);
4389 }
4390
4391
4392 FindAndReplaceOptions::FindAndReplaceOptions(
4393         docstring const & _find_buf_name, bool _casesensitive,
4394         bool _matchword, bool _forward, bool _expandmacros, bool _ignoreformat,
4395         docstring const & _repl_buf_name, bool _keep_case,
4396         SearchScope _scope, SearchRestriction _restr, bool _replace_all)
4397         : find_buf_name(_find_buf_name), casesensitive(_casesensitive), matchword(_matchword),
4398           forward(_forward), expandmacros(_expandmacros), ignoreformat(_ignoreformat),
4399           repl_buf_name(_repl_buf_name), keep_case(_keep_case), scope(_scope), restr(_restr), replace_all(_replace_all)
4400 {
4401 }
4402
4403
4404 namespace {
4405
4406
4407 /** Check if 'len' letters following cursor are all non-lowercase */
4408 static bool allNonLowercase(Cursor const & cur, int len)
4409 {
4410         pos_type beg_pos = cur.selectionBegin().pos();
4411         pos_type end_pos = cur.selectionBegin().pos() + len;
4412         if (len > cur.lastpos() + 1 - beg_pos) {
4413                 LYXERR(Debug::FIND, "This should not happen, more debug needed");
4414                 len = cur.lastpos() + 1 - beg_pos;
4415                 end_pos = beg_pos + len;
4416         }
4417         for (pos_type pos = beg_pos; pos != end_pos; ++pos)
4418                 if (isLowerCase(cur.paragraph().getChar(pos)))
4419                         return false;
4420         return true;
4421 }
4422
4423
4424 /** Check if first letter is upper case and second one is lower case */
4425 static bool firstUppercase(Cursor const & cur)
4426 {
4427         char_type ch1, ch2;
4428         pos_type pos = cur.selectionBegin().pos();
4429         if (pos >= cur.lastpos() - 1) {
4430                 LYXERR(Debug::FIND, "No upper-case at cur: " << cur);
4431                 return false;
4432         }
4433         ch1 = cur.paragraph().getChar(pos);
4434         ch2 = cur.paragraph().getChar(pos + 1);
4435         bool result = isUpperCase(ch1) && isLowerCase(ch2);
4436         LYXERR(Debug::FIND, "firstUppercase(): "
4437                << "ch1=" << ch1 << "(" << char(ch1) << "), ch2="
4438                << ch2 << "(" << char(ch2) << ")"
4439                << ", result=" << result << ", cur=" << cur);
4440         return result;
4441 }
4442
4443
4444 /** Make first letter of supplied buffer upper-case, and the rest lower-case.
4445  **
4446  ** \fixme What to do with possible further paragraphs in replace buffer ?
4447  **/
4448 static void changeFirstCase(Buffer & buffer, TextCase first_case, TextCase others_case)
4449 {
4450         ParagraphList::iterator pit = buffer.paragraphs().begin();
4451         LASSERT(!pit->empty(), /**/);
4452         pos_type right = pos_type(1);
4453         pit->changeCase(buffer.params(), pos_type(0), right, first_case);
4454         right = pit->size();
4455         pit->changeCase(buffer.params(), pos_type(1), right, others_case);
4456 }
4457 } // namespace
4458
4459 static bool replaceMatches(string &t, int maxmatchnum, vector <string> const & replacements)
4460 {
4461   // Should replace the string "$" + std::to_string(matchnum) with replacement
4462   // if the char '$' is not prefixed with odd number of char '\\'
4463   static regex const rematch("(\\\\)*(\\$\\$([0-9]))");
4464   string s;
4465   size_t lastpos = 0;
4466   smatch sub;
4467   for (sregex_iterator it(t.begin(), t.end(), rematch), end; it != end; ++it) {
4468     sub = *it;
4469     if ((sub.position(2) - sub.position(0)) % 2 == 1)
4470       continue;
4471     int num = stoi(sub.str(3), nullptr, 10);
4472     if (num >= maxmatchnum)
4473       continue;
4474     if (lastpos < (size_t) sub.position(2))
4475       s += t.substr(lastpos, sub.position(2) - lastpos);
4476     s += replacements[num];
4477     lastpos = sub.position(2) + sub.length(2);
4478   }
4479   if (lastpos == 0)
4480     return false;
4481   else if (lastpos < t.length())
4482     s += t.substr(lastpos, t.length() - lastpos);
4483   t = s;
4484   return true;
4485 }
4486
4487 ///
4488 static int findAdvReplace(BufferView * bv, FindAndReplaceOptions const & opt, MatchStringAdv & matchAdv)
4489 {
4490         Cursor & cur = bv->cursor();
4491         if (opt.repl_buf_name.empty()
4492             || theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true) == 0
4493             || theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
4494                 return 0;
4495
4496         DocIterator sel_beg = cur.selectionBegin();
4497         DocIterator sel_end = cur.selectionEnd();
4498         if (&sel_beg.inset() != &sel_end.inset()
4499             || sel_beg.pit() != sel_end.pit()
4500             || sel_beg.idx() != sel_end.idx())
4501                 return 0;
4502         int sel_len = sel_end.pos() - sel_beg.pos();
4503         LYXERR(Debug::FIND, "sel_beg: " << sel_beg << ", sel_end: " << sel_end
4504                << ", sel_len: " << sel_len << endl);
4505         if (sel_len == 0)
4506                 return 0;
4507         LASSERT(sel_len > 0, return 0);
4508
4509         if (!matchAdv(sel_beg, sel_len).match_len)
4510                 return 0;
4511
4512         // Build a copy of the replace buffer, adapted to the KeepCase option
4513         Buffer const & repl_buffer_orig = *theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true);
4514         ostringstream oss;
4515         repl_buffer_orig.write(oss);
4516         string lyx = oss.str();
4517         if (matchAdv.valid_matches > 0)
4518                 replaceMatches(lyx, matchAdv.valid_matches, matchAdv.matches);
4519         Buffer repl_buffer(string(), false);
4520         repl_buffer.setInternal(true);
4521         repl_buffer.setUnnamed(true);
4522         LASSERT(repl_buffer.readString(lyx), return 0);
4523         if (opt.keep_case && sel_len >= 2) {
4524                 LYXERR(Debug::FIND, "keep_case true: cur.pos()=" << cur.pos() << ", sel_len=" << sel_len);
4525                 if (cur.inTexted()) {
4526                         if (firstUppercase(cur))
4527                                 changeFirstCase(repl_buffer, text_uppercase, text_lowercase);
4528                         else if (allNonLowercase(cur, sel_len))
4529                                 changeFirstCase(repl_buffer, text_uppercase, text_uppercase);
4530                 }
4531         }
4532         cap::cutSelection(cur, false);
4533         if (cur.inTexted()) {
4534                 repl_buffer.changeLanguage(
4535                         repl_buffer.language(),
4536                         cur.getFont().language());
4537                 LYXERR(Debug::FIND, "Replacing by pasteParagraphList()ing repl_buffer");
4538                 LYXERR(Debug::FIND, "Before pasteParagraphList() cur=" << cur << endl);
4539                 cap::pasteParagraphList(cur, repl_buffer.paragraphs(),
4540                                         repl_buffer.params().documentClassPtr(),
4541                                         repl_buffer.params().authors(),
4542                                         bv->buffer().errorList("Paste"));
4543                 LYXERR(Debug::FIND, "After pasteParagraphList() cur=" << cur << endl);
4544                 sel_len = repl_buffer.paragraphs().begin()->size();
4545         } else if (cur.inMathed()) {
4546                 odocstringstream ods;
4547                 otexstream os(ods);
4548                 // OutputParams runparams(&repl_buffer.params().encoding());
4549                 OutputParams runparams(encodings.fromLyXName("utf8"));
4550                 runparams.nice = false;
4551                 runparams.flavor = Flavor::XeTeX;
4552                 runparams.linelen = 8000; //lyxrc.plaintext_linelen;
4553                 runparams.dryrun = true;
4554                 TeXOnePar(repl_buffer, repl_buffer.text(), 0, os, runparams);
4555                 //repl_buffer.getSourceCode(ods, 0, repl_buffer.paragraphs().size(), false);
4556                 docstring repl_latex = ods.str();
4557                 LYXERR(Debug::FIND, "Latexified replace_buffer: '" << repl_latex << "'");
4558                 string s;
4559                 (void)regex_replace(to_utf8(repl_latex), s, "\\$(.*)\\$", "$1");
4560                 (void)regex_replace(s, s, "\\\\\\[(.*)\\\\\\]", "$1");
4561                 repl_latex = from_utf8(s);
4562                 LYXERR(Debug::FIND, "Replacing by insert()ing latex: '" << repl_latex << "' cur=" << cur << " with depth=" << cur.depth());
4563                 MathData ar(cur.buffer());
4564                 asArray(repl_latex, ar, Parse::NORMAL);
4565                 cur.insert(ar);
4566                 sel_len = ar.size();
4567                 LYXERR(Debug::FIND, "After insert() cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
4568         }
4569         if (cur.pos() >= sel_len)
4570                 cur.pos() -= sel_len;
4571         else
4572                 cur.pos() = 0;
4573         LYXERR(Debug::FIND, "After pos adj cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
4574         bv->putSelectionAt(DocIterator(cur), sel_len, !opt.forward);
4575         bv->processUpdateFlags(Update::Force);
4576         return 1;
4577 }
4578
4579
4580 /// Perform a FindAdv operation.
4581 bool findAdv(BufferView * bv, FindAndReplaceOptions & opt)
4582 {
4583         DocIterator cur;
4584         int pos_len = 0;
4585
4586         // e.g., when invoking word-findadv from mini-buffer wither with
4587         //       wrong options syntax or before ever opening advanced F&R pane
4588         if (theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
4589                 return false;
4590
4591         try {
4592                 MatchStringAdv matchAdv(bv->buffer(), opt);
4593 #if QTSEARCH
4594                 if (!matchAdv.regexIsValid) {
4595                         bv->message(lyx::from_utf8(matchAdv.regexError));
4596                         return(false);
4597                 }
4598 #endif
4599                 int length = bv->cursor().selectionEnd().pos() - bv->cursor().selectionBegin().pos();
4600                 if (length > 0)
4601                         bv->putSelectionAt(bv->cursor().selectionBegin(), length, !opt.forward);
4602                 num_replaced += findAdvReplace(bv, opt, matchAdv);
4603                 cur = bv->cursor();
4604                 if (opt.forward)
4605                         pos_len = findForwardAdv(cur, matchAdv);
4606                 else
4607                         pos_len = findBackwardsAdv(cur, matchAdv);
4608         } catch (exception & ex) {
4609                 bv->message(from_utf8(ex.what()));
4610                 return false;
4611         }
4612
4613         if (pos_len == 0) {
4614                 if (num_replaced > 0) {
4615                         switch (num_replaced)
4616                         {
4617                                 case 1:
4618                                         bv->message(_("One match has been replaced."));
4619                                         break;
4620                                 case 2:
4621                                         bv->message(_("Two matches have been replaced."));
4622                                         break;
4623                                 default:
4624                                         bv->message(bformat(_("%1$d matches have been replaced."), num_replaced));
4625                                         break;
4626                         }
4627                         num_replaced = 0;
4628                 }
4629                 else {
4630                         bv->message(_("Match not found."));
4631                 }
4632                 return false;
4633         }
4634
4635         if (num_replaced > 0)
4636                 bv->message(_("Match has been replaced."));
4637         else
4638                 bv->message(_("Match found."));
4639
4640         if (cur.pos() + pos_len > cur.lastpos()) {
4641                 // Prevent crash in bv->putSelectionAt()
4642                 // Should never happen, maybe LASSERT() here?
4643                 pos_len = cur.lastpos() - cur.pos();
4644         }
4645         LYXERR(Debug::FIND, "Putting selection at cur=" << cur << " with len: " << pos_len);
4646         bv->putSelectionAt(cur, pos_len, !opt.forward);
4647
4648         return true;
4649 }
4650
4651
4652 ostringstream & operator<<(ostringstream & os, FindAndReplaceOptions const & opt)
4653 {
4654         os << to_utf8(opt.find_buf_name) << "\nEOSS\n"
4655            << opt.casesensitive << ' '
4656            << opt.matchword << ' '
4657            << opt.forward << ' '
4658            << opt.expandmacros << ' '
4659            << opt.ignoreformat << ' '
4660            << opt.replace_all << ' '
4661            << to_utf8(opt.repl_buf_name) << "\nEOSS\n"
4662            << opt.keep_case << ' '
4663            << int(opt.scope) << ' '
4664            << int(opt.restr);
4665
4666         LYXERR(Debug::FIND, "built: " << os.str());
4667
4668         return os;
4669 }
4670
4671
4672 istringstream & operator>>(istringstream & is, FindAndReplaceOptions & opt)
4673 {
4674         // LYXERR(Debug::FIND, "parsing");
4675         string s;
4676         string line;
4677         getline(is, line);
4678         while (line != "EOSS") {
4679                 if (! s.empty())
4680                         s = s + "\n";
4681                 s = s + line;
4682                 if (is.eof())   // Tolerate malformed request
4683                         break;
4684                 getline(is, line);
4685         }
4686         // LYXERR(Debug::FIND, "file_buf_name: '" << s << "'");
4687         opt.find_buf_name = from_utf8(s);
4688         is >> opt.casesensitive >> opt.matchword >> opt.forward >> opt.expandmacros >> opt.ignoreformat >> opt.replace_all;
4689         is.get();       // Waste space before replace string
4690         s = "";
4691         getline(is, line);
4692         while (line != "EOSS") {
4693                 if (! s.empty())
4694                         s = s + "\n";
4695                 s = s + line;
4696                 if (is.eof())   // Tolerate malformed request
4697                         break;
4698                 getline(is, line);
4699         }
4700         // LYXERR(Debug::FIND, "repl_buf_name: '" << s << "'");
4701         opt.repl_buf_name = from_utf8(s);
4702         is >> opt.keep_case;
4703         int i;
4704         is >> i;
4705         opt.scope = FindAndReplaceOptions::SearchScope(i);
4706         is >> i;
4707         opt.restr = FindAndReplaceOptions::SearchRestriction(i);
4708
4709         /*
4710         LYXERR(Debug::FIND, "parsed: " << opt.casesensitive << ' ' << opt.matchword << ' ' << opt.forward << ' '
4711                << opt.expandmacros << ' ' << opt.ignoreformat << ' ' << opt.keep_case << ' '
4712                << opt.scope << ' ' << opt.restr);
4713         */
4714         return is;
4715 }
4716
4717 } // namespace lyx