]> git.lyx.org Git - features.git/blob - src/cursor.C
Change DispatchResult semantics a bit.
[features.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 Jürgen Vigna
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 "iterators.h"
19 #include "lyxtext.h"
20 #include "paragraph.h"
21
22 #include "insets/updatableinset.h"
23
24 using std::vector;
25 using std::endl;
26
27
28 DispatchResult Cursor::dispatch(FuncRequest const & cmd)
29 {
30         for (int i = data_.size() - 1; i >= 0; --i) {
31                 lyxerr << "trying to dispatch to inset" << data_[i].inset_ << endl;
32                 DispatchResult res = data_[i].inset_->dispatch(cmd);
33                 lyxerr << "   result: " << res.val() << endl;
34
35                 if (res.dispatched())
36                         return res;
37
38                 lyxerr << "# unhandled result: " << res.val() << endl;
39         }
40         return DispatchResult(false);
41 }
42
43
44 void buildCursor(Cursor & cursor, BufferView & bv)
45 {
46         UpdatableInset * inset = bv.theLockingInset();
47         lyxerr << "\nbuildCursor: " << inset << endl;
48         if (!inset)
49                 return;
50
51         inset = inset->getLockingInset();
52
53         bool ok = false;
54         ParIterator pit = bv.buffer()->par_iterator_begin();
55         ParIterator end = bv.buffer()->par_iterator_end();
56         for ( ; pit != end && !ok; ++pit) {
57                 InsetList::iterator     it = pit->insetlist.begin();
58                 InsetList::iterator     iend = pit->insetlist.end();
59                 for ( ; it != iend && !ok; ++it)
60                         if (it->inset == inset || it->inset == inset->owner())
61                                 ok = true;
62         }
63
64         if (!ok) {
65                 lyxerr << " tli not found! inset: " << inset << endl;
66                 return;
67         }
68
69         pit.asCursor(cursor);
70         for (size_t i = 0, n = cursor.data_.size(); i != n; ++i) {
71                 lyxerr << " inset: " << cursor.data_[i].inset_
72                        << " idx: " << cursor.data_[i].idx_
73                        << " text: " << cursor.data_[i].text_
74                        << " par: " << cursor.data_[i].par_
75                        << " pos: " << cursor.data_[i].pos_
76                        << endl;
77         }
78 }