]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/FindAndReplace.cpp
If we are in a closeEvent, we don't want to close all buffers, because these may...
[lyx.git] / src / frontends / qt4 / FindAndReplace.cpp
index a0ac3cd5563964e0abd9a64d545fe4a00cca27c9..26bbc9612a9c43bb55666a88fda5aa9c1cd8dcd2 100644 (file)
 
 #include "FindAndReplace.h"
 
-
-#include "GuiWorkArea.h"
-#include "GuiView.h"
+#include "GuiApplication.h"
 #include "qt_helpers.h"
+#include "GuiView.h"
+#include "GuiWorkArea.h"
 
-#include "Application.h"
-#include "BufferList.h"
 #include "buffer_funcs.h"
 #include "BufferParams.h"
 #include "Cursor.h"
 #include "output_latex.h"
 #include "TexRow.h"
 
-#include "support/FileName.h"
-#include "support/convert.h"
 #include "support/debug.h"
+#include "support/FileName.h"
 #include "support/gettext.h"
 #include "support/lassert.h"
 
-#include <QLineEdit>
 #include <QCloseEvent>
+#include <QLineEdit>
 
 #include <iostream>
 
@@ -46,37 +43,23 @@ namespace lyx {
 namespace frontend {
 
 
-FindAndReplace::FindAndReplace(GuiView & parent)
-       : DockView(parent, "Find LyX", "Find LyX Dialog", Qt::RightDockWidgetArea),
-       parent_view_(parent),
-       delayedFocusTimer_(this)
+FindAndReplaceWidget::FindAndReplaceWidget(GuiView & view)
+       :       view_(view)
 {
-       searchBuffer_ = theBufferList().newBuffer(
-               support::FileName::tempName().absFilename() + "_searchadv.internal");
-       LASSERT(searchBuffer_ != 0, /* */);
-       searchBufferView_ = new BufferView(*searchBuffer_);
-       searchBuffer_->setUnnamed(true);
-       searchBuffer_->setFullyLoaded(true);
-
        setupUi(this);
-       find_work_area_->setGuiView(parent_view_);
-       find_work_area_->setBuffer(*searchBuffer_);
-       find_work_area_->setUpdatesEnabled(false);
-       find_work_area_->setDialogMode(true);
-}
-
-
-FindAndReplace::~FindAndReplace()
-{
-       // No need to destroy buffer and bufferview here, because it is done
-       // in theBuffeerList() destruction loop at application exit
-       LYXERR(Debug::DEBUG, "FindAndReplace::~FindAndReplace()");
+       find_work_area_->setGuiView(view_);
+       find_work_area_->init();
+       setFocusProxy(find_work_area_);
+       replace_work_area_->setGuiView(view_);
+       replace_work_area_->init();
+       // We don't want two cursors blinking.
+       replace_work_area_->stopBlinkingCursor();
 }
 
 
-bool FindAndReplace::eventFilter(QObject *obj, QEvent *event)
+bool FindAndReplaceWidget::eventFilter(QObject *obj, QEvent *event)
 {
-       LYXERR(Debug::DEBUG, "FindAndReplace::eventFilter()" << std::endl);
+       LYXERR(Debug::FIND, "FindAndReplace::eventFilter()");
        if (obj == find_work_area_ && event->type() == QEvent::KeyPress) {
                QKeyEvent *e = static_cast<QKeyEvent *> (event);
                if (e->key() == Qt::Key_Escape && e->modifiers() == Qt::NoModifier) {
@@ -92,67 +75,77 @@ bool FindAndReplace::eventFilter(QObject *obj, QEvent *event)
                        }
                }
        }
-
        // standard event processing
-       return QObject::eventFilter(obj, event);
-}
-
-
-void FindAndReplace::closeEvent(QCloseEvent * close_event)
-{
-       LYXERR(Debug::DEBUG, "FindAndReplace::closeEvent()");
-       find_work_area_->removeEventFilter(this);
-       disableSearchWorkArea();
-
-       DockView::closeEvent(close_event);
+       return QWidget::eventFilter(obj, event);
 }
 
-
-void FindAndReplace::selectAll()
-{
-       dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
-       dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
-       find_work_area_->redraw();
+static docstring buffer_to_latex(Buffer & buffer) {
+       OutputParams runparams(&buffer.params().encoding());
+       odocstringstream os;
+       runparams.nice = true;
+       runparams.flavor = OutputParams::LATEX;
+       runparams.linelen = 80; //lyxrc.plaintext_linelen;
+       // No side effect of file copying and image conversion
+       runparams.dryrun = true;
+       buffer.texrow().reset();
+       ParagraphList::const_iterator pit = buffer.paragraphs().begin();
+       ParagraphList::const_iterator const end = buffer.paragraphs().end();
+       for (; pit != end; ++pit) {
+               TeXOnePar(buffer, buffer.text(), pit, os, buffer.texrow(), runparams);
+               LYXERR(Debug::FIND, "searchString up to here: " << os.str());
+       }
+       return os.str();
 }
 
-
-void FindAndReplace::findAdv(bool casesensitive,
-               bool matchword, bool backwards,
-               bool expandmacros, bool ignoreformat)
+void FindAndReplaceWidget::findAndReplace(
+       bool casesensitive, bool matchword, bool backwards,
+       bool expandmacros, bool ignoreformat, bool replace)
 {
+       Buffer & buffer = find_work_area_->bufferView().buffer();
        docstring searchString;
-       if (! ignoreformat) {
-               OutputParams runparams(&searchBuffer_->params().encoding());
+       if (!ignoreformat) {
+               searchString = buffer_to_latex(buffer);
+       } else {
+               ParIterator it = buffer.par_iterator_begin();
+               ParIterator end = buffer.par_iterator_end();
+               OutputParams runparams(&buffer.params().encoding());
                odocstringstream os;
                runparams.nice = true;
                runparams.flavor = OutputParams::LATEX;
-               runparams.linelen = 80; //lyxrc.plaintext_linelen;
-               // No side effect of file copying and image conversion
+               runparams.linelen = 100000; //lyxrc.plaintext_linelen;
                runparams.dryrun = true;
-               searchBuffer_->texrow().reset();
-//             latexParagraphs(searchBuffer_, searchBuffer_.paragraphs(), os, searchBuffer_.texrow(), runparams);
-               for (ParagraphList::const_iterator pit = searchBuffer_->paragraphs().begin(); pit != searchBuffer_->paragraphs().end(); ++pit) {
-                       TeXOnePar(*searchBuffer_, searchBuffer_->text(), pit, os, searchBuffer_->texrow(), runparams);
-                       lyxerr << "searchString up to here: " << to_utf8(os.str()) << std::endl;
-               }
-               searchString = os.str();
-       } else {
-               for (ParIterator it = searchBuffer_->par_iterator_begin(); it != searchBuffer_->par_iterator_end(); ++it) {
-                       lyxerr << "Adding to search string: '" << to_utf8(it->asString(false)) << "'" << std::endl;
-                       searchString += it->asString(AS_STR_INSETS);
+               for (; it != end; ++it) {
+                       LYXERR(Debug::FIND, "Adding to search string: '" << it->asString(false) << "'");
+                       searchString += it->stringify(pos_type(0), it->size(), AS_STR_INSETS, runparams);
                }
        }
-//     lyxerr << "Searching for '" << to_utf8(searchString) << "'" << std::endl;
        if (to_utf8(searchString).empty()) {
-               searchBufferView_->message(_("Nothing to search"));
+               buffer.message(_("Nothing to search"));
                return;
        }
-       bool regexp = (to_utf8(searchString).find("\\regexp") != std::string::npos);
-       FindAdvOptions opt(searchString, casesensitive, matchword, ! backwards, expandmacros, ignoreformat, regexp);
-       std::cerr << "Dispatching LFUN_WORD_FINDADV" << std::endl;
+       bool const regexp = to_utf8(searchString).find("\\regexp") != std::string::npos;
+       docstring replaceString;
+       if (replace) {
+               Buffer & replace_buffer = replace_work_area_->bufferView().buffer();
+               replaceString = buffer_to_latex(replace_buffer);
+       } else {
+               replaceString = from_utf8(LYX_FR_NULL_STRING);
+       }
+       LYXERR(Debug::FIND, "FindAndReplaceOptions: "
+              << "searchstring=" << searchString
+              << ", casesensitiv=" << casesensitive
+              << ", matchword=" << matchword
+              << ", backwards=" << backwards
+              << ", expandmacros=" << expandmacros
+              << ", ignoreformat=" << ignoreformat
+              << ", regexp=" << regexp
+              << ", replaceString" << replaceString);
+       FindAndReplaceOptions opt(searchString, casesensitive, matchword, ! backwards,
+               expandmacros, ignoreformat, regexp, replaceString);
+       LYXERR(Debug::FIND, "Dispatching LFUN_WORD_FINDADV");
        std::ostringstream oss;
        oss << opt;
-       std::cerr << "Dispatching LFUN_WORD_FINDADV" << std::endl;
+       LYXERR(Debug::FIND, "Dispatching LFUN_WORD_FINDADV");
        dispatch(FuncRequest(LFUN_WORD_FINDADV, from_utf8(oss.str())));
 
        //      findAdv(&theApp()->currentView()->currentWorkArea()->bufferView(),
@@ -160,112 +153,129 @@ void FindAndReplace::findAdv(bool casesensitive,
 }
 
 
-void FindAndReplace::onDelayedFocus()
+void FindAndReplaceWidget::findAndReplace(bool backwards, bool replace)
 {
-       LYXERR(Debug::DEBUG, "Delayed Focus");
-       parent_view_.setCurrentWorkArea(find_work_area_);
+       // FIXME: create a Dialog::returnFocus() or something instead of this:
+       view_.setCurrentWorkArea(view_.currentMainWorkArea());
+       // FIXME: This should be an LFUN.
+       findAndReplace(caseCB->isChecked(),
+               wordsCB->isChecked(),
+               backwards,
+               expandMacrosCB->isChecked(),
+               ignoreFormatCB->isChecked(),
+               replace);
+       view_.currentMainWorkArea()->redraw();
        find_work_area_->setFocus();
 }
 
 
-void FindAndReplace::showEvent(QShowEvent *ev)
+void FindAndReplaceWidget::on_regexpInsertCombo_currentIndexChanged(int index)
 {
-       LYXERR(Debug::DEBUG, "FindAndReplace::showEvent");
-       parent_view_.setCurrentWorkArea(find_work_area_);
-       selectAll();
-       find_work_area_->redraw();
-       find_work_area_->setFocus();
-       find_work_area_->installEventFilter(this);
-       connect(&delayedFocusTimer_, SIGNAL(timeout()), this, SLOT(onDelayedFocus()));
-       delayedFocusTimer_.setSingleShot(true);
-       delayedFocusTimer_.start(100);
+       static char const * regexps[] = {
+               ".*", ".+", "[a-z]+", "[0-9]+"
+       };
+       LYXERR(Debug::FIND, "Index: " << index);
+       if (index >= 1 && index < 1 + int(sizeof(regexps)/sizeof(regexps[0]))) {
+               find_work_area_->setFocus();
+               Cursor & cur = find_work_area_->bufferView().cursor();
+               if (! cur.inRegexped())
+                       dispatch(FuncRequest(LFUN_REGEXP_MODE));
+               dispatch(FuncRequest(LFUN_SELF_INSERT, regexps[index - 1]));
+               regexpInsertCombo->setCurrentIndex(0);
+       }
+}
+
+
+void FindAndReplaceWidget::on_closePB_clicked()
+{
+       dispatch(FuncRequest(LFUN_DIALOG_TOGGLE, "findreplaceadv"));
+}
+
+
+void FindAndReplaceWidget::on_findNextPB_clicked() {
+       findAndReplace(false, false);
+}
+
 
-       this->QWidget::showEvent(ev);
+void FindAndReplaceWidget::on_findPrevPB_clicked() {
+       findAndReplace(true, false);
 }
 
 
-void FindAndReplace::disableSearchWorkArea()
+void FindAndReplaceWidget::on_replaceNextPB_clicked()
 {
-       LYXERR(Debug::DEBUG, "FindAndReplace::disableSearchWorkArea()");
-       // Ok, closing the window before 100ms may be impossible, however...
-       delayedFocusTimer_.stop();
-       if (parent_view_.currentWorkArea() == find_work_area_) {
-               LASSERT(parent_view_.currentMainWorkArea(), /* */);
-               parent_view_.setCurrentWorkArea(parent_view_.currentMainWorkArea());
-       }
-       find_work_area_->stopBlinkingCursor();
+       findAndReplace(false, true);
 }
 
 
-void FindAndReplace::hideEvent(QHideEvent *ev)
+void FindAndReplaceWidget::on_replacePrevPB_clicked()
 {
-       LYXERR(Debug::DEBUG, "FindAndReplace::hideEvent");
-       find_work_area_->removeEventFilter(this);
-       disableSearchWorkArea();
-       this->QWidget::hideEvent(ev);
+       findAndReplace(true, true);
 }
 
 
-void FindAndReplace::find(bool backwards)
+void FindAndReplaceWidget::on_replaceallPB_clicked()
 {
-       parent_view_.setCurrentWorkArea(parent_view_.currentMainWorkArea());
-       findAdv(caseCB->isChecked(),
-                       wordsCB->isChecked(),
-                       backwards,
-                       expandMacrosCB->isChecked(),
-                       ignoreFormatCB->isChecked());
-       parent_view_.currentMainWorkArea()->redraw();
-       parent_view_.setCurrentWorkArea(find_work_area_);
-       find_work_area_->setFocus();
 }
 
 
-void FindAndReplace::on_regexpInsertCombo_currentIndexChanged(int index)
+void FindAndReplaceWidget::showEvent(QShowEvent * /* ev */)
 {
-       static char const * regexps[] = {
-               ".*", ".+", "[a-z]+", "[0-9]+"
-       };
-       //lyxerr << "Index: " << index << std::endl;
-       if (index >= 1 && index < 1 + int(sizeof(regexps)/sizeof(regexps[0]))) {
-               find_work_area_->setFocus();
-               Cursor & cur = find_work_area_->bufferView().cursor();
-               if (! cur.inRegexped())
-                       dispatch(FuncRequest(LFUN_REGEXP_MODE));
-               dispatch(FuncRequest(LFUN_SELF_INSERT, regexps[index - 1]));
-               regexpInsertCombo->setCurrentIndex(0);
-       }
+       replace_work_area_->setEnabled(true);
+       replace_work_area_->redraw();
+       find_work_area_->setFocus();
+       dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
+       dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
+       find_work_area_->redraw();
+       find_work_area_->installEventFilter(this);
 }
 
 
-void FindAndReplace::on_closePB_clicked() {
-       disableSearchWorkArea();
-       LYXERR(Debug::DEBUG, "Dispatching dialog-hide findreplaceadv" << std::endl);
-       parent_view_.dispatch(FuncRequest(LFUN_DIALOG_TOGGLE, "findreplaceadv"));
+void FindAndReplaceWidget::hideEvent(QHideEvent *ev)
+{
+       find_work_area_->removeEventFilter(this);
+       this->QWidget::hideEvent(ev);
 }
 
 
-void FindAndReplace::on_findNextPB_clicked() {
-       find(false);
+bool FindAndReplaceWidget::initialiseParams(std::string const & /* params */)
+{
+       find_work_area_->redraw();
+       replace_work_area_->setEnabled(true);
+       replace_work_area_->redraw();
+       find_work_area_->setFocus();
+       dispatch(FuncRequest(LFUN_BUFFER_BEGIN));
+       dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
+       return true;
 }
 
 
-void FindAndReplace::on_findPrevPB_clicked() {
-       find(true);
+FindAndReplace::FindAndReplace(GuiView & parent,
+               Qt::DockWidgetArea area, Qt::WindowFlags flags)
+       : DockView(parent, "Find LyX", qt_("Find LyX Dialog"), area, flags)
+{
+       widget_ = new FindAndReplaceWidget(parent);
+       setWidget(widget_);
+       setFocusProxy(widget_);
 }
 
 
-void FindAndReplace::on_replacePB_clicked()
+FindAndReplace::~FindAndReplace()
 {
+       setFocusProxy(0);
+       delete widget_;
 }
 
 
-void FindAndReplace::on_replaceallPB_clicked()
+bool FindAndReplace::initialiseParams(std::string const & params)
 {
+       return widget_->initialiseParams(params);
 }
 
+
 Dialog * createGuiSearchAdv(GuiView & lv)
 {
-       return new FindAndReplace(lv);
+       return new FindAndReplace(lv, Qt::RightDockWidgetArea);
 }