nobody at rubyforge.org
2006-Oct-17 17:00 UTC
[Wxruby-development] [678] trunk/wxruby2/doc/textile/commandevent.txtl: Fixed a few event macros that did not get fixed by the parser.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type"
content="text/html; charset=utf-8" /><style
type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:'':'';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family:
verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;
font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding:
6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid;
padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family:
verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch
.binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[678] trunk/wxruby2/doc/textile/commandevent.txtl: Fixed a few
event macros that did not get fixed by the parser.</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>678</dd>
<dt>Author</dt> <dd>seanlong</dd>
<dt>Date</dt> <dd>2006-10-17 12:59:59 -0400 (Tue, 17 Oct
2006)</dd>
</dl>
<h3>Log Message</h3>
<pre>Fixed a few event macros that did not get fixed by the
parser.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a
href="#trunkwxruby2doctextilecommandeventtxtl">trunk/wxruby2/doc/textile/commandevent.txtl</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwxruby2doctextilecommandeventtxtl"></a>
<div class="modfile"><h4>Modified:
trunk/wxruby2/doc/textile/commandevent.txtl (677 => 678)</h4>
<pre class="diff"><span>
<span class="info">---
trunk/wxruby2/doc/textile/commandevent.txtl        2006-10-17
16:49:32 UTC (rev 677)
+++
trunk/wxruby2/doc/textile/commandevent.txtl        2006-10-17
16:59:59 UTC (rev 678)
</span><span class="lines">@@ -14,8 +14,8 @@
</span><span class="cx">
</span><span class="cx">
</span><span class="cx">
</span><del>-|*EVT_COMMAND(id, event, func)*|Process a command,
supplying the window identifier,command event identifier, and member function.|
-|*EVT_COMMAND_RANGE(id1, id2, event, func)*|Process a command for a rangeof
window identifiers, supplying the minimum and maximum window identifiers,command
event identifier, and member function.|
</del><ins>+|*evt_command(id) { | event | ... }*|Process
a command, supplying the window identifier,command event identifier, and member
function.|
+|*evt_command_range(id1,
id2) { | event | ... }*|Process
a command for a rangeof window identifiers, supplying the minimum and maximum
window identifiers,command event identifier, and member function.|
</ins><span class="cx">
|*evt_button(id) { | event | ... }*|Process
a EVT_COMMAND_BUTTON_CLICKED command,which is generated by a Button control.|
</span><span class="cx">
|*evt_checkbox(id) { | event | ... }*|Process
a EVT_COMMAND_CHECKBOX_CLICKED command,which is generated by a CheckBox
control.|
</span><span class="cx">
|*evt_choice(id) { | event | ... }*|Process
a EVT_COMMAND_CHOICE_SELECTED command,which is generated by a Choice control.|
</span><span class="lines">@@ -23,7 +23,7 @@
</span><span class="cx">
|*evt_listbox(id) { | event | ... }*|Process
a EVT_COMMAND_LISTBOX_SELECTED command,which is generated by a ListBox control.|
</span><span class="cx">
|*evt_listbox_dclick(id) { | event | ... }*|Process
a EVT_COMMAND_LISTBOX_DOUBLECLICKED command,which is generated by a ListBox
control.|
</span><span class="cx">
|*evt_menu(id) { | event | ... }*|Process
a EVT_COMMAND_MENU_SELECTED command,which is generated by a menu item.|
</span><del>-|*EVT_MENU_RANGE(id1, id2, func)*|Process a
EVT_COMMAND_MENU_RANGE command,which is generated by a range of menu items.|
</del><ins>+|*evt_menu_range(id1,
id2) { | event | ... }*|Process
a EVT_COMMAND_MENU_RANGE command,which is generated by a range of menu items.|
</ins><span class="cx">
|*evt_context_menu() { | event | ... }*|Process
the event generatedwhen the user has requested a popup menu to appear by
pressing a specialkeyboard key (under Windows) or by right clicking the mouse.|
</span><span class="cx">
|*evt_radiobox(id) { | event | ... }*|Process
a EVT_COMMAND_RADIOBOX_SELECTED command,which is generated by a RadioBox
control.|
</span><span class="cx">
|*evt_radiobutton(id) { | event | ... }*|Process
a EVT_COMMAND_RADIOBUTTON_SELECTED command,which is generated by a RadioButton
control.|
</span><span class="lines">@@ -34,9 +34,9 @@
</span><span class="cx">
|*evt_text_maxlen(id) { | event | ... }*|Process
a EVT_COMMAND_TEXT_MAXLEN command,which is generated by a TextCtrl control when
the user tries to enter morecharacters into it than the limit previously set
with "set_max_length":#CommandEvent_setmaxlength.|
</span><span class="cx">
|*evt_togglebutton(id) { | 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) { | event | ... }*|Process
a EVT_COMMAND_TOOL_CLICKED eventfor a range of identifiers. Pass the ids of the
tools.|
</ins><span class="cx">
|*evt_tool_rclicked(id) { | event | ... }*|Process
a EVT_COMMAND_TOOL_RCLICKED event.Pass the id of the tool.|
</span><del>-|*EVT_TOOL_RCLICKED_RANGE(id1, id2, func)*|Process a
EVT_COMMAND_TOOL_RCLICKED eventfor a range of ids. Pass the ids of the tools.|
</del><ins>+|*evt_tool_rclicked_range(id1,
id2) { | event | ... }*|Process
a EVT_COMMAND_TOOL_RCLICKED eventfor a range of ids. Pass the ids of the tools.|
</ins><span class="cx">
|*evt_tool_enter(id) { | event | ... }*|Process
a EVT_COMMAND_TOOL_ENTER event.Pass the id of the toolbar itself. The value of
CommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved
off a tool.|
</span><span class="cx">
|*evt_command_left_click(id) { | event | ... }*|Process
a EVT_COMMAND_LEFT_CLICK command,which is generated by a control (Windows 95 and
NT only).|
</span><span class="cx">
|*evt_command_left_dclick(id) { | event | ... }*|Process
a EVT_COMMAND_LEFT_DCLICK command,which is generated by a control (Windows 95
and NT only).|
</span></span></pre>
</div>
</div>
</body>
</html>
Apparently Analagous Threads
- [1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
- [822] trunk/wxruby2/doc/textile: Links to the documentation on TextUrlEvent
- [821] trunk/wxruby2/doc/textile/texturlevent.txtl: Added info on undocumented TextUrlEVent class
- [1083] trunk/wxruby2/doc/textile/hyperlinkevent.txtl: Added HyperlinkCtrl and HyperlinkEvent documentation
- [723] trunk/wxruby2: Added WindowCreateEvent and WindowDestroyEvent + event handlers (AF)
