Home
last modified time | relevance | path

Searched refs:exit_on_quit (Results 1 – 4 of 4) sorted by relevance

/dports/devel/p5-SDL/SDL-2.548/t/
H A Dsdlx_controller.t20 move_handlers event_handlers show_handlers eoq exit_on_quit
34 is($app->exit_on_quit, 0, 'no exit_on_quit by default');
39 is( $app->exit_on_quit, 0, 'exit_on_quit is not set by default' );
40 is( $app->eoq, 0, 'eoq() is a method alias to exit_on_quit()' );
41 $app->exit_on_quit(1);
42 is( scalar @{ $app->event_handlers }, 0, 'exit_on_quit does not trigger event handlers' );
43 is( $app->exit_on_quit, 1, 'exit_on_quit can be set dynamically' );
44 is( $app->eoq, 1, 'eoq() follows exit_on_quit()' );
46 is( $app->exit_on_quit, 1, 'exit_on_quit is not an event handler' );
47 is( $app->eoq, 1, 'eoq() still follows exit_on_quit()' );
[all …]
/dports/devel/p5-SDL/SDL-2.548/lib/SDLx/
H A DController.pm51 $_eoq{$ref} = $args{exit_on_quit} || $args{eoq} || 0;
122 sub exit_on_quit { subroutine
132 *eoq = \&exit_on_quit; # alias
/dports/devel/p5-SDL/SDL-2.548/lib/pods/SDLx/
H A DApp.pod80 =item * exit_on_quit
/dports/devel/p5-SDL/SDL-2.548/
H A DCHANGELOG108 - SDLx::Controller exit_on_quit() and eoq() accessors [garu]
194 - Added exit_on_quit feature for SDLx::App