| 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 | { |
nothing calls this directly
no test coverage detected