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

Method hideToolTip

MyGUIEngine/src/MyGUI_ToolTipManager.cpp:143–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141 }
142
143 void ToolTipManager::hideToolTip(Widget* _widget)
144 {
145 Widget* container = _widget->_getContainer();
146 if (container != nullptr)
147 container->eventToolTip(container, ToolTipInfo(ToolTipInfo::Hide));
148 else
149 _widget->eventToolTip(_widget, ToolTipInfo(ToolTipInfo::Hide));
150 }
151
152 void ToolTipManager::showToolTip(Widget* _widget, size_t _index, const IntPoint& _point)
153 {

Callers

nothing calls this directly

Calls 2

_getContainerMethod · 0.80
ToolTipInfoClass · 0.50

Tested by

no test coverage detected