MCPcopy Create free account
hub / github.com/ZDoom/Raze / Start

Method Start

libraries/ZWidget/src/core/timer.cpp:24–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24void Timer::Start(int timeoutMilliseconds, bool repeat)
25{
26 Stop();
27
28 TimerId = DisplayWindow::StartTimer(timeoutMilliseconds, [=]() {
29 if (!repeat)
30 Stop();
31 if (FuncExpired)
32 FuncExpired();
33 });
34}
35
36void Timer::Stop()
37{

Callers 11

OnMouseMoveMethod · 0.45
OnKeyDownMethod · 0.45
OnSetFocusMethod · 0.45
OnTimerExpiredMethod · 0.45
OnMouseMoveMethod · 0.45
OnKeyDownMethod · 0.45
OnSetFocusMethod · 0.45
OnTimerExpiredMethod · 0.45
OnMouseDownMethod · 0.45
OnTimerExpiredMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected