]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlErrorList.C
Fix a bunch of doxygen warnings.
[lyx.git] / src / frontends / controllers / ControlErrorList.C
1 /**
2  * \file ControlErrorList.C
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 "ControlErrorList.h"
14 #include "buffer.h"
15 #include "BufferView.h"
16 #include "debug.h"
17 #include "iterators.h"
18 #include "lyxtext.h"
19 #include "paragraph.h"
20
21
22 using std::endl;
23 using std::string;
24
25
26 ControlErrorList::ControlErrorList(Dialog & d)
27         : Dialog::Controller(d)
28 {}
29
30
31 void ControlErrorList::clearParams()
32 {}
33
34
35 ErrorList const &
36 ControlErrorList::errorList() const
37 {
38         return errorlist_;
39 }
40
41
42 bool ControlErrorList::initialiseParams(string const & name)
43 {
44         errorlist_ = kernel().bufferview()->getErrorList();
45         name_ = name;
46         return true;
47 }
48
49
50 string const & ControlErrorList::name()
51 {
52         return name_;
53 }
54
55
56 void ControlErrorList::goTo(int item)
57 {
58         ErrorItem const & err = errorlist_[item];
59
60         if (err.par_id == -1)
61                 return;
62
63         Buffer & buf = kernel().buffer();
64         ParIterator pit = buf.getParFromID(err.par_id);
65
66         if (pit == buf.par_iterator_end()) {
67                 lyxerr << "par id not found" << endl;
68                 return;
69         }
70
71         int range = err.pos_end - err.pos_start;
72
73         if (err.pos_end > pit->size() || range <= 0)
74                 range = pit->size() - err.pos_start;
75
76         // Now make the selection.
77         BufferView * const bv = kernel().bufferview();
78         bv->insetUnlock();
79         bv->text->clearSelection();
80         bv->text->setCursor(pit.pit(), err.pos_start);
81         bv->text->setSelectionRange(range);
82         bv->fitCursor();
83         bv->update();
84 }