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
|
#############################################################################
## Name: XS/Button.xs
## Purpose: XS for Wx::Button
## Author: Mattia Barbon
## Modified by:
## Created: 08/11/2000
## RCS-ID: $Id: Button.xs 2057 2007-06-18 23:03:00Z mbarbon $
## Copyright: (c) 2000-2001, 2003 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
MODULE=Wx PACKAGE=Wx::Button
#include <wx/button.h>
void
new( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_VOIDM_REDISP( newDefault )
MATCH_ANY_REDISP( newFull )
END_OVERLOAD( "Wx::Button::new" )
wxButton*
newDefault( CLASS )
PlClassName CLASS
CODE:
RETVAL = new wxButton();
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
OUTPUT: RETVAL
wxButton*
newFull( CLASS, parent, id, label, pos = wxDefaultPosition, size = wxDefaultSize, style = 0, validator = (wxValidator*)&wxDefaultValidator, name = wxButtonNameStr )
PlClassName CLASS
wxWindow* parent
wxWindowID id
wxString label
wxPoint pos
wxSize size
long style
wxValidator* validator
wxString name
CODE:
RETVAL = new wxButton( parent, id, label, pos, size,
style, *validator, name );
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
OUTPUT:
RETVAL
bool
wxButton::Create( parent, id, label, pos = wxDefaultPosition, size = wxDefaultSize, style = 0, validator = (wxValidator*)&wxDefaultValidator, name = wxButtonNameStr )
wxWindow* parent
wxWindowID id
wxString label
wxPoint pos
wxSize size
long style
wxValidator* validator
wxString name
C_ARGS: parent, id, label, pos, size, style, *validator, name
wxSize*
GetDefaultSize()
CODE:
RETVAL = new wxSize( wxButton::GetDefaultSize() );
OUTPUT:
RETVAL
void
wxButton::SetDefault()
|