MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / buildAcceleratorMap

Method buildAcceleratorMap

Engine/source/gui/core/guiControl.cpp:2273–2285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2271//-----------------------------------------------------------------------------
2272
2273void GuiControl::buildAcceleratorMap()
2274{
2275 //add my own accel key
2276 addAcceleratorKey();
2277
2278 //add all my childrens keys
2279 iterator i;
2280 for(i = begin(); i != end(); i++)
2281 {
2282 GuiControl *ctrl = static_cast<GuiControl *>(*i);
2283 ctrl->buildAcceleratorMap();
2284 }
2285}
2286
2287//-----------------------------------------------------------------------------
2288

Callers 3

setContentControlMethod · 0.80
pushDialogControlMethod · 0.80
popDialogControlMethod · 0.80

Calls 2

beginFunction · 0.85
endFunction · 0.85

Tested by

no test coverage detected