MCPcopy Create free account
hub / github.com/MyGUI/mygui / _checkPoint

Method _checkPoint

MyGUIEngine/src/MyGUI_Widget.cpp:1098–1102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1096 }
1097
1098 bool Widget::_checkPoint(int _left, int _top) const
1099 {
1100 return (_getViewLeft() <= _left) && (_getViewTop() <= _top) && (_getViewRight() >= _left) &&
1101 (_getViewBottom() >= _top);
1102 }
1103
1104 void Widget::_linkChildWidget(Widget* _widget)
1105 {

Callers

nothing calls this directly

Calls 4

_getViewLeftFunction · 0.85
_getViewTopFunction · 0.85
_getViewRightFunction · 0.85
_getViewBottomFunction · 0.85

Tested by

no test coverage detected