]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/FindAndReplace.cpp
9c8bf1e12eb18ca6b2ced48d92bc7d3a9d497668
[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 "GuiApplication.h"
16 #include "qt_helpers.h"
17 #include "GuiView.h"
18 #include "GuiWorkArea.h"
19
20 #include "buffer_funcs.h"
21 #include "BufferParams.h"
22 #include "Cursor.h"
23 #include "FuncRequest.h"
24 #include "lyxfind.h"
25 #include "OutputParams.h"
26 #include "output_latex.h"
27 #include "TexRow.h"
28
29 #include "support/debug.h"
30 #include "support/FileName.h"
31 #include "support/gettext.h"
32 #include "support/lassert.h"
33
34 #include <QCloseEvent>
35 #include <QLineEdit>
36
37 #include <iostream>
38
39 using namespace std;
40 using namespace lyx::support;
41
42 namespace lyx {
43 namespace frontend {
44
45
46 FindAndReplaceWidget::FindAndReplaceWidget(GuiView & view)
47         :       view_(view)
48 {
49         setupUi(this);
50         find_work_area_->setGuiView(view_);
51         find_work_area_->init();
52         setFocusProxy(find_work_area_);
53         replace_work_area_->setGuiView(view_);
54         replace_work_area_->init();
55         // We don't want two cursors blinking.
56         replace_work_area_->stopBlinkingCursor();
57 }
58
59
60 bool FindAndReplaceWidget::eventFilter(QObject *obj, QEvent *event)
61 {
62         LYXERR(Debug::DEBUG, "FindAndReplace::eventFilter()" << std::endl);
63         if (obj == find_work_area_ && event->type() == QEvent::KeyPress) {
64                 QKeyEvent *e = static_cast<QKeyEvent *> (event);
65                 if (e->key() == Qt::Key_Escape && e->modifiers() == Qt::NoModifier) {
66                         on_closePB_clicked();
67                         return true;
68                 } else if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) {
69                         if (e->modifiers() == Qt::ShiftModifier) {
70                                 on_findPrevPB_clicked();
71                                 return true;
72                         } else if (e->modifiers() == Qt::NoModifier) {
73                                 on_findNextPB_clicked();
74                                 return true;
75                         }
76                 }
77         }
78         // standard event processing
79         return QWidget::eventFilter(obj, event);
80 }
81
82 static docstring buffer_to_latex(Buffer & buffer) {
83         OutputParams runparams(&buffer.params().encoding());
84         odocstringstream os;
85         runparams.nice = true;
86         runparams.flavor = OutputParams::LATEX;
87         runparams.linelen = 80; //lyxrc.plaintext_linelen;
88         // No side effect of file copying and image conversion
89         runparams.dryrun = true;
90         buffer.texrow().reset();
91         ParagraphList::const_iterator pit = buffer.paragraphs().begin();
92         ParagraphList::const_iterator const end = buffer.paragraphs().end();
93         for (; pit != end; ++pit) {
94                 TeXOnePar(buffer, buffer.text(), pit, os, buffer.texrow(), runparams);
95                 LYXERR(Debug::DEBUG, "searchString up to here: " << os.str());
96         }
97         return os.str();
98 }
99
100 void FindAndReplaceWidget::findAndReplace(
101         bool casesensitive, bool matchword, bool backwards,
102         bool expandmacros, bool ignoreformat, bool replace)
103 {
104         Buffer & buffer = find_work_area_->bufferView().buffer();
105         docstring searchString;
106         if (!ignoreformat) {
107                 searchString = buffer_to_latex(buffer);
108         } else {
109                 ParIterator it = buffer.par_iterator_begin();
110                 ParIterator end = buffer.par_iterator_end();
111                 OutputParams runparams(&buffer.params().encoding());
112                 odocstringstream os;
113                 runparams.nice = true;
114                 runparams.flavor = OutputParams::LATEX;
115                 runparams.linelen = 100000; //lyxrc.plaintext_linelen;
116                 runparams.dryrun = true;
117                 for (; it != end; ++it) {
118                         LYXERR(Debug::DEBUG, "Adding to search string: '" << it->asString(false) << "'");
119                         searchString += it->stringify(pos_type(0), it->size(), AS_STR_INSETS, runparams);
120                 }
121         }
122         if (to_utf8(searchString).empty()) {
123                 buffer.message(_("Nothing to search"));
124                 return;
125         }
126         bool const regexp = to_utf8(searchString).find("\\regexp") != std::string::npos;
127         docstring replaceString;
128         if (replace) {
129                 Buffer & replace_buffer = replace_work_area_->bufferView().buffer();
130                 replaceString = buffer_to_latex(replace_buffer);
131         } else {
132                 replaceString = from_utf8(LYX_FR_NULL_STRING);
133         }
134         LYXERR(Debug::DEBUG, "FindAndReplaceOptions: "
135                << "searchstring=" << searchString
136                << ", casesensitiv=" << casesensitive
137                << ", matchword=" << matchword
138                << ", backwards=" << backwards
139                << ", expandmacros=" << expandmacros
140                << ", ignoreformat=" << ignoreformat
141                << ", regexp=" << regexp
142                << ", replaceString" << replaceString
143                << std::endl);
144         FindAndReplaceOptions opt(searchString, casesensitive, matchword, ! backwards,
145                 expandmacros, ignoreformat, regexp, replaceString);
146         LYXERR(Debug::DEBUG, "Dispatching LFUN_WORD_FINDADV" << std::endl);
147         std::ostringstream oss;
148         oss << opt;
149         LYXERR(Debug::DEBUG, "Dispatching LFUN_WORD_FINDADV" << std::endl);
150         dispatch(FuncRequest(LFUN_WORD_FINDADV, from_utf8(oss.str())));
151
152         //      findAdv(&theApp()->currentView()->currentWorkArea()->bufferView(),
153         //                      searchString, len, casesensitive, matchword, ! backwards, expandmacros);
154 }
155
156
157 void FindAndReplaceWidget::findAndReplace(bool backwards, bool replace)
158 {
159         // FIXME: create a Dialog::returnFocus() or something instead of this:
160         view_.setCurrentWorkArea(view_.currentMainWorkArea());
161         // FIXME: This should be an LFUN.
162         findAndReplace(caseCB->isChecked(),
163                 wordsCB->isChecked(),
164                 backwards,
165                 expandMacrosCB->isChecked(),
166                 ignoreFormatCB->isChecked(),
167                 replace);
168         view_.currentMainWorkArea()->redraw();
169         find_work_area_->setFocus();
170 }
171
172
173 void FindAndReplaceWidget::on_regexpInsertCombo_currentIndexChanged(int index)
174 {
175         static char const * regexps[] = {
176                 ".*", ".+", "[a-z]+", "[0-9]+"
177         };
178         //lyxerr << "Index: " << index << std::endl;
179         if (index >= 1 && index < 1 + int(sizeof(regexps)/sizeof(regexps[0]))) {
180                 find_work_area_->setFocus();
181                 Cursor & cur = find_work_area_->bufferView().cursor();
182                 if (! cur.inRegexped())
183                         dispatch(FuncRequest(LFUN_REGEXP_MODE));
184                 dispatch(FuncRequest(LFUN_SELF_INSERT, regexps[index - 1]));
185                 regexpInsertCombo->setCurrentIndex(0);
186         }
187 }
188
189
190 void FindAndReplaceWidget::on_closePB_clicked()
191 {
192         dispatch(FuncRequest(LFUN_DIALOG_TOGGLE, "findreplaceadv"));
193 }
194
195
196 void FindAndReplaceWidget::on_findNextPB_clicked() {
197         findAndReplace(false, false);
198 }
199
200
201 void FindAndReplaceWidget::on_findPrevPB_clicked() {
202         findAndReplace(true, false);
203 }
204
205
206 void FindAndReplaceWidget::on_replaceNextPB_clicked()
207 {
208         findAndReplace(false, true);
209 }
210
211
212 void FindAndReplaceWidget::on_replacePrevPB_clicked()
213 {
214         findAndReplace(true, true);
215 }
216
217
218 void FindAndReplaceWidget::on_replaceallPB_clicked()
219 {
220 }
221
222
223 void FindAndReplaceWidget::showEvent(QShowEvent * /* ev */)
224 {
225         replace_work_area_->setEnabled(true);
226         replace_work_area_->redraw();
227         find_work_area_->setFocus();
228         dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
229         dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
230         find_work_area_->redraw();
231         find_work_area_->installEventFilter(this);
232 }
233
234
235 void FindAndReplaceWidget::hideEvent(QHideEvent *ev)
236 {
237         find_work_area_->removeEventFilter(this);
238         this->QWidget::hideEvent(ev);
239 }
240
241
242 bool FindAndReplaceWidget::initialiseParams(std::string const & /* params */)
243 {
244         find_work_area_->redraw();
245         replace_work_area_->setEnabled(true);
246         replace_work_area_->redraw();
247         find_work_area_->setFocus();
248         dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
249         dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
250         return true;
251 }
252
253
254 FindAndReplace::FindAndReplace(GuiView & parent,
255                 Qt::DockWidgetArea area, Qt::WindowFlags flags)
256         : DockView(parent, "Find LyX", qt_("Find LyX Dialog"), area, flags)
257 {
258         widget_ = new FindAndReplaceWidget(parent);
259         setWidget(widget_);
260         setFocusProxy(widget_);
261 }
262
263
264 FindAndReplace::~FindAndReplace()
265 {
266         setFocusProxy(0);
267         delete widget_;
268 }
269
270
271 bool FindAndReplace::initialiseParams(std::string const & params)
272 {
273         return widget_->initialiseParams(params);
274 }
275
276
277 Dialog * createGuiSearchAdv(GuiView & lv)
278 {
279         return new FindAndReplace(lv, Qt::RightDockWidgetArea);
280 }
281
282
283 } // namespace frontend
284 } // namespace lyx
285
286
287 #include "moc_FindAndReplace.cpp"