]> git.lyx.org Git - lyx.git/blob - src/mathed/math_pos.C
move things around
[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 MathXArray & MathCursorPos::xcell(MathArray::idx_type idx) const
41 {
42         lyx::Assert(par_);
43         return par_->xcell(idx);
44 }
45
46
47 MathXArray & MathCursorPos::xcell() const
48 {
49         lyx::Assert(par_);
50         return par_->xcell(idx_);
51 }
52
53
54 void MathCursorPos::getPos(int & x, int & y) const
55 {
56         par_->getPos(idx_, pos_, x, y);
57 }
58
59
60 ostream & operator<<(ostream & os, MathCursorPos const & p)
61 {
62         os << "(par: " << p.par_ << " idx: " << p.idx_ << " pos: " << p.pos_ << ")";
63         return os;
64 }
65
66
67 bool operator==(MathCursorPos const & p, MathCursorPos const & q)
68 {
69         return p.par_ == q.par_ && p.idx_ == q.idx_ && p.pos_ == q.pos_;
70 }
71
72
73 bool operator!=(MathCursorPos const & p, MathCursorPos const & q)
74 {
75         return p.par_ != q.par_ || p.idx_ != q.idx_ || p.pos_ != q.pos_;
76 }
77
78
79 bool operator<(MathCursorPos const & p, MathCursorPos const & q)
80 {
81         if (p.par_ != q.par_) {
82                 lyxerr << "can't compare cursor and anchor in different insets\n";
83                 return true;
84         }
85         if (p.idx_ != q.idx_)
86                 return p.idx_ < q.idx_;
87         return p.pos_ < q.pos_;
88 }