File Coverage

lib/SDL2/KeyboardEvent.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package SDL2::KeyboardEvent {
2 2     2   18 use SDL2::Utils;
  2         4  
  2         52  
3             has
4             type => 'uint32',
5             timestamp => 'uint32',
6             windowId => 'uint32',
7             state => 'uint8',
8             repeat => 'uint8',
9             padding2 => 'uint8',
10             padding3 => 'uint8',
11             keysym => 'opaque' # SDL_Keysym
12             ;
13              
14             =encoding utf-8
15              
16             =head1 NAME
17              
18             SDL2::KeyboardEvent - Keyboard button event structure
19              
20             =head1 SYNOPSIS
21              
22             use SDL2 qw[:all];
23             # TODO: I need to whip up a quick example
24              
25             =head1 DESCRIPTION
26            
27              
28             =head1 Fields
29              
30             =over
31              
32             =item C - C or C
33              
34             =item C - In milliseconds, populated using L<< C|SDL2::FFI/C >>
35              
36             =item C - The window with keyboard focus, if any
37              
38             =item C - C or C
39              
40             =item C - Non-zero if this is a key repeat
41              
42             =item C
43              
44             =item C
45              
46             =item C - The key that was pressed or released
47              
48             =back
49              
50             =head1 AUTHOR
51              
52             Sanko Robinson Esanko@cpan.orgE
53              
54             =begin stopwords
55              
56              
57             =end stopwords
58              
59             =cut
60              
61             };
62             1;