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
|
#############################################################################
## Name: ext/grid/XS/GridEvent.xs
## Purpose: XS for Wx::Grid*Event
## Author: Mattia Barbon
## Modified by:
## Created: 08/12/2001
## RCS-ID: $Id: GridEvent.xs 2503 2008-11-06 00:23:45Z mbarbon $
## Copyright: (c) 2001-2004, 2008 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::GridEvent
#if 0
wxGridEvent*
wxGridEvent::new( id, type, obj, row = -1, col = -1, x = -1, y = -1, sel = true, control = true, shift = true, alt = true, meta = true )
int id
wxEventType type
wxObject* obj
int row
int col
int x
int y
bool sel
bool control
bool shift
bool alt
bool meta
#endif
int
wxGridEvent::GetRow()
int
wxGridEvent::GetCol()
wxPoint*
wxGridEvent::GetPosition()
CODE:
RETVAL = new wxPoint( THIS->GetPosition() );
OUTPUT:
RETVAL
bool
wxGridEvent::Selecting()
bool
wxGridEvent::ControlDown()
bool
wxGridEvent::AltDown()
bool
wxGridEvent::MetaDown()
bool
wxGridEvent::ShiftDown()
MODULE=Wx PACKAGE=Wx::GridSizeEvent
#if 0
wxGridSizeEvent*
wxGridSizeEvent::new( id, type, obj, rowOrCol = -1, x = -1, y = -1, control = true, shift = true, alt = true, meta = true )
int id
wxEventType type
wxObject* obj
int rowOrCol
int x
int y
bool control
bool shift
bool alt
bool meta
#endif
int
wxGridSizeEvent::GetRowOrCol()
wxPoint*
wxGridSizeEvent::GetPosition()
CODE:
RETVAL = new wxPoint( THIS->GetPosition() );
OUTPUT:
RETVAL
bool
wxGridSizeEvent::ControlDown()
bool
wxGridSizeEvent::AltDown()
bool
wxGridSizeEvent::MetaDown()
bool
wxGridSizeEvent::ShiftDown()
MODULE=Wx PACKAGE=Wx::GridRangeSelectEvent
#if 0
wxGridRangeSelectEvent*
wxGridRangeSelectEvent::new( id, type, obj, topLeft, bottomRight, sel = true, control = false, shift = false, alt = false, meta = false )
int id
wxEventType type
wxObject* obj
wxGridCellCoords* topLeft
wxGridCellCoords* bottomRight
bool sel
bool control
bool shift
bool alt
bool meta
CODE:
RETVAL = new wxGridRangeSelectEvent( id, type, obj, *topLeft,
*bottomRight, sel, control, shift, alt, meta );
OUTPUT:
RETVAL
#endif
wxGridCellCoords*
wxGridRangeSelectEvent::GetTopLeftCoords()
CODE:
RETVAL = new wxGridCellCoords( THIS->GetTopLeftCoords() );
OUTPUT:
RETVAL
wxGridCellCoords*
wxGridRangeSelectEvent::GetBottomRightCoords()
CODE:
RETVAL = new wxGridCellCoords( THIS->GetBottomRightCoords() );
OUTPUT:
RETVAL
int
wxGridRangeSelectEvent::GetTopRow()
int
wxGridRangeSelectEvent::GetBottomRow()
int
wxGridRangeSelectEvent::GetLeftCol()
int
wxGridRangeSelectEvent::GetRightCol()
bool
wxGridRangeSelectEvent::Selecting()
bool
wxGridRangeSelectEvent::ControlDown()
bool
wxGridRangeSelectEvent::MetaDown()
bool
wxGridRangeSelectEvent::AltDown()
bool
wxGridRangeSelectEvent::ShiftDown()
MODULE=Wx PACKAGE=Wx::GridEditorCreatedEvent
wxGridEditorCreatedEvent*
wxGridEditorCreatedEvent::new( id, type, obj, row, col, ctrl )
int id
wxEventType type
wxObject* obj
int row
int col
wxControl* ctrl
int
wxGridEditorCreatedEvent::GetRow()
int
wxGridEditorCreatedEvent::GetCol()
wxControl*
wxGridEditorCreatedEvent::GetControl()
void
wxGridEditorCreatedEvent::SetRow( row )
int row
void
wxGridEditorCreatedEvent::SetCol( col )
int col
void
wxGridEditorCreatedEvent::SetControl( control )
wxControl* control
|