search for: evt_middle_down

Displaying 5 results from an estimated 5 matches for "evt_middle_down".

2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...vent, - Wx::EVT_COMMAND_FIND_CLOSE => Wx::FindDialogEvent, - Wx::EVT_SET_FOCUS => Wx::FocusEvent, - Wx::EVT_KILL_FOCUS => Wx::FocusEvent, - Wx::EVT_LEFT_DOWN => Wx::MouseEvent, - Wx::EVT_LEFT_UP => Wx::MouseEvent, - Wx::EVT_LEFT_DCLICK => Wx::MouseEvent, - Wx::EVT_MIDDLE_DOWN => Wx::MouseEvent, - Wx::EVT_MIDDLE_UP => Wx::MouseEvent, - Wx::EVT_MIDDLE_DCLICK => Wx::MouseEvent, - Wx::EVT_RIGHT_DOWN => Wx::MouseEvent, - Wx::EVT_RIGHT_UP => Wx::MouseEvent, - Wx::EVT_RIGHT_DCLICK => Wx::MouseEvent, - Wx::EVT_MOTION => Wx::MouseEvent, -...
2007 Jun 26
0
[1086] trunk/wxruby2/lib/wx/classes/evthandler.rb: Restore evt_mouse_events convenience handler, fixing bug in printing sample
...t;> end </span><span class="cx"> end </span><span class="cx"> </span><ins>+ # convenience evt_handler to listen to all mouse events + def evt_mouse_events(&block) + evt_left_down(&block) + evt_left_up(&block) + evt_middle_down(&block) + evt_middle_up(&block) + evt_right_down(&block) + evt_right_up(&block) + evt_motion(&block) + evt_left_dclick(&block) + evt_middle_dclick(&block) + evt_right_dclick(&block) + evt_leave_window(&block) + evt_enter_window(&blo...
2007 Mar 17
0
[886] branches/wxruby2/wxwidgets_282/swig/fixevents.rb: Mouse events fix for Win32 (Artur Kuptel)
...nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspout.puts <<FUNC_DEF +static VALUE evt_mouse_events(int argc, VALUE *argv, VALUE self) +{ + evt_left_down(argc,argv,self); + evt_left_up(argc,argv,self); + evt_middle_down(argc,argv,self); + evt_middle_up(argc,argv,self); + evt_right_down(argc,argv,self); + evt_right_up(argc,argv,self); + evt_motion(argc,argv,self); + evt_left_dclick(argc,argv,self); + evt_middle_dclick(argc,argv,self); + evt_right_dclick(argc,argv,self); + evt_leave_window(ar...
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
...E evt_right_up(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_RIGHT_UP); -} - -static VALUE evt_right_dclick(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_RIGHT_DCLICK); -} - -static VALUE evt_middle_down(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_MIDDLE_DOWN); -} - -static VALUE evt_middle_up(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_MIDDLE_UP); -} - -static VALUE evt_middle_dclick...
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...vent, + Wx::EVT_COMMAND_FIND_CLOSE => Wx::FindDialogEvent, + Wx::EVT_SET_FOCUS => Wx::FocusEvent, + Wx::EVT_KILL_FOCUS => Wx::FocusEvent, + Wx::EVT_LEFT_DOWN => Wx::MouseEvent, + Wx::EVT_LEFT_UP => Wx::MouseEvent, + Wx::EVT_LEFT_DCLICK => Wx::MouseEvent, + Wx::EVT_MIDDLE_DOWN => Wx::MouseEvent, + Wx::EVT_MIDDLE_UP => Wx::MouseEvent, + Wx::EVT_MIDDLE_DCLICK => Wx::MouseEvent, + Wx::EVT_RIGHT_DOWN => Wx::MouseEvent, + Wx::EVT_RIGHT_UP => Wx::MouseEvent, + Wx::EVT_RIGHT_DCLICK => Wx::MouseEvent, + Wx::EVT_MOTION => Wx::MouseEvent, +...