File Coverage

blib/lib/App/Wx/PodEditor.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package App::Wx::PodEditor;
2              
3 1     1   24295 use warnings;
  1         3  
  1         37  
4 1     1   7 use strict;
  1         2  
  1         42  
5              
6 1     1   533 use Wx;
  0            
  0            
7              
8             use App::Wx::PodEditor::Frame;
9              
10             our @ISA = qw(Wx::App);
11              
12             our $VERSION = '0.01';
13              
14             sub OnInit {
15             my ( $self ) = @_;
16            
17             my( $frame ) = App::Wx::PodEditor::Frame->new( undef, -1, "PodEditor", [20,20], [500,340] );
18             $frame->Show(1);
19            
20             1;
21             }
22              
23             1;
24              
25             =head1 NAME
26              
27             App::Wx::PodEditor - A Pod editor written with wxPerl
28              
29             =head1 SYNOPSIS
30              
31             Perhaps a little code snippet.
32              
33             use App::Wx::PodEditor;
34              
35             my $foo = App::Wx::PodEditor->new();
36             $foo->MainLoop;
37              
38             =head1 AUTHOR
39              
40             Renee Baecker, C<< >>
41              
42             =head1 BUGS
43              
44             Please report any bugs or feature requests to
45             C, or through the web interface at
46             L.
47             I will be notified, and then you'll automatically be notified of progress on
48             your bug as I make changes.
49              
50             =head1 SUPPORT
51              
52             You can find documentation for this module with the perldoc command.
53              
54             perldoc App::Wx::PodEditor
55              
56             You can also look for information at:
57              
58             =over 4
59              
60             =item * AnnoCPAN: Annotated CPAN documentation
61              
62             L
63              
64             =item * CPAN Ratings
65              
66             L
67              
68             =item * RT: CPAN's request tracker
69              
70             L
71              
72             =item * Search CPAN
73              
74             L
75              
76             =back
77              
78             =head1 ACKNOWLEDGEMENTS
79              
80             =head1 COPYRIGHT & LICENSE
81              
82             Copyright 2008 Renee Baecker, all rights reserved.
83              
84             This program is free software; you can redistribute it and/or modify it
85             under the same terms as Perl itself.
86              
87             =cut
88              
89             1; # End of App::Wx::PodEditor