Displaying 2 results from an estimated 2 matches for "evt_tab".
Did you mean:
erst_tab
2007 Jun 23
0
[1060] trunk/wxruby2/swig/fixevents.rb: Include some previously missing events, rehash and simplify
...include/events''
</span><span class="cx">
</span><del>-$exclude = [
-        ''EVT_COMMAND'',
-        ''EVT_TAB'',
-]
</del><ins>+# Little class to make accessing Event Type info a bit easier below
+class WxEventType < Struct.new(:name, :type, :wx_const)
+ # Events in Wx but not exposed in WxRuby (b/c they cause problems)
+ EXCLUDED = [ /^EVT_TAB/, ''EVT_COMMAND'' ]
+...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...ID_CELL_RIGHT_CLICK"],
-["EVT_GRID_LABEL_LEFT_CLICK", 1, "wxEVT_GRID_LABEL_LEFT_CLICK"],
-["EVT_GRID_CMD_LABEL_LEFT_CLICK", 2, "wxEVT_GRID_LABEL_LEFT_CLICK"],
-["EVT_TREE_ITEM_EXPANDED", 2, "wxEVT_COMMAND_TREE_ITEM_EXPANDED"],
-["EVT_TAB_SEL_CHANGING", 2, "wxEVT_TAB_SEL_CHANGING"],
-["EVT_TEXT", 2, "wxEVT_COMMAND_TEXT_UPDATED"],
-["EVT_MOTION", 1, "wxEVT_MOTION"],
-["EVT_TEXT_ENTER", 2, "wxEVT_COMMAND_TEXT_ENTER"],
-["EVT_WIZARD_PAGE_CHANGED", 2, &...