Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / mdi / lib / Wx / MDI.pm
1 #############################################################################
2 ## Name:        ext/mdi/lib/Wx/MDI.pm
3 ## Purpose:     Wx::MDI (pulls in all MDI)
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     06/09/2001
7 ## RCS-ID:      $Id: MDI.pm 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2001-2002, 2004 Mattia Barbon
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::MDI;
14
15 use Wx;
16 use strict;
17
18 use vars qw($VERSION);
19
20 $VERSION = '0.01';
21
22 Wx::wx_boot( 'Wx::MDI', $VERSION );
23
24 # init wxModules
25
26 #
27 # properly setup inheritance tree
28 #
29
30 no strict;
31
32 package Wx::MDIParentFrame;     @ISA = qw(Wx::Frame);
33 package Wx::MDIChildFrame;      @ISA = qw(Wx::Frame);
34 package Wx::MDIClientWindow;
35
36 @ISA = Wx::wxMOTIF ? 'Wx::Notebook' : 'Wx::Window';
37
38 package Wx::GenericMDIParentFrame;     @ISA = qw(Wx::MDIParentFrame);
39 package Wx::GenericMDIChildFrame;      @ISA = qw(Wx::MDIChildFrame);
40 package Wx::GenericMDIClientWindow;    @ISA = qw(Wx::MDIClientWindow);
41
42 use strict;
43
44 1;
45
46 # Local variables: #
47 # mode: cperl #
48 # End: #
49