]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetText.cpp
* src/paragraph_funcs.cpp (breakParagraph): change parameter 'flag' to
[lyx.git] / src / insets / InsetText.cpp
index dc7074a41e27580c7069badc9a1b3547dbdeaa96..1f19ea5ad38fb9c2d8a82d2d30beb2f36e500cf2 100644 (file)
@@ -74,17 +74,11 @@ using std::ostream;
 using std::vector;
 
 
-int InsetText::border_ = 2;
-
-
 InsetText::InsetText(BufferParams const & bp)
        : drawFrame_(false), frame_color_(Color::insetframe)
 {
        paragraphs().push_back(Paragraph());
        paragraphs().back().layout(bp.getTextClass().defaultLayout());
-       // Dispose of the infamous L-shaped cursor.
-       text_.current_font.setLanguage(bp.language);
-       text_.real_current_font.setLanguage(bp.language);
        init();
 }
 
@@ -96,10 +90,6 @@ InsetText::InsetText(InsetText const & in)
        drawFrame_ = in.drawFrame_;
        frame_color_ = in.frame_color_;
        text_.paragraphs() = in.text_.paragraphs();
-       // Hand current buffer language down to "cloned" textinsets
-       // e.g. tabular cells
-       text_.current_font = in.text_.current_font;
-       text_.real_current_font = in.text_.real_current_font;
        init();
 }
 
@@ -135,6 +125,17 @@ Inset * InsetText::clone() const
 }
 
 
+Dimension const InsetText::dimension(BufferView const & bv) const
+{
+       TextMetrics const & tm = bv.textMetrics(&text_);
+       Dimension dim = tm.dimension();
+       dim.wid += 2 * TEXT_TO_INSET_OFFSET;
+       dim.des += TEXT_TO_INSET_OFFSET;
+       dim.asc += TEXT_TO_INSET_OFFSET;
+       return dim;
+}
+
+
 void InsetText::write(Buffer const & buf, ostream & os) const
 {
        os << "Text\n";
@@ -165,45 +166,40 @@ void InsetText::read(Buffer const & buf, Lexer & lex)
 }
 
 
-bool InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        TextMetrics & tm = mi.base.bv->textMetrics(&text_);
 
        //lyxerr << "InsetText::metrics: width: " << mi.base.textwidth << endl;
-       font_ = mi.base.font;
+
        // Hand font through to contained lyxtext:
-       text_.font_ = mi.base.font;
-       mi.base.textwidth -= 2 * border_;
-       tm.metrics(mi, dim);
-       mi.base.textwidth += 2 * border_;
-       dim.asc += border_;
-       dim.des += border_;
-       dim.wid += 2 * border_;
-       bool const changed = dim_ != dim;
-       dim_ = dim;
-       return changed;
+       tm.font_ = mi.base.font;
+       mi.base.textwidth -= 2 * TEXT_TO_INSET_OFFSET;
+       if (hasFixedWidth())
+               tm.metrics(mi, dim, mi.base.textwidth);
+       else
+               tm.metrics(mi, dim);
+       mi.base.textwidth += 2 * TEXT_TO_INSET_OFFSET;
+       dim.asc += TEXT_TO_INSET_OFFSET;
+       dim.des += TEXT_TO_INSET_OFFSET;
+       dim.wid += 2 * TEXT_TO_INSET_OFFSET;
 }
 
 
 void InsetText::draw(PainterInfo & pi, int x, int y) const
 {
-       // update our idea of where we are
-       setPosCache(pi, x, y);
-
        TextMetrics & tm = pi.base.bv->textMetrics(&text_);
 
        if (drawFrame_ || pi.full_repaint) {
-               int const w = hasFixedWidth() ? 
-                       tm.maxWidth() : tm.width() + 2 * border_;
-               int const a = tm.ascent() + border_;
-               int const h = a + tm.descent() + border_;
+               int const w = tm.width() + 2 * TEXT_TO_INSET_OFFSET;
+               int const yframe = y - TEXT_TO_INSET_OFFSET - tm.ascent();
+               int const h = tm.height() + 2 * TEXT_TO_INSET_OFFSET;
                if (pi.full_repaint)
-                       pi.pain.fillRectangle(x, y - a, w, h, backgroundColor());
+                       pi.pain.fillRectangle(x, yframe, w, h, backgroundColor());
                if (drawFrame_)
-                       pi.pain.rectangle(x, y - a, w, h, frameColor());
+                       pi.pain.rectangle(x, yframe, w, h, frameColor());
        }
-       tm.drawSelection(pi, x + border_, y);
-       tm.draw(pi, x + border_, y);
+       tm.draw(pi, x + TEXT_TO_INSET_OFFSET, y);
 }
 
 
@@ -226,7 +222,7 @@ void InsetText::edit(Cursor & cur, bool left)
 
 Inset * InsetText::editXY(Cursor & cur, int x, int y)
 {
-       return text_.editXY(cur, x, y);
+       return cur.bv().textMetrics(&text_).editXY(cur, x, y);
 }
 
 
@@ -322,8 +318,8 @@ void InsetText::validate(LaTeXFeatures & features) const
 void InsetText::cursorPos(BufferView const & bv,
                CursorSlice const & sl, bool boundary, int & x, int & y) const
 {
-       x = text_.cursorX(bv, sl, boundary) + border_;
-       y = text_.cursorY(bv, sl, boundary);
+       x = bv.textMetrics(&text_).cursorX(sl, boundary) + TEXT_TO_INSET_OFFSET;
+       y = bv.textMetrics(&text_).cursorY(sl, boundary);
 }