Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / mdi / XS / MDIChildFrame.xs
1 #############################################################################
2 ## Name:        ext/mdi/XS/MDIChildFrame.xs
3 ## Purpose:     XS for Wx::MDIChildFrame
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     06/09/2001
7 ## RCS-ID:      $Id: MDIChildFrame.xs 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2001-2002, 2004, 2006 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 #if wxPERL_USE_MDI_ARCHITECTURE
14
15 #include "cpp/mdi.h"
16
17 MODULE=Wx PACKAGE=Wx::MDIChildFrame
18
19 wxMDIChildFrame*
20 wxMDIChildFrame::new( parent, id, title, pos = wxDefaultPosition, size = wxDefaultSize, style = wxDEFAULT_FRAME_STYLE, name = wxFrameNameStr )
21     wxMDIParentFrame* parent
22     wxWindowID id
23     wxString title
24     wxPoint pos
25     wxSize size
26     long style
27     wxString name
28   CODE:
29     RETVAL = new wxPliMDIChildFrame( CLASS, parent, id, title, pos, size,
30         style, name );
31   OUTPUT:
32     RETVAL
33
34 void
35 wxMDIChildFrame::Activate()
36
37 #if !defined(__WXGTK__) || defined(__WXPERL_FORCE__)
38
39 void
40 wxMDIChildFrame::Maximize()
41
42 #endif
43
44 void
45 wxMDIChildFrame::Restore()
46
47 #endif