Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / docview / XS / DocChildFrame.xs
1 #############################################################################
2 ## Name:        ext/docview/XS/DocChildFrame.xs
3 ## Purpose:     XS for wxDocChildFrame (Document/View framwork)
4 ## Author:      Simon Flack
5 ## Modified by:
6 ## Created:     11/09/2002
7 ## RCS-ID:      $Id: DocChildFrame.xs 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2001, 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 MODULE=Wx PACKAGE=Wx::DocChildFrame
14
15 wxDocChildFrame *
16 wxDocChildFrame::new(doc, view, frame, id, title, pos = wxDefaultPosition, size = wxDefaultSize, style = wxDEFAULT_FRAME_STYLE, name = wxFrameNameStr)
17     wxDocument* doc
18     wxView* view
19     wxFrame* frame
20     wxWindowID id
21     wxString title
22     wxPoint pos
23     wxSize size
24     long style
25     wxString name
26   CODE:
27     RETVAL=new wxPliDocChildFrame(CLASS, doc, view, frame, id, title, pos, size, style, name);
28   OUTPUT:
29     RETVAL
30
31 wxDocument *
32 wxDocChildFrame::GetDocument()
33
34 wxView *
35 wxDocChildFrame::GetView()
36
37 void
38 wxDocChildFrame::SetDocument( doc )
39     wxDocument* doc
40
41 void
42 wxDocChildFrame::SetView( view )
43     wxView* view
44
45 bool
46 wxDocChildFrame::Destroy()
47
48 ## Some event stuff missing here
49