X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftext2.C;h=a570b387d498bc6d98110e482c25e1f2a57ad88a;hb=ee2966faba5563fb853f31f4d3d1785d380e1332;hp=4b905d6f6f71f5813dfcb2ff82cb2bf88e96e5bc;hpb=89b422b320a352e503c0625820da1073805d74a9;p=lyx.git diff --git a/src/text2.C b/src/text2.C index 4b905d6f6f..a570b387d4 100644 --- a/src/text2.C +++ b/src/text2.C @@ -53,7 +53,7 @@ #include "frontends/FontMetrics.h" -#include "insets/insetenv.h" +#include "insets/InsetEnv.h" #include "mathed/InsetMathHull.h" @@ -94,7 +94,7 @@ InsetBase * LyXText::checkInsetHit(BufferView & bv, int x, int y) Paragraph const & par = pars_[pit]; - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": x: " << x << " y: " << y @@ -105,12 +105,12 @@ InsetBase * LyXText::checkInsetHit(BufferView & bv, int x, int y) for (; iit != iend; ++iit) { InsetBase * inset = iit->inset; #if 1 - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": examining inset " << inset << endl; if (bv.coordCache().getInsets().has(inset)) - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": xo: " << inset->xo(bv) << "..." << inset->xo(bv) + inset->width() @@ -119,18 +119,18 @@ InsetBase * LyXText::checkInsetHit(BufferView & bv, int x, int y) << inset->yo(bv) + inset->descent() << endl; else - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": inset has no cached position" << endl; #endif if (inset->covers(bv, x, y)) { - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": Hit inset: " << inset << endl; return inset; } } - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": No inset hit. " << endl; return 0; @@ -354,7 +354,7 @@ void LyXText::setLayout(LCursor & cur, string const & layout) LyXLayout_ptr const & lyxlayout = params.getLyXTextClass()[layout]; if (lyxlayout->is_environment) { // move everything in a new environment inset - lyxerr[Debug::DEBUG] << "setting layout " << layout << endl; + LYXERR(Debug::DEBUG) << "setting layout " << layout << endl; lyx::dispatch(FuncRequest(LFUN_LINE_BEGIN)); lyx::dispatch(FuncRequest(LFUN_LINE_END_SELECT)); lyx::dispatch(FuncRequest(LFUN_CUT)); @@ -751,12 +751,12 @@ void LyXText::setCurrentFont(LCursor & cur) } // y is screen coordinate -pit_type LyXText::getPitNearY(BufferView & bv, int y) +pit_type LyXText::getPitNearY(BufferView & bv, int y) const { BOOST_ASSERT(!paragraphs().empty()); BOOST_ASSERT(bv.coordCache().getParPos().find(this) != bv.coordCache().getParPos().end()); CoordCache::InnerParPosCache const & cc = bv.coordCache().getParPos().find(this)->second; - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": y: " << y << " cache size: " << cc.size() << endl; @@ -806,7 +806,7 @@ pit_type LyXText::getPitNearY(BufferView & bv, int y) } for (; it != et; ++it) { - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << " examining: pit: " << it->first << " y: " << it->second.y_ @@ -820,7 +820,7 @@ pit_type LyXText::getPitNearY(BufferView & bv, int y) } } - lyxerr[Debug::DEBUG] + LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << ": found best y: " << yy << " for pit: " << pit << endl; @@ -1143,7 +1143,7 @@ void LyXText::fixCursorAfterDelete(CursorSlice & cur, CursorSlice const & where) bool LyXText::deleteEmptyParagraphMechanism(LCursor & cur, LCursor & old, bool & need_anchor_change) { - //lyxerr[Debug::DEBUG] << "DEPM: cur:\n" << cur << "old:\n" << old << endl; + //LYXERR(Debug::DEBUG) << "DEPM: cur:\n" << cur << "old:\n" << old << endl; Paragraph & oldpar = old.paragraph(); @@ -1246,7 +1246,7 @@ bool LyXText::deleteEmptyParagraphMechanism(LCursor & cur, void LyXText::deleteEmptyParagraphMechanism(pit_type first, pit_type last, bool trackChanges) { - BOOST_ASSERT(first >= 0 && first <= last && last < pars_.size()); + BOOST_ASSERT(first >= 0 && first <= last && last < (int) pars_.size()); for (pit_type pit = first; pit <= last; ++pit) { Paragraph & par = pars_[pit];