Change a brain-dead algorithm to a smarter one.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7369 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Asger Ottar Alstrup 2003-07-26 20:51:52 +00:00
parent fcb82ea793
commit b52b324d64
2 changed files with 14 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2003-07-26 Asger Alstrup <alstrup@local>
* rowpainter.C (paintRows): Change algorithm to work directly on
the insets rather than asking every character in the document
whether its an inset.
2003-07.26 Alfredo Braunstein <abraunst@libero.it> 2003-07.26 Alfredo Braunstein <abraunst@libero.it>
* buffer.C (openFileWrite): factorize some code * buffer.C (openFileWrite): factorize some code

View File

@ -1083,13 +1083,14 @@ void paintRows(BufferView const & bv, LyXText const & text,
// compute inset metrics // compute inset metrics
for (; pit != end; ++pit) { for (; pit != end; ++pit) {
for (int pos = 0; pos != pit->size(); ++pos) { InsetList & insetList = pit->insetlist;
if (pit->isInset(pos)) { InsetList::iterator ii = insetList.begin();
Dimension dim; InsetList::iterator iend = insetList.end();
LyXFont font; for (; ii != iend; ++ii) {
MetricsInfo mi(perv(bv), font, text.workWidth()); Dimension dim;
pit->getInset(pos)->metrics(mi, dim); LyXFont font;
} MetricsInfo mi(perv(bv), font, text.workWidth());
ii->inset->metrics(mi, dim);
} }
} }
#else #else