]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiErrorList.cpp
Whitespace.
[lyx.git] / src / frontends / qt4 / GuiErrorList.cpp
index b0f0f9ef6e3729f21ab26271c9c14d06bf9a3d0b..900fe86018bdedff8355b2ea049f0084cce50525 100644 (file)
 #include <config.h>
 
 #include "GuiErrorList.h"
-#include "Qt2BC.h"
+
+#include "GuiView.h"
 #include "qt_helpers.h"
 
-#include "controllers/ControlErrorList.h"
+#include "Buffer.h"
+#include "BufferView.h"
+#include "FuncRequest.h"
+#include "BufferList.h"
+#include "ParIterator.h"
+#include "Text.h"
+
+#include "support/debug.h"
+#include "support/gettext.h"
+#include "support/lstrings.h"
 
 #include <QListWidget>
-#include <QTextBrowser>
 #include <QPushButton>
-#include <QCloseEvent>
+#include <QShowEvent>
+#include <QTextBrowser>
 
-namespace lyx {
-namespace frontend {
+using namespace std;
+using namespace lyx::support;
 
-/////////////////////////////////////////////////////////////////////
-//
-// GuiErrorListDialog
-//
-/////////////////////////////////////////////////////////////////////
+namespace {
 
-GuiErrorListDialog::GuiErrorListDialog(GuiErrorList * form)
-       : form_(form)
+string const guiErrorType(string const s)
 {
-       setupUi(this);
-       connect(closePB, SIGNAL(clicked()),
-               form, SLOT(slotClose()));
-       connect(errorsLW, SIGNAL( itemActivated(QListWidgetItem *)),
-               form, SLOT(slotClose()));
-       connect( errorsLW, SIGNAL( itemClicked(QListWidgetItem *)),
-               this, SLOT(select_adaptor(QListWidgetItem *)));
+       if (s == "docbook")
+               return N_("DocBook");
+       else if (s == "literate")
+               return N_("Literate");
+       else if (s == "platex")
+               return N_("pLaTeX");
+       else if (s == "latex")
+               return N_("LaTeX");
+       return s;
 }
 
+} // namespace anon
 
-void GuiErrorListDialog::select_adaptor(QListWidgetItem * item)
+namespace lyx {
+namespace frontend {
+
+GuiErrorList::GuiErrorList(GuiView & lv)
+       : GuiDialog(lv, "errorlist", qt_("Error List"))
 {
-       form_->select(item);
+       setupUi(this);
+
+       connect(closePB, SIGNAL(clicked()),
+               this, SLOT(slotClose()));
+       connect(viewLogPB, SIGNAL(clicked()),
+               this, SLOT(viewLog()));
+       connect(errorsLW, SIGNAL(currentRowChanged(int)),
+               this, SLOT(select()));
+
+       bc().setPolicy(ButtonPolicy::OkCancelPolicy);
+       bc().setCancel(closePB);
 }
 
 
-void GuiErrorListDialog::closeEvent(QCloseEvent * e)
+void GuiErrorList::showEvent(QShowEvent * e)
 {
-       form_->slotWMHide();
+       select();
+       paramsToDialog();
        e->accept();
 }
 
 
-void GuiErrorListDialog::showEvent(QShowEvent *e)
+void GuiErrorList::select()
 {
-       errorsLW->setCurrentRow(0);
-       form_->select(errorsLW->item(0));
-       e->accept();
+       int const item = errorsLW->row(errorsLW->currentItem());
+       if (item == -1)
+               return;
+       goTo(item);
+       descriptionTB->setPlainText(
+               toqstr(errorList()[item].description));
 }
 
 
-/////////////////////////////////////////////////////////////////////
-//
-// GuiErrorList
-//
-/////////////////////////////////////////////////////////////////////
-
+void GuiErrorList::viewLog()
+{
+       if (&buffer() != buf_) {
+               if (!theBufferList().isLoaded(buf_))
+                       return;
+               FuncRequest fr(LFUN_BUFFER_SWITCH, buf_->absFileName());
+               dispatch(fr);
+       }
+       dispatch(FuncRequest(LFUN_DIALOG_SHOW, "latexlog"));
+}
 
-typedef QController<ControlErrorList, GuiView<GuiErrorListDialog> >
-       ErrorListBase;
 
-GuiErrorList::GuiErrorList(Dialog & parent)
-       : ErrorListBase(parent, docstring())
-{}
+void GuiErrorList::paramsToDialog()
+{
+       setTitle(toqstr(name_));
+       errorsLW->clear();
+       descriptionTB->setPlainText(QString());
+
+       ErrorList const & el = errorList();
+       ErrorList::const_iterator it = el.begin();
+       ErrorList::const_iterator const en = el.end();
+       for (; it != en; ++it)
+               errorsLW->addItem(toqstr(it->error));
+       errorsLW->setCurrentRow(0);
+}
 
 
-void GuiErrorList::build_dialog()
+ErrorList const & GuiErrorList::errorList() const
 {
-       dialog_.reset(new GuiErrorListDialog(this));
-       bcview().setCancel(dialog_->closePB);
+       if (&bufferview()->buffer() == buf_) {
+               error_list_ = from_master_ ?
+                       bufferview()->buffer().masterBuffer()->errorList(error_type_)
+                       : bufferview()->buffer().errorList(error_type_);
+       }
+       return error_list_;
 }
 
 
-void GuiErrorList::select(QListWidgetItem * wi)
+bool GuiErrorList::initialiseParams(string const & data)
 {
-       int const item = dialog_->errorsLW->row(wi);
-       controller().goTo(item);
-       dialog_->descriptionTB->setPlainText(toqstr(controller().errorList()[item].description));
+       from_master_ = prefixIs(data, "from_master|");
+       string error_type = data;
+       if (from_master_)
+               error_type = split(data, '|');
+       error_type_ = error_type;
+       buf_ = from_master_ ?
+               bufferview()->buffer().masterBuffer()
+               : &bufferview()->buffer();
+       name_ = bformat(_("%1$s Errors (%2$s)"), 
+                               _(guiErrorType(error_type)),
+                                   from_utf8(buf_->absFileName()));
+       paramsToDialog();
+       return true;
 }
 
 
-void GuiErrorList::update_contents()
+bool GuiErrorList::goTo(int item)
 {
-       setTitle(from_utf8(controller().name()));
-       dialog_->errorsLW->clear();
-       dialog_->descriptionTB->setPlainText(QString());
-
-       ErrorList::const_iterator it = controller().errorList().begin();
-       ErrorList::const_iterator end = controller().errorList().end();
-       for(; it != end; ++it) {
-               dialog_->errorsLW->addItem(toqstr(it->error));
+       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
+               return false;
+
+       DocIterator dit = buf_->getParFromID(err.par_id);
+
+       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;
+       }
+
+       // 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;
+       dit.pos() = start;
+       BufferView * bv = const_cast<BufferView *>(bufferview());
+       // FIXME LFUN
+       // If we used an LFUN, we would not need these lines:
+       bv->putSelectionAt(dit, range, false);
+       bv->processUpdateFlags(Update::Force | Update::FitCursor);
+       return true;
 }
 
+
+Dialog * createGuiErrorList(GuiView & lv) { return new GuiErrorList(lv); }
+
 } // namespace frontend
 } // namespace lyx
 
 
-#include "GuiErrorList_moc.cpp"
+#include "moc_GuiErrorList.cpp"