Displaying 4 results from an estimated 4 matches for "evt_wizard_page_chang".
Did you mean:
evt_wizard_page_changed
2006 Jul 25
6
Wizards
Hi
Please find attached a set of patches and swig files to implement
Wizards for wxruby. Also a brief sample.
Quick q - the C declarations of evt_xxx_xxx methods and their attaching
to Ruby classes seems to be duplicated across Events.i and EvtHandler.i
- is one of these the right place to be adding them? or both?
Thanks
alex
_______________________________________________
2007 May 29
0
[1035] trunk/wxruby2/swig/classes/EvtHandler.i: Removed a heap of redundant stuff that''s been #if 0''d for a while
..., VALUE *argv, VALUE self)
-{
- return internal_evt_no_parameters(argc, argv, self, wxEVT_GRID_EDITOR_CREATED);
-}
-
-static VALUE evt_grid_cmd_editor_created(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_GRID_EDITOR_CREATED);
-}
-
-static VALUE evt_wizard_page_changed(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_WIZARD_PAGE_CHANGED);
-}
-
-static VALUE evt_wizard_page_changing(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_WIZARD_PAGE_CHANGING);
-}
-
-static VAL...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...ent,
- Wx::EVT_GRID_EDITOR_SHOWN => Wx::GridEvent,
- Wx::EVT_GRID_RANGE_SELECT => Wx::GridRangeSelectEvent,
- Wx::EVT_GRID_COL_SIZE => Wx::GridSizeEvent,
- Wx::EVT_GRID_ROW_SIZE => Wx::GridSizeEvent,
- Wx::EVT_GRID_EDITOR_CREATED => Wx::GridEditorCreatedEvent,
- Wx::EVT_WIZARD_PAGE_CHANGED => Wx::WizardEvent,
- Wx::EVT_WIZARD_PAGE_CHANGING => Wx::WizardEvent,
- Wx::EVT_WIZARD_CANCEL => Wx::WizardEvent,
- Wx::EVT_WIZARD_HELP => Wx::WizardEvent,
- Wx::EVT_WIZARD_FINISHED => Wx::WizardEvent,
- Wx::EVT_COMMAND_LIST_BEGIN_DRAG => Wx::ListEvent,
- Wx::...
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...ent,
+ Wx::EVT_GRID_EDITOR_SHOWN => Wx::GridEvent,
+ Wx::EVT_GRID_RANGE_SELECT => Wx::GridRangeSelectEvent,
+ Wx::EVT_GRID_COL_SIZE => Wx::GridSizeEvent,
+ Wx::EVT_GRID_ROW_SIZE => Wx::GridSizeEvent,
+ Wx::EVT_GRID_EDITOR_CREATED => Wx::GridEditorCreatedEvent,
+ Wx::EVT_WIZARD_PAGE_CHANGED => Wx::WizardEvent,
+ Wx::EVT_WIZARD_PAGE_CHANGING => Wx::WizardEvent,
+ Wx::EVT_WIZARD_CANCEL => Wx::WizardEvent,
+ Wx::EVT_WIZARD_HELP => Wx::WizardEvent,
+ Wx::EVT_WIZARD_FINISHED => Wx::WizardEvent,
+ Wx::EVT_COMMAND_LIST_BEGIN_DRAG => Wx::ListEvent,
+ Wx::...