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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
#############################################################################
## Name: XS/RadioBox.xs
## Purpose: XS for Wx::RadioBox
## Author: Mattia Barbon
## Modified by:
## Created: 31/10/2000
## RCS-ID: $Id: RadioBox.xs 2285 2007-11-11 21:31:54Z mbarbon $
## Copyright: (c) 2000-2003, 2006-2007 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/radiobox.h>
#include <wx/tooltip.h>
MODULE=Wx PACKAGE=Wx::RadioBox
void
new( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_VOIDM_REDISP( newDefault )
MATCH_ANY_REDISP( newFull )
END_OVERLOAD( "Wx::RadioBox::new" )
wxRadioBox*
newDefault( CLASS )
PlClassName CLASS
CODE:
RETVAL = new wxRadioBox();
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
OUTPUT: RETVAL
wxRadioBox*
newFull( CLASS, parent, id, label, point = wxDefaultPosition, size = wxDefaultSize, choices = 0, majorDimension = 0, style = wxRA_SPECIFY_COLS, validator = (wxValidator*)&wxDefaultValidator, name = wxRadioBoxNameStr )
PlClassName CLASS
wxWindow* parent
wxWindowID id
wxString label
wxPoint point
wxSize size
SV* choices
int majorDimension
long style
wxValidator* validator
wxString name
PREINIT:
int n;
wxString* chs;
CODE:
if( choices )
n = wxPli_av_2_stringarray( aTHX_ choices, &chs );
else {
n = 0;
chs = 0;
}
RETVAL = new wxRadioBox( parent, id, label, point, size,
n, chs, majorDimension, style, *validator, name );
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
delete[] chs;
OUTPUT:
RETVAL
bool
wxRadioBox::Create( parent, id, label, point = wxDefaultPosition, size = wxDefaultSize, choices = 0, majorDimension = 0, style = wxRA_SPECIFY_COLS, validator = (wxValidator*)&wxDefaultValidator, name = wxRadioBoxNameStr )
wxWindow* parent
wxWindowID id
wxString label
wxPoint point
wxSize size
SV* choices
int majorDimension
long style
wxValidator* validator
wxString name
PREINIT:
int n;
wxString* chs;
CODE:
if( choices )
n = wxPli_av_2_stringarray( aTHX_ choices, &chs );
else {
n = 0;
chs = 0;
}
RETVAL = THIS->Create( parent, id, label, point, size,
n, chs, majorDimension, style, *validator, name );
delete[] chs;
OUTPUT:
RETVAL
void
wxRadioBox::EnableItem( n, enable )
int n
bool enable
CODE:
THIS->Enable( n, enable );
int
wxRadioBox::FindString( string )
wxString string
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
unsigned int
wxRadioBox::GetColumnCount()
unsigned int
wxRadioBox::GetRowCount()
int
wxRadioBox::GetItemFromPoint( pt )
wxPoint pt
#endif
wxString
wxRadioBox::GetString( n )
int n
wxString
wxRadioBox::GetItemLabel( n )
int n
CODE:
RETVAL = THIS->GetString( n );
OUTPUT:
RETVAL
int
wxRadioBox::GetSelection()
wxString
wxRadioBox::GetStringSelection()
#if WXPERL_W_VERSION_GE( 2, 7, 0 )
bool
wxRadioBox::IsItemEnabled( unsigned int item )
bool
wxRadioBox::IsItemShown( unsigned int item )
#endif
void
wxRadioBox::SetString( n, label )
int n
wxString label
void
wxRadioBox::SetItemLabel( n, label )
int n
wxString label
CODE:
THIS->SetString( n, label );
#if wxPERL_USE_TOOLTIPS && WXPERL_W_VERSION_GE( 2, 7, 0 )
void
wxRadioBox::SetItemToolTip( item, text )
unsigned int item
wxString text
wxToolTip*
wxRadioBox::GetItemToolTip( item )
unsigned int item
#endif
#if wxPERL_USE_HELP && WXPERL_W_VERSION_GE( 2, 7, 0 )
void
wxRadioBox::SetItemHelpText( item, text )
unsigned int item
wxString text
wxString
wxRadioBox::GetItemHelpText( item )
unsigned int item
#endif
void
wxRadioBox::SetSelection( n )
int n
void
wxRadioBox::SetStringSelection( string )
wxString string
void
wxRadioBox::ShowItem( n, show )
int n
bool show
CODE:
THIS->Show( n, show );
|