Displaying 2 results from an estimated 2 matches for "evt_calendar".
Did you mean:
event_calendar
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
...ox(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_COMBOBOX_SELECTED);
-}
-
-
-static VALUE evt_choice(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_CHOICE_SELECTED);
-}
-
-static VALUE evt_calendar(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_CALENDAR_DOUBLECLICKED);
-}
-
-static VALUE evt_calendar_sel_changed(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_CALENDAR_SEL_CHANGED);
-}
-
-static VA...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...><span class="cx">
</span><del>- # This has maps integer EventType ids from the Wx API to Ruby
- # classes. It''s called internally by the C++ code to wrap events in
- # the correct Ruby class - see EvtHandler.i and App.i
- EVENT_TYPE_MAPPING = {
- Wx::EVT_CALENDAR_SEL_CHANGED => Wx::CalendarEvent,
- Wx::EVT_CALENDAR_DAY_CHANGED => Wx::CalendarEvent,
- Wx::EVT_CALENDAR_MONTH_CHANGED => Wx::CalendarEvent,
- Wx::EVT_CALENDAR_YEAR_CHANGED => Wx::CalendarEvent,
- Wx::EVT_CALENDAR_DOUBLECLICKED => Wx::CalendarEvent,
- Wx::EVT_CALENDAR...