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
|
#############################################################################
## Name: XS/ComboBox.xs
## Purpose: XS for Wx::ComboBox
## Author: Mattia Barbon
## Modified by:
## Created: 31/10/2000
## RCS-ID: $Id: ComboBox.xs 2757 2010-01-17 10:26:27Z mbarbon $
## Copyright: (c) 2000-2004, 2006-2008, 2010 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/combobox.h>
#include <wx/textctrl.h>
#include "cpp/overload.h"
MODULE=Wx PACKAGE=Wx::ComboBox
void
new( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_VOIDM_REDISP( newDefault )
MATCH_ANY_REDISP( newFull )
END_OVERLOAD( "Wx::ComboBox::new" )
wxComboBox*
newDefault( CLASS )
PlClassName CLASS
CODE:
RETVAL = new wxComboBox();
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
OUTPUT: RETVAL
wxComboBox*
newFull( CLASS, parent, id = wxID_ANY, value = wxEmptyString, pos = wxDefaultPosition, size = wxDefaultSize, choices = 0, style = 0, validator = (wxValidator*)&wxDefaultValidator, name = wxComboBoxNameStr )
PlClassName CLASS
wxWindow* parent
wxWindowID id
wxString value
wxPoint pos
wxSize size
SV* choices
long style
wxValidator* validator
wxString name
PREINIT:
wxString* chs = 0;
int n = 0;
CODE:
if( choices != 0 )
n = wxPli_av_2_stringarray( aTHX_ choices, &chs );
RETVAL = new wxComboBox( parent, id, value, pos, size, n, chs,
style, *validator, name );
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
delete[] chs;
OUTPUT:
RETVAL
bool
wxComboBox::Create( parent, id = wxID_ANY, value = wxEmptyString, pos = wxDefaultPosition, size = wxDefaultSize, choices = 0, style = 0, validator = (wxValidator*)&wxDefaultValidator, name = wxComboBoxNameStr )
wxWindow* parent
wxWindowID id
wxString value
wxPoint pos
wxSize size
SV* choices
long style
wxValidator* validator
wxString name
PREINIT:
wxString* chs = 0;
int n = 0;
CODE:
if( choices != 0 )
n = wxPli_av_2_stringarray( aTHX_ choices, &chs );
RETVAL = THIS->Create( parent, id, value, pos, size, n, chs,
style, *validator, name );
delete[] chs;
OUTPUT: RETVAL
#if defined( __WXGTK__ ) || \
( defined( __WXMAC__ ) && WXPERL_W_VERSION_GE( 2, 5, 1 ) )
#define WXPERL_IN_COMBOBOX
INCLUDE_COMMAND: $^X -pe "s/ItemContainerImmutable/ComboBox/g" XS/ItemContainerImmutable.xs
INCLUDE_COMMAND: $^X -pe "s/ItemContainer/ComboBox/g" XS/ItemContainer.xs
#undef WXPERL_IN_COMBOBOX
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
int
wxChoice::GetCurrentSelection()
#endif
#if WXPERL_W_VERSION_GE( 2, 7, 0 )
void
wxComboBox::SetEditable( bool editable );
#endif
#endif
void
wxComboBox::Copy()
void
wxComboBox::Cut()
#if WXPERL_W_VERSION_GE( 2, 6, 0 ) && !defined(__WXMOTIF__)
bool
wxComboBox::CanCopy()
bool
wxComboBox::CanCut()
bool
wxComboBox::CanPaste()
void
wxComboBox::Undo()
void
wxComboBox::Redo()
bool
wxComboBox::CanUndo()
bool
wxComboBox::CanRedo()
#endif
long
wxComboBox::GetInsertionPoint()
wxTextPos
wxComboBox::GetLastPosition()
wxString
wxComboBox::GetValue()
void
wxComboBox::Paste()
void
wxComboBox::Replace( from, to, text )
long from
long to
wxString text
void
wxComboBox::Remove( from ,to )
long from
long to
void
wxComboBox::SetInsertionPoint( pos )
long pos
void
wxComboBox::SetInsertionPointEnd()
void
wxComboBox::SetSelection( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_REDISP( wxPliOvl_n_n, SetMark )
MATCH_REDISP( wxPliOvl_n, SetSelectionN )
END_OVERLOAD( Wx::ComboBox::SetSelection )
void
wxComboBox::SetSelectionN( n )
int n
CODE:
THIS->SetSelection( n );
void
wxComboBox::SetMark( from, to )
long from
long to
CODE:
THIS->SetSelection( from, to );
void
wxComboBox::SetValue( string )
wxString string
|