]> git.lyx.org Git - lyx.git/blob - src/cursor.C
prevent crash in cursorX when row cache is empty
[lyx.git] / src / cursor.C
1 /**
2  * \file cursor.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "buffer.h"
14 #include "BufferView.h"
15 #include "cursor.h"
16 #include "debug.h"
17 #include "dispatchresult.h"
18 #include "funcrequest.h"
19 #include "iterators.h"
20 #include "lfuns.h"
21 #include "lyxtext.h"
22 #include "paragraph.h"
23 #include "lyxrow.h"
24
25 #include "insets/updatableinset.h"
26 #include "insets/insettabular.h"
27 #include "insets/insettext.h"
28
29 #include <boost/assert.hpp>
30
31 using std::vector;
32 using std::endl;
33
34
35 std::ostream & operator<<(std::ostream & os, LCursor const & cursor)
36 {
37         os << "\n";
38         for (size_t i = 0, n = cursor.data_.size(); i != n; ++i)
39                 os << "   " << cursor.data_[i] << "\n";
40         return os;
41 }
42
43
44 LCursor::LCursor(BufferView * bv)
45         : bv_(bv)
46 {}
47
48
49 DispatchResult LCursor::dispatch(FuncRequest const & cmd0)
50 {
51         lyxerr << "\nLCursor::dispatch: " << *this << endl;
52         FuncRequest cmd = cmd0;
53
54         for (int i = data_.size() - 1; i >= 0; --i) {
55                 CursorSlice const & citem = data_[i];
56                 lyxerr << "trying to dispatch to inset " << citem.inset_ << endl;
57                 DispatchResult res = citem.inset_->dispatch(cmd);
58                 if (res.dispatched()) {
59                         lyxerr << " successfully dispatched to inset " << citem.inset_ << endl;
60                         return DispatchResult(true, true);
61                 }
62                 // remove one level of cursor
63                 switch (res.val()) {
64                         case FINISHED:
65                                 pop(i);
66                                 cmd = FuncRequest(bv_, LFUN_FINISHED_LEFT);
67                                 break;
68                         case FINISHED_RIGHT:
69                                 pop(i);
70                                 cmd = FuncRequest(bv_, LFUN_FINISHED_RIGHT);
71                                 break;
72                         case FINISHED_UP:
73                                 pop(i);
74                                 cmd = FuncRequest(bv_, LFUN_FINISHED_UP);
75                                 break;
76                         case FINISHED_DOWN:
77                                 pop(i);
78                                 cmd = FuncRequest(bv_, LFUN_FINISHED_DOWN);
79                                 break;
80                         default:
81                                 lyxerr << "not handled on level " << i << " val: " << res.val() << endl;
82                                 break;
83                 }
84         }
85         lyxerr << "trying to dispatch to main text " << bv_->text() << endl;
86         DispatchResult res = bv_->text()->dispatch(cmd);
87         lyxerr << "   result: " << res.val() << endl;
88
89         if (!res.dispatched()) {
90                 lyxerr << "trying to dispatch to bv " << bv_ << endl;
91                 bool sucess = bv_->dispatch(cmd);
92                 lyxerr << "   result: " << sucess << endl;
93                 res.dispatched(sucess);
94         }
95
96         return res;
97 }
98
99
100 void LCursor::push(UpdatableInset * inset)
101 {
102         lyxerr << "LCursor::push()  inset: " << inset << endl;
103         data_.push_back(CursorSlice(inset));
104         updatePos();
105 }
106
107
108 void LCursor::pop(int depth)
109 {
110         lyxerr << "LCursor::pop() to " << depth << endl;
111         while (depth < data_.size()) {
112                 lyxerr <<   "LCursor::pop a level " << endl;
113                 data_.pop_back();
114         }
115 }
116
117
118 void LCursor::pop()
119 {
120         lyxerr << "LCursor::pop() " << endl;
121         //BOOST_ASSERT(!data_.empty());
122         if (data_.empty())
123                 lyxerr << "### TRYING TO POP FROM EMPTY CURSOR" << endl;
124         else
125                 data_.pop_back();
126 }
127
128
129 UpdatableInset * LCursor::innerInset() const
130 {
131         return data_.empty() ? 0 : data_.back().asUpdatableInset();
132 }
133
134
135 LyXText * LCursor::innerText() const
136 {
137         if (!data_.empty()) {
138                 // go up until first non-0 text is hit
139                 // (innermost text is 0 e.g. for mathed and the outer tabular level)
140                 for (int i = data_.size() - 1; i >= 0; --i)
141                         if (data_[i].text())
142                                 return data_[i].text();
143         }
144         return bv_->text();
145 }
146
147
148 void LCursor::updatePos()
149 {
150         if (!data_.empty())
151                 cached_y_ = bv_->top_y() + innerInset()->y();
152 }
153
154
155 void LCursor::getDim(int & asc, int & desc) const
156 {
157         LyXText * txt = innerText();
158
159         if (txt) {
160                 Row const & row = *txt->cursorRow();
161                 asc = row.baseline();
162                 desc = row.height() - asc;
163         } else
164                 innerInset()->getCursorDim(asc, desc);
165 }
166
167
168 void LCursor::getPos(int & x, int & y) const
169 {
170         if (data_.empty()) {
171                 x = bv_->text()->cursorX();
172                 y = bv_->text()->cursorY();
173 //              y -= bv_->top_y();
174         } else {
175                 // Would be nice to clean this up to make some understandable sense...
176                 UpdatableInset * inset = innerInset();
177                 // Non-obvious. The reason we have to have these
178                 // extra checks is that the ->getCursor() calls rely
179                 // on the inset's own knowledge of its screen position.
180                 // If we scroll up or down in a big enough increment, the
181                 // inset->draw() is not called: this doesn't update
182                 // inset.top_baseline, so getCursor() returns an old value.
183                 // Ugly as you like.
184                 inset->getCursorPos(x, y);
185                 x += inset->x();
186                 y += cached_y_;
187         }
188 }
189
190
191 UpdatableInset * LCursor::innerInsetOfType(int code) const
192 {
193         for (int i = data_.size() - 1; i >= 0; --i)
194                 if (data_[i].asUpdatableInset()->lyxCode() == code)
195                         return data_[i].asUpdatableInset();
196         return 0;
197 }
198
199
200 InsetTabular * LCursor::innerInsetTabular() const
201 {
202         return static_cast<InsetTabular *>
203                 (innerInsetOfType(InsetOld::TABULAR_CODE));
204 }