X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrow.C;h=a34be18861b2befaa4bf5dfd7f3ca8ece3bf2b63;hb=55ded55ccfede99816c92de009d82c245ab69514;hp=8ae4715e650e0f6aadf5a74126a3382ed6f95471;hpb=9ed14b41fa5a4775830f74e029a320e8bb93b10b;p=lyx.git diff --git a/src/lyxrow.C b/src/lyxrow.C index 8ae4715e65..a34be18861 100644 --- a/src/lyxrow.C +++ b/src/lyxrow.C @@ -22,17 +22,18 @@ using lyx::pos_type; +RowMetrics::RowMetrics() + : separator(0), hfill(0), label_hfill(0), x(0) +{} + + Row::Row() - : pos_(0), end_(0), fill_(0), height_(0), width_(0), y_offset_(0), - ascent_of_text_(0), baseline_(0), - x_(0), fill_separator_(0), fill_hfill_(0), fill_label_hfill_(0) + : pos_(0), end_(0), ascent_(0), descent_(0), width_(0) {} Row::Row(pos_type pos) - : pos_(pos), end_(0), fill_(0), height_(0), width_(0), y_offset_(0), - ascent_of_text_(0), baseline_(0), - x_(0), fill_separator_(0), fill_hfill_(0), fill_label_hfill_(0) + : pos_(pos), end_(0), ascent_(0), descent_(0), width_(0) {} @@ -48,139 +49,47 @@ pos_type Row::pos() const } -void Row::end(pos_type p) +void Row::endpos(pos_type p) { end_ = p; } -pos_type Row::end() const +pos_type Row::endpos() const { return end_; } -void Row::fill(int f) -{ - fill_ = f; -} - - -int Row::fill() const -{ - return fill_; -} - - -void Row::width(unsigned int w) +void Row::width(int w) { width_ = w; } -unsigned int Row::width() const +int Row::width() const { return width_; } -void Row::ascent_of_text(unsigned int a) -{ - ascent_of_text_ = a; -} - - -unsigned int Row::ascent_of_text() const -{ - return ascent_of_text_; -} - - -void Row::top_of_text(unsigned int top) -{ - top_of_text_ = top; -} - - -unsigned int Row::top_of_text() const -{ - return top_of_text_; -} - - -void Row::baseline(unsigned int b) -{ - baseline_ = b; -} - - -unsigned int Row::baseline() const -{ - return baseline_; -} - - -float Row::x() const -{ - return x_; -} - - -void Row::x(float f) -{ - x_ = f; -} - - -float Row::fill_separator() const -{ - return fill_separator_; -} - - -void Row::fill_separator(float f) -{ - fill_separator_ = f; -} - - -float Row::fill_hfill() const -{ - return fill_hfill_; -} - - -void Row::fill_hfill(float f) -{ - fill_hfill_ = f; -} - - -float Row::fill_label_hfill() const -{ - return fill_label_hfill_; -} - - -void Row::fill_label_hfill(float f) +void Row::ascent(int b) { - fill_label_hfill_ = f; + ascent_ = b; } -bool Row::isParStart() const +int Row::ascent() const { - return !pos(); + return ascent_; } void Row::dump(const char * s) const { - lyxerr << s << " pos: " << pos_ << " width: " << width_ - << " height: " << height_ - << " fill: " << fill_ - << " ascent_of_text: " << ascent_of_text_ - << " top_of_text: " << top_of_text_ - << " y_offset: " << y_offset_ << std::endl; + lyxerr << s << " pos: " << pos_ << " end: " << end_ + << " width: " << width_ + << " ascent: " << ascent_ + << " descent: " << descent_ + << std::endl; } -