Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / debian / libwx-perl / usr / lib / perl5 / Wx / DocView.pm
1 #############################################################################
2 ## Name:        ext/docview/lib/Wx/DocView.pm
3 ## Purpose:     Wx::DocView
4 ## Author:      Simon Flack
5 ## Modified by:
6 ## Created:     11/09/2002
7 ## RCS-ID:      $Id: DocView.pm 2188 2007-08-20 19:21:29Z mbarbon $
8 ## Copyright:   (c) 2002, 2004, 2007 Simon Flack
9 ## Licence:     This program is free software; you can redistribute it and/or
10 ##              modify it under the same terms as Perl itself
11 #############################################################################
12
13 package Wx::DocView;
14
15 use Wx;
16 use strict;
17
18 use vars qw($VERSION);
19
20 $VERSION = '0.01';
21
22 Wx::wx_boot( 'Wx::DocView', $VERSION );
23
24 #
25 # properly setup inheritance tree
26 #
27
28 no strict;
29
30 package Wx::Printout;                   # avoid warning
31 package Wx::MDIChildFrame;              # avoid warning
32 package Wx::MDIParentFrame;             # avoid warning
33 package Wx::DocManager;                 @ISA = qw(Wx::EvtHandler);
34 package Wx::View;                       @ISA = qw(Wx::EvtHandler);
35 package Wx::Document;                   @ISA = qw(Wx::EvtHandler);
36 package Wx::DocPrintout;                @ISA = qw(Wx::Printout);
37 package Wx::DocChildFrame;              @ISA = qw(Wx::Frame);
38 package Wx::DocParentFrame;             @ISA = qw(Wx::Frame);
39 package Wx::DocMDIChildFrame;           @ISA = qw(Wx::MDIChildFrame);
40 package Wx::DocMDIParentFrame;          @ISA = qw(Wx::MDIParentFrame);
41 package Wx::PlCommand;                  @ISA = qw(Wx::Command);
42
43 1;
44
45 # Local variables: #
46 # mode: cperl #
47 # End: #