1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
#############################################################################
## Name: ext/mdi/XS/MDIParentFrame.xs
## Purpose: XS for Wx::MDIParentFrame
## Author: Mattia Barbon
## Modified by:
## Created: 06/09/2001
## RCS-ID: $Id: MDIParentFrame.xs 2517 2008-11-30 20:14:22Z mbarbon $
## Copyright: (c) 2001-2002, 2004, 2006-2008 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
#if wxPERL_USE_MDI_ARCHITECTURE
#include <wx/menu.h>
#include "cpp/mdi.h"
#include "cpp/overload.h"
MODULE=Wx PACKAGE=Wx::MDIParentFrame
void
new( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_VOIDM_REDISP( newDefault )
MATCH_ANY_REDISP( newFull )
END_OVERLOAD( "Wx::MDIParentFrame::new" )
wxMDIParentFrame*
newDefault( CLASS )
PlClassName CLASS
CODE:
RETVAL = new wxPliMDIParentFrame( CLASS );
OUTPUT: RETVAL
wxMDIParentFrame*
newFull( CLASS, parent, id, title, pos = wxDefaultPosition, size = wxDefaultSize, style = wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, name = wxFrameNameStr )
PlClassName CLASS
wxWindow* parent
wxWindowID id
wxString title
wxPoint pos
wxSize size
long style
wxString name
CODE:
RETVAL = new wxPliMDIParentFrame( CLASS );
RETVAL->Create( parent, id, title, pos, size, style, name );
OUTPUT:
RETVAL
bool
wxMDIParentFrame::Create( parent, id, title, pos = wxDefaultPosition, size = wxDefaultSize, style = wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, name = wxFrameNameStr )
wxWindow* parent
wxWindowID id
wxString title
wxPoint pos
wxSize size
long style
wxString name
void
wxMDIParentFrame::ActivateNext()
void
wxMDIParentFrame::ActivatePrevious()
void
wxMDIParentFrame::ArrangeIcons()
void
wxMDIParentFrame::Cascade()
wxMDIChildFrame*
wxMDIParentFrame::GetActiveChild()
#ifdef __WXUNIVERSAL__
wxGenericMDIClientWindow*
wxMDIParentFrame::GetClientWindow()
#else
#if WXPERL_W_VERSION_GE( 2, 9, 0 )
wxMDIClientWindowBase*
wxMDIParentFrame::GetClientWindow()
#else
wxMDIClientWindow*
wxMDIParentFrame::GetClientWindow()
#endif
#endif
#if ( !defined(__WXGTK__) && !defined(__WXMAC__) && !defined(__WXMOTIF__) ) \
|| defined(__WXPERL_FORCE__)
wxMenu*
wxMDIParentFrame::GetWindowMenu()
void
wxMDIParentFrame::SetWindowMenu( menu )
wxMenu* menu
#endif
#if WXPERL_W_VERSION_GE( 2, 5, 4 )
void
wxMDIParentFrame::Tile( orient = wxHORIZONTAL )
wxOrientation orient
#else
void
wxMDIParentFrame::Tile()
#endif
#endif
|