line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package SDL::Pango::Context; |
2
|
1
|
|
|
1
|
|
1188
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
25
|
|
3
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
23
|
|
4
|
1
|
|
|
1
|
|
4
|
use vars qw(@ISA @EXPORT @EXPORT_OK); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
59
|
|
5
|
|
|
|
|
|
|
require Exporter; |
6
|
|
|
|
|
|
|
require DynaLoader; |
7
|
1
|
|
|
1
|
|
6
|
use SDL::Constants ':SDL::Pango'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
114
|
|
8
|
|
|
|
|
|
|
our @ISA = qw(Exporter DynaLoader); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
7
|
use SDL::Internal::Loader; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
67
|
|
11
|
|
|
|
|
|
|
internal_load_dlls(__PACKAGE__); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $VERSION = 2.548; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
bootstrap SDL::Pango::Context; |
16
|
|
|
|
|
|
|
|
17
|
1
|
|
|
1
|
|
6
|
use base 'Exporter'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
168
|
|
18
|
|
|
|
|
|
|
our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::Pango'} }; |
19
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( |
20
|
|
|
|
|
|
|
all => \@EXPORT, |
21
|
|
|
|
|
|
|
direction => $SDL::Constants::EXPORT_TAGS{'SDL::Pango/direction'}, |
22
|
|
|
|
|
|
|
align => $SDL::Constants::EXPORT_TAGS{'SDL::Pango/align'} |
23
|
|
|
|
|
|
|
); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |