]> git.lyx.org Git - lyx.git/blobdiff - src/Row.cpp
Move Dialog.{h,cpp} and ButtonPolicy.{h,cpp} to frontends/qt4/
[lyx.git] / src / Row.cpp
index 3bf393b7cefe2ea24e621eab8581aca6dea3633d..5b3a8fc76262f01be4a1dcafb05bb79723c088e8 100644 (file)
@@ -24,27 +24,26 @@ namespace lyx {
 
 
 Row::Row()
-       : changed_(false), crc_(0), pos_(0), end_(0), separator(0), hfill(0),
-       label_hfill(0), x(0)
+       : separator(0), hfill(0), label_hfill(0), x(0),
+       sel_beg(-1), sel_end(-1), changed_(false), crc_(0), pos_(0), end_(0)
 {}
 
 
 Row::Row(pos_type pos)
-       : changed_(false), crc_(0), pos_(pos), end_(0), separator(0), hfill(0),
-       label_hfill(0), x(0)
+       : separator(0), hfill(0), label_hfill(0), x(0),
+       sel_beg(-1), sel_end(-1), changed_(false), crc_(0), pos_(pos), end_(0)
 {}
 
 
-void Row::setCrc(size_type crc)
+void Row::setCrc(size_type crc) const
 {
-       changed_ |= crc != crc_;
+       changed_ = crc != crc_;
        crc_ = crc;
 }
 
 
 void Row::setDimension(Dimension const & dim)
 {
-       changed_ |= dim != dim_;
        dim_ = dim;
 }
 
@@ -61,7 +60,25 @@ void Row::endpos(pos_type p)
 }
 
 
-void Row::dump(const char * s) const
+void Row::setSelection(pos_type beg, pos_type end)
+{
+       if (pos_ >= beg && pos_ <= end)
+               sel_beg = pos_;
+       else if (beg > pos_ && beg <= end_)
+               sel_beg = beg;
+       else
+               sel_beg = -1;
+
+       if (end_ >= beg && end_ <= end)
+               sel_end = end_;
+       else if (end < end_ && end >= pos_)
+               sel_end = end;
+       else
+               sel_end = -1;
+}
+
+
+void Row::dump(char const * s) const
 {
        lyxerr << s << " pos: " << pos_ << " end: " << end_
                << " width: " << dim_.wid