Displaying 4 results from an estimated 4 matches for "evt_choicebook_page_changed".
2006 Sep 14
1
wxChoicebook
wxChoicebook.rbw + patch file to bigdemo.rb
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
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
...);
- rb_define_method(cWxEvtHandler.klass, "evt_spin_down", VALUEFUNC(evt_spin_down), -1);
- rb_define_method(cWxEvtHandler.klass, "evt_choicebook_page_changing", VALUEFUNC(evt_choicebook_page_changing), -1);
- rb_define_method(cWxEvtHandler.klass, "evt_choicebook_page_changed", VALUEFUNC(evt_choicebook_page_changed), -1);
- rb_define_method(cWxEvtHandler.klass, "evt_notebook_page_changing", VALUEFUNC(evt_notebook_page_changing), -1);
- rb_define_method(cWxEvtHandler.klass, "evt_notebook_page_changed", VALUEFUNC(evt_notebook_page_c...
2005 Aug 29
3
added Choicebook
Here are the new files in a zip and the patches to existing.
Also added Listbook values to parents.rb that I forgot when adding that.
Sean
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...EventType[''evt_checklistbox'', 1,
+ Wx::EVT_COMMAND_CHECKLISTBOX_TOGGLED,
+ Wx::CommandEvent],
+ EventType[''evt_choice'', 1,
+ Wx::EVT_COMMAND_CHOICE_SELECTED,
+ Wx::CommandEvent],
+ EventType[''evt_choicebook_page_changed'', 1,
+ Wx::EVT_COMMAND_CHOICEBOOK_PAGE_CHANGED,
+ Wx::ChoicebookEvent],
+ EventType[''evt_choicebook_page_changing'', 1,
+ Wx::EVT_COMMAND_CHOICEBOOK_PAGE_CHANGING,
+ Wx::ChoicebookEvent],
+ EventType[''evt...