| 159 | } |
| 160 | |
| 161 | void ToolTipManager::moveToolTip(Widget* _widget, size_t _index, const IntPoint& _point) |
| 162 | { |
| 163 | Widget* container = _widget->_getContainer(); |
| 164 | if (container != nullptr) |
| 165 | container->eventToolTip(container, ToolTipInfo(ToolTipInfo::Move, _index, _point)); |
| 166 | else |
| 167 | _widget->eventToolTip(_widget, ToolTipInfo(ToolTipInfo::Move, ITEM_NONE, _point)); |
| 168 | } |
| 169 | |
| 170 | bool ToolTipManager::isNeedToolTip(Widget* _widget) |
| 171 | { |
nothing calls this directly
no test coverage detected