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

Method notifyInvalidateNode

UnitTests/UnitTest_GraphView/DemoKeeper.cpp:201–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

199 }
200
201 void DemoKeeper::notifyInvalidateNode(BaseAnimationNode* _sender)
202 {
203 wraps::BaseGraphView::EnumeratorNode node = mGraphView->getNodeEnumerator();
204 while (node.next())
205 {
206 BaseAnimationNode* anim_node = dynamic_cast<BaseAnimationNode*>(node.current());
207 if (anim_node)
208 {
209 anim_node->invalidateNode(_sender);
210 }
211 }
212 }
213
214 void DemoKeeper::notifyNodeClosed(wraps::BaseGraphView* _sender, wraps::BaseGraphNode* _node)
215 {

Callers

nothing calls this directly

Calls 4

getNodeEnumeratorMethod · 0.80
nextMethod · 0.45
currentMethod · 0.45
invalidateNodeMethod · 0.45

Tested by

no test coverage detected