search for: evt_activ

Displaying 4 results from an estimated 4 matches for "evt_activ".

Did you mean: et_active
2007 Jun 26
0
[1076] trunk/wxruby2/samples/etc/activation.rb: Added sample of IconizeEvent to activation sample
...sp&nbsp2007-06-26 00:10:06 UTC (rev 1076) </span><span class="lines">@@ -40,8 +40,18 @@ </span><span class="cx"> evt_menu(Wx::ID_ABOUT) { on_about } </span><span class="cx"> </span><span class="cx"> evt_activate { | e | on_activate(e) } </span><ins>+ evt_iconize { | e | on_iconize(e) } </ins><span class="cx"> end </span><span class="cx"> </span><ins>+ + def on_iconize(event) + if event.iconized + puts "Frame '...
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
...argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_SCROLLWIN_THUMBTRACK); -} - -static VALUE evt_scrollwin_thumbrelease(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_SCROLLWIN_THUMBRELEASE); -} - -static VALUE evt_activate(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_ACTIVATE); -} - -static VALUE evt_activate_app(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_ACTIVATE_APP); -} - -static VALUE evt_create(...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...Wx::EVT_SCROLLWIN_LINEDOWN => Wx::ScrollWinEvent, - Wx::EVT_SCROLLWIN_PAGEUP => Wx::ScrollWinEvent, - Wx::EVT_SCROLLWIN_PAGEDOWN => Wx::ScrollWinEvent, - Wx::EVT_SCROLLWIN_THUMBTRACK => Wx::ScrollWinEvent, - Wx::EVT_SCROLLWIN_THUMBRELEASE => Wx::ScrollWinEvent, - Wx::EVT_ACTIVATE => Wx::ActivateEvent, - Wx::EVT_ACTIVATE_APP => Wx::ActivateEvent, - Wx::EVT_CREATE => Wx::WindowCreateEvent, - Wx::EVT_DESTROY => Wx::WindowDestroyEvent, - Wx::EVT_MENU_OPEN => Wx::MenuEvent, - Wx::EVT_MENU_CLOSE => Wx::MenuEvent, - Wx::EVT_MENU_HIGHLIGHT =&g...
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...Wx::EVT_SCROLLWIN_LINEDOWN => Wx::ScrollWinEvent, + Wx::EVT_SCROLLWIN_PAGEUP => Wx::ScrollWinEvent, + Wx::EVT_SCROLLWIN_PAGEDOWN => Wx::ScrollWinEvent, + Wx::EVT_SCROLLWIN_THUMBTRACK => Wx::ScrollWinEvent, + Wx::EVT_SCROLLWIN_THUMBRELEASE => Wx::ScrollWinEvent, + Wx::EVT_ACTIVATE => Wx::ActivateEvent, + Wx::EVT_ACTIVATE_APP => Wx::ActivateEvent, + Wx::EVT_CREATE => Wx::WindowCreateEvent, + Wx::EVT_DESTROY => Wx::WindowDestroyEvent, + Wx::EVT_MENU_OPEN => Wx::MenuEvent, + Wx::EVT_MENU_CLOSE => Wx::MenuEvent, + Wx::EVT_MENU_HIGHLIGHT =&g...