Displaying 6 results from an estimated 6 matches for "evt_".
Did you mean:
evt
2007 May 31
0
[1036] trunk/wxruby2: Merge RubyEventTypes into Events.i, add missing EVT_ constants for
...kground:#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>[1036] trunk/wxruby2: Merge RubyEventTypes into Events.i, add missing EVT_ constants for</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>1036</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2007-05-31 14:35:32 -0400 (Thu, 31 May 2007)</d...
2007 Jul 29
5
wxruby2 beta 1.9.0 released
Hi
I''m pleased to announce the release of wxruby2 version 1.9.0. This is a
significant milestone for wxruby as this is the first release that we
consider near to production quality. We hope that this 1.9.x series of
releases will soon lead to a stable wxruby 2.0.
= INSTALLATION
The easiest way to install is using a ready-to-use binary gem for your
platform:
gem install wxruby
Or
2007 May 31
0
[1040] trunk/wxruby2/swig/Events.i: Add List and Splitter constants, also EVT_SIZING and EVT_MOVING
...und:#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>[1040] trunk/wxruby2/swig/Events.i: Add List and Splitter constants, also EVT_SIZING and EVT_MOVING</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>1040</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2007-05-31 17:14:53 -0400 (Thu, 31 May 2007...
2006 Dec 18
13
unit testing wxruby GUIs
...ke any other, and they
can then be passed to the app objects for handling by using
EvtHandler#process_event or #add_pending_event.
A snippet that works for me (OS X, 0.0.38)
f = Wx::Frame.new(nil, -1, ''test_app'')
b = Wx::Button.new(f, -1, ''click'')
evt_button(b.get_id) { | e | Kernel.raise ''I was clicked'' }
# I got this 10003 id by calling get_event_type on a real button event
test_event = Wx::CommandEvent.new(10003, b.get_id)
# simulated event processsing - call the event handler above
process_event(test_event)...
2014 Dec 03
0
[PATCH] Update links.html
...ts(DjYRwAfz7V)5nOU}~T at UFu|B*8#hQ
zSyJCPaHbwJ{+oO7!uuJy<QfQ8B}6$*2z2z?@-Cc6WUZQDfP#R^Yh)@QCzK=qM$-Dt
z97(Z`!?)aG4rDGfAU+Hs5GEG+jI_{JVO>aSB;i173<Be<u5o-SKbr)nBC52x3YUxR
z``u*k*X`C7dFJ&a<BC-PqRKTn3|n5#3{-L=Kak3JAQ148d|ujXT*@Q9#0*-ZHf-HB
z_8p4v7a%tqND9JRKteLR=3$1+RoB!UVwwj6sRT^!=v`eVt_=6lQp-F+Suc06+0f2R
zYrZ<lH;*th2wn`-0*IFs6z0pYaP8Vwv`%VhatA<giH_H`rqGJB3na~M9wmVk>E!~g
zR>{?M<j|16O-$fg$dmz%Y63c)=oJ?RIIGM(lq>?_83>kxFc(~aVFhWcBSmUN!Xac~
z=@#a>5(`RIjVYD^8MwEP$KBc)n>b?k==ntmkS7_>jz=B8F*sH9iqrCF!(|FTp at q~Y
zgel-3oYs?rS_ChFhy{?c%-CM>CxD~|NQ##8Fom#FU0&...
2007 Jun 25
0
[1066] trunk/wxruby2/swig: Move EVT constants in swig/classes/Event.i; add a few missing ones
...07-06-25 17:42:15 UTC (rev 1066)
</span><span class="lines">@@ -1,361 +0,0 @@
</span><del>-
-// Copyright 2004-2007 by Kevin Smith
-// released under the MIT-style wxruby2 license
-%include "common.i"
-
-%module wxEvents;
-
-// This module defines all the EVT_ constants that uniquely identify
-// each type of GUI event that WxWidgets can generate.
-//
-// SWIG''s output of this file is post-processed by swig/fixevents.rb in
-// order to define a set of evt_xxx methods that all classes inheriting
-// from EvtHandler should hae, in order to define...