line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package SDL2::MessageBoxColorScheme { |
2
|
2
|
|
|
2
|
|
16
|
use SDL2::Utils; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
21
|
|
3
|
2
|
|
|
2
|
|
1906
|
use SDL2::MessageBoxColor; |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
141
|
|
4
|
|
|
|
|
|
|
has colors => 'opaque' # TODO |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
#'SDL_MessageBoxColor[' . SDL2::FFI::SDL_MESSAGEBOX_COLOR_MAX() . ']' |
7
|
|
|
|
|
|
|
; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=encoding utf-8 |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
SDL2::MessageBoxColorScheme - A set of colors to use for message box dialogs |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SYNOPSIS |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
use SDL2 qw[:all]; |
18
|
|
|
|
|
|
|
# TODO: I need to whip up a quick example |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 DESCRIPTION |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 Fields |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=over |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=item C |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=back |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 AUTHOR |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Sanko Robinson Esanko@cpan.orgE |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=begin stopwords |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=end stopwords |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
}; |
43
|
|
|
|
|
|
|
1; |