]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiErrorList.cpp
Make the InsetInfo dialog a bit less esoteric.
[lyx.git] / src / frontends / qt4 / GuiErrorList.cpp
index ca910cf698c76ced60f8af0f903426e2c5dfab40..0b625ccd519bf5ad2a73fca67919a165d0973b5e 100644 (file)
 #include "Buffer.h"
 #include "BufferView.h"
 #include "FuncRequest.h"
+#include "FuncStatus.h"
 #include "BufferList.h"
+#include "LyX.h"
 #include "ParIterator.h"
 #include "Text.h"
+#include "TexRow.h"
 
 #include "support/debug.h"
 #include "support/gettext.h"
@@ -36,38 +39,40 @@ using namespace lyx::support;
 
 namespace {
 
-string const guiErrorType(string const s)
+string const guiErrorType(string const s)
 {
        if (s == "docbook")
                return N_("DocBook");
        else if (s == "literate")
                return N_("Literate");
-       else if (s == "platex")
-               return N_("pLaTeX");
        else if (s == "latex")
+               // This covers all LaTeX variants
+               // (LaTeX, PDFLaTeX, XeTeX, LuaTeX, pLaTeX)
                return N_("LaTeX");
        return s;
 }
 
-} // namespace anon
+} // namespace
 
 namespace lyx {
 namespace frontend {
 
 GuiErrorList::GuiErrorList(GuiView & lv)
-       : GuiDialog(lv, "errorlist", qt_("Error List"))
+       : GuiDialog(lv, "errorlist", qt_("Error List")), buf_(0), from_master_(false)
 {
        setupUi(this);
 
-       connect(closePB, SIGNAL(clicked()),
-               this, SLOT(slotClose()));
+       connect(buttonBox, SIGNAL(clicked(QAbstractButton *)),
+                       this, SLOT(slotButtonBox(QAbstractButton *)));
        connect(viewLogPB, SIGNAL(clicked()),
                this, SLOT(viewLog()));
+       connect(showAnywayPB, SIGNAL(clicked()),
+               this, SLOT(showAnyway()));
        connect(errorsLW, SIGNAL(currentRowChanged(int)),
                this, SLOT(select()));
 
        bc().setPolicy(ButtonPolicy::OkCancelPolicy);
-       bc().setCancel(closePB);
+       bc().setCancel(buttonBox->button(QDialogButtonBox::Cancel));
 }
 
 
@@ -102,6 +107,12 @@ void GuiErrorList::viewLog()
 }
 
 
+void GuiErrorList::showAnyway()
+{
+       dispatch(FuncRequest(LFUN_BUFFER_VIEW_CACHE));
+}
+
+
 void GuiErrorList::paramsToDialog()
 {
        setTitle(toqstr(name_));
@@ -114,31 +125,34 @@ void GuiErrorList::paramsToDialog()
        for (; it != en; ++it)
                errorsLW->addItem(toqstr(it->error));
        errorsLW->setCurrentRow(0);
+       showAnywayPB->setEnabled(
+               lyx::getStatus(FuncRequest(LFUN_BUFFER_VIEW_CACHE)).enabled());
 }
 
 
 ErrorList const & GuiErrorList::errorList() const
 {
-       if (&bufferview()->buffer() == buf_) {
-               error_list_ = from_master_ ?
-                       bufferview()->buffer().masterBuffer()->errorList(error_type_)
-                       : bufferview()->buffer().errorList(error_type_);
-       }
+       Buffer const * buffer = from_master_
+                               ? bufferview()->buffer().masterBuffer()
+                               : &bufferview()->buffer();
+       if (buffer == buf_)
+               error_list_ = buffer->errorList(error_type_);
+
        return error_list_;
 }
 
 
-bool GuiErrorList::initialiseParams(string const & data)
+bool GuiErrorList::initialiseParams(string const & sdata)
 {
-       from_master_ = prefixIs(data, "from_master|");
-       string error_type = data;
+       from_master_ = prefixIs(sdata, "from_master|");
+       string error_type = sdata;
        if (from_master_)
-               error_type = split(data, '|');
+               error_type = split(sdata, '|');
        error_type_ = error_type;
        buf_ = from_master_ ?
                bufferview()->buffer().masterBuffer()
                : &bufferview()->buffer();
-       name_ = bformat(_("%1$s Errors (%2$s)"), 
+       name_ = bformat(_("%1$s Errors (%2$s)"),
                                _(guiErrorType(error_type)),
                                    from_utf8(buf_->absFileName()));
        paramsToDialog();
@@ -148,47 +162,19 @@ bool GuiErrorList::initialiseParams(string const & data)
 
 bool GuiErrorList::goTo(int item)
 {
-       if (&buffer() != buf_) {
-               if (!theBufferList().isLoaded(buf_))
-                       return false;
-               FuncRequest fr(LFUN_BUFFER_SWITCH, buf_->absFileName());
-               dispatch(fr);
-       }
        ErrorItem const & err = errorList()[item];
-
-       if (err.par_id == -1)
-               return false;
-
-       if (from_master_)
-               // FIXME: implement
+       if (TexRow::isNone(err.start))
                return false;
 
-       DocIterator dit = buf_->getParFromID(err.par_id);
+       Buffer const * errbuf = err.buffer ? err.buffer : buf_;
 
-       if (dit == doc_iterator_end(buf_)) {
-               // FIXME: Happens when loading a read-only doc with 
-               // unknown layout. Should this be the case?
-               LYXERR0("par id " << err.par_id << " not found");
-               return false;
+       if (&buffer() != errbuf) {
+               if (!theBufferList().isLoaded(errbuf))
+                       return false;
+               FuncRequest fr(LFUN_BUFFER_SWITCH, errbuf->absFileName());
+               dispatch(fr);
        }
-
-       // This paragraph has zero size, so highlight the previous one
-       while (dit.paragraph().size() == 0)
-               dit.backwardPos();
-
-       // Now make the selection.
-       // if pos_end is 0, this means it is end-of-paragraph
-       pos_type const s = dit.paragraph().size();
-       pos_type const end = err.pos_end ? min(err.pos_end, s) : s;
-       pos_type const start = min(err.pos_start, end);
-       pos_type const range = end == start ? s - start : end - start;
-       // end-of-paragraph cannot be highlighted, so highlight the last thing
-       dit.pos() = range ? start : end - 1;
-       BufferView * bv = const_cast<BufferView *>(bufferview());
-       // FIXME LFUN
-       // If we used an LFUN, we would not need these lines:
-       bv->putSelectionAt(dit, max(range, pos_type(1)), false);
-       bv->processUpdateFlags(Update::Force | Update::FitCursor);
+       dispatch(TexRow::goToFunc(err.start, err.end));
        return true;
 }