Displaying 3 results from an estimated 3 matches for "evt_scrol".
Did you mean:
evt_scroll
2007 Apr 29
0
[995] branches/wxruby2/wxwidgets_282/swig/classes/include/events.rb: Fix argument signature for window_create/destroy events; use wxWidgets
...", 2, "wxEVT_CREATE"],
-["EVT_DESTROY", 2, "wxEVT_DESTROY"],
</del><ins>+["EVT_WINDOW_CREATE", 1, "wxEVT_CREATE"],
+["EVT_WINDOW_DESTROY", 1, "wxEVT_DESTROY"],
</ins><span class="cx"> ["EVT_SCROLL", 1, "0"],
</span><span class="cx"> ["EVT_SCROLL_TOP", 1, "wxEVT_SCROLL_TOP"],
</span><span class="cx"> ["EVT_SCROLL_BOTTOM", 1, "wxEVT_SCROLL_BOTTOM"],
</span></span></pre>
</di...
2006 Dec 31
0
[814] trunk/wxruby2/swig/classes: Added ScrollEvent class plus event processing and handler methods
...lass="lines">@@ -266,6 +267,21 @@
</span><span class="cx"> (const wxEventType *)0
</span><span class="cx"> };
</span><span class="cx">
</span><ins>+static const wxEventType *scrollEvents[] =
+{
+ &wxEVT_SCROLL_TOP,
+ &wxEVT_SCROLL_BOTTOM,
+ &wxEVT_SCROLL_LINEUP,
+ &wxEVT_SCROLL_LINEDOWN,
+ &wxEVT_SCROLL_PAGEUP,
+ &wxEVT_SCROLL_PAGEDOWN,
+ &wxEVT_SCROLL_THUMBTRACK,
+ &wxEVT_SCROLL_THUMBRELEASE,
+ &wxEVT_SCROLL_CHANGED,
+ (const wxEventType *)0
+};
+
+
</ins>...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...x::MouseEvent,
- Wx::EVT_RIGHT_UP => Wx::MouseEvent,
- Wx::EVT_RIGHT_DCLICK => Wx::MouseEvent,
- Wx::EVT_MOTION => Wx::MouseEvent,
- Wx::EVT_ENTER_WINDOW => Wx::MouseEvent,
- Wx::EVT_LEAVE_WINDOW => Wx::MouseEvent,
- Wx::EVT_MOUSEWHEEL => Wx::MouseEvent,
- Wx::EVT_SCROLL_THUMBTRACK => Wx::ScrollEvent,
- Wx::EVT_SCROLL_LINEUP => Wx::ScrollEvent,
- Wx::EVT_SCROLL_LINEDOWN => Wx::ScrollEvent,
- Wx::EVT_COMMAND_CHOICEBOOK_PAGE_CHANGED => Wx::ChoicebookEvent,
- Wx::EVT_COMMAND_CHOICEBOOK_PAGE_CHANGING => Wx::ChoicebookEvent,
- Wx::EVT_COMM...