Displaying 2 results from an estimated 2 matches for "evt_command_tool_clicked".
Did you mean:
evt_command_tool_rclicked
2006 Oct 17
0
[678] trunk/wxruby2/doc/textile/commandevent.txtl: Fixed a few event macros that did not get fixed by the parser.
...bsp;{ | event | ... }*|Process a EVT_COMMAND_TOGGLEBUTTON_CLICKED event.|
</span><span class="cx"> |*evt_tool(id) { | event | ... }*|Process a EVT_COMMAND_TOOL_CLICKED event(a synonym for EVT_COMMAND_MENU_SELECTED). Pass the id of the tool.|
</span><del>-|*EVT_TOOL_RANGE(id1, id2, func)*|Process a EVT_COMMAND_TOOL_CLICKED eventfor a range of identifiers. Pass the ids of the tools.|
</del><ins>+|*evt_tool_range(id1, id2) { ...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...#39;'evt_timer'', 1,
+ Wx::EVT_TIMER,
+ Wx::TimerEvent],
+ EventType[''evt_togglebutton'', 1,
+ Wx::EVT_COMMAND_TOGGLEBUTTON_CLICKED,
+ Wx::Event],
+ EventType[''evt_tool'', 1,
+ Wx::EVT_COMMAND_TOOL_CLICKED,
+ Wx::CommandEvent],
+ EventType[''evt_tool_enter'', 1,
+ Wx::EVT_COMMAND_TOOL_ENTER,
+ Wx::CommandEvent],
+ EventType[''evt_tool_range'', 2,
+ Wx::EVT_COMMAND_TOOL_CLICKED,
+ Wx::CommandEvent...