Example #1
0
File: Inset.cpp Project: bsjung/Lyx
int Inset::yo(BufferView const & bv) const
{
	return bv.coordCache().getInsets().y(this);
}
Example #2
0
File: Inset.cpp Project: bsjung/Lyx
bool Inset::covers(BufferView const & bv, int x, int y) const
{
	return bv.coordCache().getInsets().covers(this, x, y);
}
Example #3
0
File: Inset.cpp Project: bsjung/Lyx
Dimension const Inset::dimension(BufferView const & bv) const
{
	return bv.coordCache().getInsets().dim(this);
}