fix bug 1798 (from Andr�)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9640 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2005-02-15 19:53:42 +00:00
parent c303b62fb0
commit 0cb92344f7
5 changed files with 34 additions and 13 deletions

View File

@ -3,6 +3,10 @@
* rowpainter.C (paintText): Ensure that "paragraphs().size() - 1"
can be used meaningfully in a comparison.
2005-02-13 André Pönitz <poenitz@gmx.net>
* bufferview_funcs.C (coordOffset): improve cursor drawing
2005-02-13 André Pönitz <poenitz@gmx.net>
* Cursor.[Ch] (fixIfBroken): new method, try to fix a broken cursor

View File

@ -174,6 +174,9 @@ Point coordOffset(DocIterator const & dit)
y += par.rows()[rit].height();
y += par.rows()[par.pos2row(sl.pos())].ascent();
x += dit.bottom().text()->cursorX(dit.bottom());
// The following correction should not be there at all.
// The cusor looks much better with the -1, though.
--x;
return Point(x, y);
}

View File

@ -1,3 +1,9 @@
2005-02-13 André Pönitz <poenitz@gmx.net>
* insettext.[Ch] (border_): new
* insettext.C (metrics, draw, drawFrame, clearInset, getCursorPos):
use border_
2005-02-14 Angus Leeming <leeming@lyx.org>
* insetlatexaccent.C (draw): squash a couple of MSVC warnings

View File

@ -70,6 +70,9 @@ using std::ostream;
using std::vector;
int InsetText::border_ = 2;
InsetText::InsetText(BufferParams const & bp)
: drawFrame_(false), frame_color_(LColor::insetframe), text_(0)
{
@ -92,7 +95,8 @@ InsetText::InsetText(InsetText const & in)
}
InsetText::InsetText() : text_(0)
InsetText::InsetText()
: text_(0)
{}
@ -168,9 +172,14 @@ void InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
{
//lyxerr << "InsetText::metrics: width: " << mi.base.textwidth << endl;
setViewCache(mi.base.bv);
mi.base.textwidth -= 2 * border_;
font_ = mi.base.font;
text_.font_ = mi.base.font;
text_.metrics(mi, dim);
dim.asc += border_;
dim.des += border_;
dim.wid += 2 * border_;
mi.base.textwidth += 2 * border_;
dim_ = dim;
}
@ -185,10 +194,7 @@ void InsetText::draw(PainterInfo & pi, int x, int y) const
bv->hideCursor();
x += scroll();
//y -= text_.ascent();
text_.draw(pi, x, y);
text_.draw(pi, x + border_, y);
if (drawFrame_)
drawFrame(pi.pain, x, y);
@ -206,18 +212,18 @@ void InsetText::drawSelection(PainterInfo & pi, int x, int y) const
void InsetText::drawFrame(Painter & pain, int x, int y) const
{
int const w = max(1, text_.width());
int const h = text_.height();
int const a = text_.ascent();
int const w = text_.width() + border_;
int const a = text_.ascent() + border_;
int const h = a + text_.descent() + border_;
pain.rectangle(x, y - a, w, h, frameColor());
}
void InsetText::clearInset(Painter & pain, int x, int y) const
{
int const w = text_.width();
int const h = text_.height();
int const a = text_.ascent();
int const w = text_.width() + border_;
int const a = text_.ascent() + border_;
int const h = a + text_.descent() + border_;
pain.fillRectangle(x, y - a, w, h, backgroundColor());
}
@ -356,7 +362,7 @@ void InsetText::validate(LaTeXFeatures & features) const
void InsetText::getCursorPos(CursorSlice const & sl, int & x, int & y) const
{
x = text_.cursorX(sl);
x = text_.cursorX(sl) + border_;
y = text_.cursorY(sl);
}

View File

@ -165,6 +165,8 @@ private:
int frame_color_;
///
mutable lyx::pit_type old_pit;
///
static int border_;
public:
///
mutable LyXText text_;