whitespace.
[lyx.git] / src / CoordCache.cpp
blob22dbdbbd64d2b424ede0be3c626811e544713acd
1 /* \file CoordCache.cpp
2 * This file is part of LyX, the document processor.
3 * Licence details can be found in the file COPYING.
5 * \author André Pönitz
7 * Full author contact details are available in file CREDITS.
8 */
10 #include <config.h>
12 #include "CoordCache.h"
14 #include "Text.h"
16 #include "support/debug.h"
17 #include "support/docstring.h"
19 #include "insets/Inset.h"
21 #include "support/lassert.h"
24 namespace lyx {
26 Point::Point(int x, int y)
27 : x_(x), y_(y)
29 LASSERT(x > -1000000, /**/);
30 LASSERT(x < 1000000, /**/);
31 LASSERT(y > -1000000, /**/);
32 LASSERT(y < 1000000, /**/);
35 // just a helper to be able to set a breakpoint
36 void lyxbreaker(void const * data, const char * hint, int size)
38 LYXERR0("break on pointer: " << data << " hint: " << hint
39 << " size: " << size);
40 LASSERT(false, return);
44 void CoordCache::clear()
46 arrays_.clear();
47 insets_.clear();
51 void CoordCache::dump() const
53 LYXERR0("InsetCache contains:");
54 for (CoordCacheBase<Inset>::cache_type::const_iterator it = getInsets().getData().begin(); it != getInsets().getData().end(); ++it) {
55 Inset const * inset = it->first;
56 Point const p = it->second.pos;
57 LYXERR0("Inset " << inset << "(" << to_utf8(inset->name())
58 << ") has point " << p.x_ << "," << p.y_);
62 } // namespace lyx