]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/FindAndReplace.cpp
The View->Source pane resets the format every time you click into
[lyx.git] / src / frontends / qt4 / FindAndReplace.cpp
1 /**
2  * \file FindAndReplace.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Tommaso Cucinotta
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "FindAndReplace.h"
14
15 #include "Lexer.h"
16 #include "GuiApplication.h"
17 #include "GuiView.h"
18 #include "GuiWorkArea.h"
19 #include "qt_helpers.h"
20 #include "Language.h"
21
22 #include "BufferParams.h"
23 #include "BufferList.h"
24 #include "TextClass.h"
25 #include "Cursor.h"
26 #include "FuncRequest.h"
27 #include "lyxfind.h"
28
29 #include "frontends/alert.h"
30
31 #include "support/debug.h"
32 #include "support/filetools.h"
33 #include "support/FileName.h"
34 #include "support/gettext.h"
35 #include "support/lassert.h"
36 #include "support/lstrings.h"
37
38 #include <QCloseEvent>
39 #include <QLineEdit>
40 #include <QMenu>
41
42 using namespace std;
43 using namespace lyx::support;
44
45 namespace lyx {
46 namespace frontend {
47
48
49 FindAndReplaceWidget::FindAndReplaceWidget(GuiView & view)
50         : QTabWidget(&view), view_(view)
51 {
52         setupUi(this);
53         find_work_area_->setGuiView(view_);
54         find_work_area_->init();
55         find_work_area_->setFrameStyle(QFrame::StyledPanel);
56
57         setFocusProxy(find_work_area_);
58         replace_work_area_->setGuiView(view_);
59         replace_work_area_->init();
60         replace_work_area_->setFrameStyle(QFrame::StyledPanel);
61
62         // We don't want two cursors blinking.
63         find_work_area_->stopBlinkingCursor();
64         replace_work_area_->stopBlinkingCursor();
65 }
66
67
68 bool FindAndReplaceWidget::eventFilter(QObject * obj, QEvent * event)
69 {
70         if (event->type() != QEvent::KeyPress
71                   || (obj != find_work_area_ && obj != replace_work_area_))
72                 return QWidget::eventFilter(obj, event);
73
74         QKeyEvent * e = static_cast<QKeyEvent *> (event);
75         switch (e->key()) {
76         case Qt::Key_Escape:
77                 if (e->modifiers() == Qt::NoModifier) {
78                         hideDialog();
79                         return true;
80                 }
81                 break;
82
83         case Qt::Key_Enter:
84         case Qt::Key_Return: {
85                 // with shift we (temporarily) change search/replace direction
86                 bool const searchback = searchbackCB->isChecked();
87                 if (e->modifiers() == Qt::ShiftModifier && !searchback)
88                         searchbackCB->setChecked(!searchback);
89
90                 if (obj == find_work_area_)
91                         on_findNextPB_clicked();
92                 else
93                         on_replacePB_clicked();
94                 // back to how it was
95                 searchbackCB->setChecked(searchback);
96                 return true;
97                 break;
98                 }
99         case Qt::Key_Tab:
100                 if (e->modifiers() == Qt::NoModifier) {
101                         if (obj == find_work_area_){
102                                 LYXERR(Debug::FIND, "Focusing replace WA");
103                                 replace_work_area_->setFocus();
104                                 LYXERR(Debug::FIND, "Selecting entire replace buffer");
105                                 dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
106                                 dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
107                                 return true;
108                         }
109                 }
110                 break;
111
112         case Qt::Key_Backtab:
113                 if (obj == replace_work_area_) {
114                         LYXERR(Debug::FIND, "Focusing find WA");
115                         find_work_area_->setFocus();
116                         LYXERR(Debug::FIND, "Selecting entire find buffer");
117                         dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
118                         dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
119                         return true;
120                 }
121                 break;
122
123         default:
124                 break;
125         }
126         // standard event processing
127         return QWidget::eventFilter(obj, event);
128 }
129
130
131 static vector<string> const & allManualsFiles() 
132 {
133         static vector<string> v;
134         static const char * files[] = {
135                 "Intro", "UserGuide", "Tutorial", "Additional",
136                 "EmbeddedObjects", "Math", "Customization", "Shortcuts",
137                 "LFUNs", "LaTeXConfig"
138         };
139         if (v.empty()) {
140                 FileName fname;
141                 for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); ++i) {
142                         fname = i18nLibFileSearch("doc", files[i], "lyx");
143                         v.push_back(fname.absFileName());
144                 }
145         }
146         return v;
147 }
148
149
150 /** Switch p_buf to point to next document buffer.
151  **
152  ** Return true if restarted from master-document buffer.
153  **/
154 static bool nextDocumentBuffer(Buffer * & buf) 
155 {
156         ListOfBuffers const children = buf->allRelatives();
157         LYXERR(Debug::FIND, "children.size()=" << children.size());
158         ListOfBuffers::const_iterator it =
159                 find(children.begin(), children.end(), buf);
160         LASSERT(it != children.end(), /**/);
161         ++it;
162         if (it == children.end()) {
163                 buf = *children.begin();
164                 return true;
165         }
166         buf = *it;
167         return false;
168 }
169
170
171 /** Switch p_buf to point to previous document buffer.
172  **
173  ** Return true if restarted from last child buffer.
174  **/
175 static bool prevDocumentBuffer(Buffer * & buf) 
176 {
177         ListOfBuffers const children = buf->allRelatives();
178         LYXERR(Debug::FIND, "children.size()=" << children.size());
179         ListOfBuffers::const_iterator it =
180                 find(children.begin(), children.end(), buf);
181         LASSERT(it != children.end(), /**/)
182         if (it == children.begin()) {
183                 it = children.end();
184                 --it;
185                 buf = *it;
186                 return true;
187         }
188         --it;
189         buf = *it;
190         return false;
191 }
192
193
194 /** Switch buf to point to next or previous buffer in search scope.
195  **
196  ** Return true if restarted from scratch.
197  **/
198 static bool nextPrevBuffer(Buffer * & buf,
199                              FindAndReplaceOptions const & opt)
200 {
201         bool restarted = false;
202         switch (opt.scope) {
203         case FindAndReplaceOptions::S_BUFFER:
204                 restarted = true;
205                 break;
206         case FindAndReplaceOptions::S_DOCUMENT:
207                 if (opt.forward)
208                         restarted = nextDocumentBuffer(buf);
209                 else
210                         restarted = prevDocumentBuffer(buf);
211                 break;
212         case FindAndReplaceOptions::S_OPEN_BUFFERS:
213                 if (opt.forward) {
214                         buf = theBufferList().next(buf);
215                         restarted = (buf == *theBufferList().begin());
216                 } else {
217                         buf = theBufferList().previous(buf);
218                         restarted = (buf == *(theBufferList().end() - 1));
219                 }
220                 break;
221         case FindAndReplaceOptions::S_ALL_MANUALS:
222                 vector<string> const & manuals = allManualsFiles();
223                 vector<string>::const_iterator it =
224                         find(manuals.begin(), manuals.end(), buf->absFileName());
225                 if (it == manuals.end())
226                         it = manuals.begin();
227                 else if (opt.forward) {
228                         ++it;
229                         if (it == manuals.end()) {
230                                 it = manuals.begin();
231                                 restarted = true;
232                         }
233                 } else {
234                         if (it == manuals.begin()) {
235                                 it = manuals.end();
236                                 restarted = true;
237                         }
238                         --it;
239                 }
240                 FileName const & fname = FileName(*it);
241                 if (!theBufferList().exists(fname)) {
242                         guiApp->currentView()->setBusy(false);
243                         guiApp->currentView()->loadDocument(fname, false);
244                         guiApp->currentView()->setBusy(true);
245                 }
246                 buf = theBufferList().getBuffer(fname);
247                 break;
248         }
249         return restarted;
250 }
251
252
253 /** Find the finest question message to post to the user */
254 docstring getQuestionString(FindAndReplaceOptions const & opt)
255 {
256         docstring scope;
257         switch (opt.scope) {
258         case FindAndReplaceOptions::S_BUFFER:
259                 scope = _("File");
260                 break;
261         case FindAndReplaceOptions::S_DOCUMENT:
262                 scope = _("Master document");
263                 break;
264         case FindAndReplaceOptions::S_OPEN_BUFFERS:
265                 scope = _("Open files");
266                 break;
267         case FindAndReplaceOptions::S_ALL_MANUALS:
268                 scope = _("Manuals");
269                 break;
270         }
271         docstring message = opt.forward ?
272                 bformat(_("%1$s: the end was reached while searching forward.\n"
273                           "Continue searching from the beginning?"),
274                         scope) : 
275                 bformat(_("%1$s: the beginning was reached while searching backward.\n"
276                           "Continue searching from the end?"),
277                         scope);
278
279         return message;
280 }
281
282
283 /// Return true if a match was found
284 bool FindAndReplaceWidget::findAndReplaceScope(FindAndReplaceOptions & opt, bool replace_all)
285 {
286         BufferView * bv = view_.documentBufferView();
287         if (!bv)
288                 return false;
289         Buffer * buf = &bv->buffer();
290         Buffer * buf_orig = &bv->buffer();
291         DocIterator cur_orig(bv->cursor());
292         int wrap_answer = -1;
293         ostringstream oss;
294         oss << opt;
295         FuncRequest cmd(LFUN_WORD_FINDADV, from_utf8(oss.str()));
296
297         view_.setBusy(true);
298         if (opt.scope == FindAndReplaceOptions::S_ALL_MANUALS) {
299                 vector<string> const & v = allManualsFiles();
300                 if (std::find(v.begin(), v.end(), buf->absFileName()) == v.end()) {
301                         FileName const & fname = FileName(*v.begin());
302                         if (!theBufferList().exists(fname)) {
303                                 guiApp->currentView()->setBusy(false);
304                                 guiApp->currentView()->loadDocument(fname, false);
305                                 guiApp->currentView()->setBusy(true);
306                         }
307                         buf = theBufferList().getBuffer(fname);
308                         if (!buf) {
309                                 view_.setBusy(false);
310                                 return false;
311                         }
312
313                         lyx::dispatch(FuncRequest(LFUN_BUFFER_SWITCH,
314                                                   buf->absFileName()));
315                         bv = view_.documentBufferView();
316                         bv->cursor().clear();
317                         bv->cursor().push_back(CursorSlice(buf->inset()));
318                 }
319         }
320
321         do {
322                 LYXERR(Debug::FIND, "Dispatching LFUN_WORD_FINDADV");
323                 dispatch(cmd);
324                 LYXERR(Debug::FIND, "dispatched");
325                 if (bv->cursor().result().dispatched()) {
326                         // New match found and selected (old selection replaced if needed)
327                         if (replace_all)
328                                 continue;
329                         view_.setBusy(false);
330                         return true;
331                 }
332
333                 // No match found in current buffer (however old selection might have been replaced)
334                 // select next buffer in scope, if any
335                 bool const prompt = nextPrevBuffer(buf, opt);
336                 if (!buf)
337                         break;
338                 if (prompt) {
339                         if (wrap_answer != -1)
340                                 break;
341                         docstring q = getQuestionString(opt);
342                         view_.setBusy(false);
343                         wrap_answer = frontend::Alert::prompt(
344                                 _("Wrap search?"), q,
345                                 0, 1, _("&Yes"), _("&No"));
346                         view_.setBusy(true);
347                         if (wrap_answer == 1)
348                                 break;
349                 }
350                 if (buf != &view_.documentBufferView()->buffer())
351                         lyx::dispatch(FuncRequest(LFUN_BUFFER_SWITCH,
352                                                   buf->absFileName()));
353                 bv = view_.documentBufferView();
354                 if (opt.forward) {
355                         bv->cursor().clear();
356                         bv->cursor().push_back(CursorSlice(buf->inset()));
357                 } else {
358                         //lyx::dispatch(FuncRequest(LFUN_BUFFER_END));
359                         bv->cursor().setCursor(doc_iterator_end(buf));
360                         bv->cursor().backwardPos();
361                         LYXERR(Debug::FIND, "findBackAdv5: cur: "
362                                 << bv->cursor());
363                 }
364                 bv->clearSelection();
365         } while (wrap_answer != 1);
366         if (buf_orig != &view_.documentBufferView()->buffer())
367                 lyx::dispatch(FuncRequest(LFUN_BUFFER_SWITCH,
368                                           buf_orig->absFileName()));
369         bv = view_.documentBufferView();
370         // This may happen after a replace occurred
371         if (cur_orig.pos() > cur_orig.lastpos())
372                 cur_orig.pos() = cur_orig.lastpos();
373         bv->cursor().setCursor(cur_orig);
374         view_.setBusy(false);
375         return false;
376 }
377
378
379 /// Return true if a match was found
380 bool FindAndReplaceWidget::findAndReplace(
381         bool casesensitive, bool matchword, bool backwards,
382         bool expandmacros, bool ignoreformat, bool replace,
383         bool keep_case, bool replace_all)
384 {
385         Buffer & find_buf = find_work_area_->bufferView().buffer();
386         docstring const & find_buf_name = find_buf.fileName().absoluteFilePath();
387
388         if (find_buf.text().empty()) {
389                 view_.message(_("Nothing to search"));
390                 return false;
391         }
392
393         Buffer & repl_buf = replace_work_area_->bufferView().buffer();
394         docstring const & repl_buf_name = replace ?
395                 repl_buf.fileName().absoluteFilePath() : docstring();
396
397         FindAndReplaceOptions::SearchScope scope =
398                 FindAndReplaceOptions::S_BUFFER;
399         if (CurrentDocument->isChecked())
400                 scope = FindAndReplaceOptions::S_BUFFER;
401         else if (MasterDocument->isChecked())
402                 scope = FindAndReplaceOptions::S_DOCUMENT;
403         else if (OpenDocuments->isChecked())
404                 scope = FindAndReplaceOptions::S_OPEN_BUFFERS;
405         else if (AllManualsRB->isChecked())
406                 scope = FindAndReplaceOptions::S_ALL_MANUALS;
407         else
408                 LASSERT(false, /**/);
409         LYXERR(Debug::FIND, "FindAndReplaceOptions: "
410                << "find_buf_name=" << find_buf_name
411                << ", casesensitiv=" << casesensitive
412                << ", matchword=" << matchword
413                << ", backwards=" << backwards
414                << ", expandmacros=" << expandmacros
415                << ", ignoreformat=" << ignoreformat
416                << ", repl_buf_name" << repl_buf_name
417                << ", keep_case=" << keep_case
418                << ", scope=" << scope);
419         FindAndReplaceOptions opt(find_buf_name, casesensitive, matchword,
420                                   !backwards, expandmacros, ignoreformat,
421                                   repl_buf_name, keep_case, scope);
422         return findAndReplaceScope(opt, replace_all);
423 }
424
425
426 bool FindAndReplaceWidget::findAndReplace(bool backwards, bool replace, bool replace_all)
427 {
428         if (! view_.currentMainWorkArea()) {
429                 view_.message(_("No open document(s) in which to search"));
430                 return false;
431         }
432         // Finalize macros that are being typed, both in main document and in search or replacement WAs
433         if (view_.currentWorkArea()->bufferView().cursor().macroModeClose())
434                 view_.currentWorkArea()->bufferView().processUpdateFlags(Update::Force);
435         if (view_.currentMainWorkArea()->bufferView().cursor().macroModeClose())
436                 view_.currentMainWorkArea()->bufferView().processUpdateFlags(Update::Force);
437
438         // FIXME: create a Dialog::returnFocus()
439         // or something instead of this:
440         view_.setCurrentWorkArea(view_.currentMainWorkArea());
441         return findAndReplace(caseCB->isChecked(),
442                 wordsCB->isChecked(),
443                 backwards,
444                 expandMacrosCB->isChecked(),
445                 ignoreFormatCB->isChecked(),
446                 replace,
447                 keepCaseCB->isChecked(),
448                 replace_all);
449 }
450
451
452 void FindAndReplaceWidget::hideDialog()
453 {
454         dispatch(FuncRequest(LFUN_DIALOG_TOGGLE, "findreplaceadv"));
455 }
456
457
458 void FindAndReplaceWidget::on_findNextPB_clicked() 
459 {
460         findAndReplace(searchbackCB->isChecked(), false);
461         find_work_area_->setFocus();
462 }
463
464
465 void FindAndReplaceWidget::on_replacePB_clicked()
466 {
467         findAndReplace(searchbackCB->isChecked(), true);
468         replace_work_area_->setFocus();
469 }
470
471
472 void FindAndReplaceWidget::on_replaceallPB_clicked()
473 {
474         findAndReplace(searchbackCB->isChecked(), true, true);
475         replace_work_area_->setFocus();
476 }
477
478
479 /** Copy selected elements from bv's BufferParams to the dest_bv's one
480  ** We don't want to copy'em all, e.g., not the default master **/
481 static void copy_params(BufferView const & bv, BufferView & dest_bv) {
482         Buffer const & doc_buf = bv.buffer();
483         BufferParams const & doc_bp = doc_buf.params();
484         string const & lang = doc_bp.language->lang();
485         string const & doc_class = doc_bp.documentClass().name();
486         Buffer & dest_buf = dest_bv.buffer();
487         dest_buf.params().setLanguage(lang);
488         dest_buf.params().setBaseClass(doc_class);
489         dest_buf.params().makeDocumentClass();
490         dest_bv.cursor().current_font.setLanguage(doc_bp.language);
491 }
492
493
494 void FindAndReplaceWidget::showEvent(QShowEvent * /* ev */)
495 {
496         LYXERR(Debug::DEBUG, "showEvent()" << endl);
497         BufferView * bv = view_.documentBufferView();
498         if (bv) {
499                 copy_params(*bv, find_work_area_->bufferView());
500                 copy_params(*bv, replace_work_area_->bufferView());
501         }
502
503         find_work_area_->installEventFilter(this);
504         replace_work_area_->installEventFilter(this);
505
506         view_.setCurrentWorkArea(find_work_area_);
507         LYXERR(Debug::FIND, "Selecting entire find buffer");
508         dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
509         dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
510 }
511
512
513 void FindAndReplaceWidget::hideEvent(QHideEvent *ev)
514 {
515         replace_work_area_->removeEventFilter(this);
516         find_work_area_->removeEventFilter(this);
517         this->QWidget::hideEvent(ev);
518 }
519
520
521 bool FindAndReplaceWidget::initialiseParams(std::string const & /*params*/)
522 {
523         return true;
524 }
525
526
527 FindAndReplace::FindAndReplace(GuiView & parent,
528                 Qt::DockWidgetArea area, Qt::WindowFlags flags)
529         : DockView(parent, "findreplaceadv", qt_("Advanced Find and Replace"),
530                    area, flags)
531 {
532         widget_ = new FindAndReplaceWidget(parent);
533         setWidget(widget_);
534         setFocusProxy(widget_);
535 }
536
537
538 FindAndReplace::~FindAndReplace()
539 {
540         setFocusProxy(0);
541         delete widget_;
542 }
543
544
545 bool FindAndReplace::initialiseParams(std::string const & params)
546 {
547         return widget_->initialiseParams(params);
548 }
549
550
551 Dialog * createGuiSearchAdv(GuiView & lv)
552 {
553         FindAndReplace * gui = new FindAndReplace(lv, Qt::RightDockWidgetArea);
554 #ifdef Q_WS_MACX
555         // On Mac show and floating
556         gui->setFloating(true);
557 #endif
558         return gui;
559 }
560
561
562 } // namespace frontend
563 } // namespace lyx
564
565
566 #include "moc_FindAndReplace.cpp"