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 123 124 125 126 127 128 129
|
#############################################################################
## Name: XS/SashWindow.xs
## Purpose: XS for Wx::SashWindow
## Author: Mattia Barbon
## Modified by:
## Created: 03/02/2001
## RCS-ID: $Id: SashWindow.xs 2057 2007-06-18 23:03:00Z mbarbon $
## Copyright: (c) 2001-2003, 2006 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
#include <wx/sashwin.h>
MODULE=Wx_Evt PACKAGE=Wx::SashEvent
wxSashEvent*
wxSashEvent::new( id = 0, edge = wxSASH_NONE )
int id
wxSashEdgePosition edge
wxSashEdgePosition
wxSashEvent::GetEdge()
wxRect*
wxSashEvent::GetDragRect()
CODE:
RETVAL = new wxRect( THIS->GetDragRect() );
OUTPUT:
RETVAL
wxSashDragStatus
wxSashEvent::GetDragStatus()
MODULE=Wx PACKAGE=Wx::SashWindow
void
new( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_VOIDM_REDISP( newDefault )
MATCH_ANY_REDISP( newFull )
END_OVERLOAD( "Wx::SashWindow::new" )
wxSashWindow*
newDefault( CLASS )
PlClassName CLASS
CODE:
RETVAL = new wxSashWindow();
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
OUTPUT: RETVAL
wxSashWindow*
newFull( CLASS, parent, id = wxID_ANY, pos = wxDefaultPosition, size = wxDefaultSize, style = wxCLIP_CHILDREN|wxSW_3D, name = wxT("sashWindow") )
PlClassName CLASS
wxWindow* parent
wxWindowID id
wxPoint pos
wxSize size
long style
wxString name
CODE:
RETVAL = new wxSashWindow( parent, id, pos, size, style, name );
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
OUTPUT:
RETVAL
bool
wxSashWindow::Create( parent, id = wxID_ANY, pos = wxDefaultPosition, size = wxDefaultSize, style = wxCLIP_CHILDREN|wxSW_3D, name = wxT("sashWindow") )
wxWindow* parent
wxWindowID id
wxPoint pos
wxSize size
long style
wxString name
bool
wxSashWindow::GetSashVisible( edge )
wxSashEdgePosition edge
int
wxSashWindow::GetMaximumSizeX()
int
wxSashWindow::GetMaximumSizeY()
int
wxSashWindow::GetMinimumSizeX()
int
wxSashWindow::GetMinimumSizeY()
#if WXPERL_W_VERSION_LT( 2, 7, 0 )
bool
wxSashWindow::HasBorder( edge )
wxSashEdgePosition edge
#endif
void
wxSashWindow::SetMaximumSizeX( max )
int max
void
wxSashWindow::SetMaximumSizeY( max )
int max
void
wxSashWindow::SetMinimumSizeX( min )
int min
void
wxSashWindow::SetMinimumSizeY( min )
int min
void
wxSashWindow::SetSashVisible( edge, visible )
wxSashEdgePosition edge
bool visible
#if WXPERL_W_VERSION_LT( 2, 7, 0 )
void
wxSashWindow::SetSashBorder( edge, border )
wxSashEdgePosition edge
bool border
#endif
|