]> git.lyx.org Git - lyx.git/blob - src/mathed/math_pos.C
merge MathArray and MathXArray classes.
[lyx.git] / src / mathed / math_pos.C
1 #include "config.h"
2
3 #include <iostream>
4
5 #include "math_pos.h"
6 #include "math_inset.h"
7 #include "debug.h"
8 #include "support/LAssert.h"
9
10
11 using std::ostream;
12
13 MathCursorPos::MathCursorPos()
14         : par_(0), idx_(0), pos_(0)
15 {}
16
17
18 MathCursorPos::MathCursorPos(MathInset * p)
19         : par_(p), idx_(0), pos_(0)
20 {
21         lyx::Assert(par_);
22 }
23
24
25
26 MathArray & MathCursorPos::cell(MathArray::idx_type idx) const
27 {
28         lyx::Assert(par_);
29         return par_->cell(idx);
30 }
31
32
33 MathArray & MathCursorPos::cell() const
34 {
35         lyx::Assert(par_);
36         return par_->cell(idx_);
37 }
38
39
40 void MathCursorPos::getPos(int & x, int & y) const
41 {
42         par_->getPos(idx_, pos_, x, y);
43 }
44
45
46 ostream & operator<<(ostream & os, MathCursorPos const & p)
47 {
48         os << "(par: " << p.par_ << " idx: " << p.idx_ << " pos: " << p.pos_ << ")";
49         return os;
50 }
51
52
53 bool operator==(MathCursorPos const & p, MathCursorPos const & q)
54 {
55         return p.par_ == q.par_ && p.idx_ == q.idx_ && p.pos_ == q.pos_;
56 }
57
58
59 bool operator!=(MathCursorPos const & p, MathCursorPos const & q)
60 {
61         return p.par_ != q.par_ || p.idx_ != q.idx_ || p.pos_ != q.pos_;
62 }
63
64
65 bool operator<(MathCursorPos const & p, MathCursorPos const & q)
66 {
67         if (p.par_ != q.par_) {
68                 lyxerr << "can't compare cursor and anchor in different insets\n";
69                 return true;
70         }
71         if (p.idx_ != q.idx_)
72                 return p.idx_ < q.idx_;
73         return p.pos_ < q.pos_;
74 }