]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiErrorList.cpp
54eb83ebc6b0cb413f8a13426cbb674eb0a23caa
[lyx.git] / src / frontends / qt4 / GuiErrorList.cpp
1 /**
2  * \file GuiErrorList.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GuiErrorList.h"
14
15 #include "qt_helpers.h"
16
17 #include "Buffer.h"
18 #include "BufferView.h"
19 #include "ParIterator.h"
20 #include "Text.h"
21
22 #include "support/debug.h"
23 #include "support/gettext.h"
24 #include "support/lstrings.h"
25
26 #include <QListWidget>
27 #include <QPushButton>
28 #include <QShowEvent>
29 #include <QTextBrowser>
30
31 using namespace std;
32 using namespace lyx::support;
33
34 namespace lyx {
35 namespace frontend {
36
37 GuiErrorList::GuiErrorList(GuiView & lv)
38         : GuiDialog(lv, "errorlist", qt_("Error List"))
39 {
40         setupUi(this);
41
42         connect(closePB, SIGNAL(clicked()),
43                 this, SLOT(slotClose()));
44         connect(errorsLW, SIGNAL(currentRowChanged(int)),
45                 this, SLOT(select()));
46
47         bc().setPolicy(ButtonPolicy::OkCancelPolicy);
48         bc().setCancel(closePB);
49 }
50
51
52 void GuiErrorList::showEvent(QShowEvent * e)
53 {
54         select();
55         e->accept();
56 }
57
58
59 void GuiErrorList::select()
60 {
61         int const item = errorsLW->row(errorsLW->currentItem());
62         if (item == -1)
63                 return;
64         goTo(item);
65         descriptionTB->setPlainText(
66                 toqstr(errorList()[item].description));
67 }
68
69
70 void GuiErrorList::updateContents()
71 {
72         setTitle(toqstr(name_));
73         errorsLW->clear();
74         descriptionTB->setPlainText(QString());
75
76         ErrorList::const_iterator it = errorList().begin();
77         ErrorList::const_iterator end = errorList().end();
78         for (; it != end; ++it)
79                 errorsLW->addItem(toqstr(it->error));
80         errorsLW->setCurrentRow(0);
81 }
82
83
84 ErrorList const & GuiErrorList::errorList() const
85 {
86         return bufferview()->buffer().errorList(error_type_);
87 }
88
89
90 bool GuiErrorList::initialiseParams(string const & error_type)
91 {
92         error_type_ = error_type;
93         Buffer const & buf = bufferview()->buffer();
94         name_ = bformat(_("%1$s Errors (%2$s)"), _(error_type),
95                                      from_utf8(buf.absFileName()));
96         return true;
97 }
98
99
100 bool GuiErrorList::goTo(int item)
101 {
102         ErrorItem const & err = errorList()[item];
103
104         if (err.par_id == -1)
105                 return false;
106
107         Buffer const & buf = buffer();
108         DocIterator dit = buf.getParFromID(err.par_id);
109
110         if (dit == doc_iterator_end(buf.inset())) {
111         // FIXME: Happens when loading a read-only doc with 
112         // unknown layout. Should this be the case?
113                 LYXERR0("par id " << err.par_id << " not found");
114                 return false;
115         }
116
117         // Now make the selection.
118         // if pos_end is 0, this means it is end-of-paragraph
119         pos_type const s = dit.paragraph().size();
120         pos_type const end = err.pos_end ? min(err.pos_end, s) : s;
121         pos_type const start = min(err.pos_start, end);
122         pos_type const range = end - start;
123         dit.pos() = start;
124         BufferView * bv = const_cast<BufferView *>(bufferview());
125         // FIXME: If we used an LFUN, we would not need this line:
126         bv->putSelectionAt(dit, range, false);
127         bv->processUpdateFlags(Update::Force | Update::FitCursor);
128         return true;
129 }
130
131
132 Dialog * createGuiErrorList(GuiView & lv) { return new GuiErrorList(lv); }
133
134 } // namespace frontend
135 } // namespace lyx
136
137
138 #include "GuiErrorList_moc.cpp"