]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiErrorList.cpp
eae20d761e1a5f2ad732d4df4bf362aa9f44a6bf
[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(itemSelectionChanged()),
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         errorsLW->setCurrentRow(0);
55         select();
56         e->accept();
57 }
58
59
60 void GuiErrorList::select()
61 {
62         int const item = errorsLW->row(errorsLW->currentItem());
63         if (item == -1)
64                 return;
65         goTo(item);
66         descriptionTB->setPlainText(
67                 toqstr(errorList()[item].description));
68 }
69
70
71 void GuiErrorList::updateContents()
72 {
73         setTitle(toqstr(name_));
74         errorsLW->clear();
75         descriptionTB->setPlainText(QString());
76
77         ErrorList::const_iterator it = errorList().begin();
78         ErrorList::const_iterator end = errorList().end();
79         for (; it != end; ++it)
80                 errorsLW->addItem(toqstr(it->error));
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 & 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()->putSelectionAt(dit, range, false);
125         // FIXME: If we used an LFUN, we would not need this line:
126         bufferview()->processUpdateFlags(Update::Force | Update::FitCursor);
127         return true;
128 }
129
130
131 Dialog * createGuiErrorList(GuiView & lv) { return new GuiErrorList(lv); }
132
133 } // namespace frontend
134 } // namespace lyx
135
136
137 #include "GuiErrorList_moc.cpp"