search for: evt_destroy

Displaying 8 results from an estimated 8 matches for "evt_destroy".

Did you mean: ast_destroy
2007 Jul 21
0
[1132] trunk/wxruby2/doc/textile/windowdestroyevent.txtl: Updated and corrected doc on WindowDestroyEvent, noting that e.skip must
...t;<ins>+To process a window destruction event, use the @evt_window_destroy@ event hook +to handle the event using a block. The block receives a +WindowDestroyEvent argument. </ins><span class="cx"> </span><del>-To process a window destruction event, use the @evt_destroy@ event hook -to handle the event using a block. The block can optionally receive a -WindowDestroyEvent argument. @id@ should be the id of the window whose -destruction should be handled. It is possible to observe the destruction -of any window using the special identifier @Wx::ID_ANY@. Note that a...
2006 Nov 07
0
[723] trunk/wxruby2: Added WindowCreateEvent and WindowDestroyEvent + event handlers (AF)
...lt;/del><ins>+h2. Event hooks </ins><span class="cx"> </span><span class="cx"> </span><del>-It is not possible to receive this event using an event table macro. </del><ins>+To process a window destruction event, use the @evt_destroy@ event hook +to handle the event using a block. The block can optionally receive a +WindowDestroyEvent argument. @id@ should be the id of the window whose +destruction should be handled. It is possible to observe the destruction +of any window using the special identifier @Wx::ID_ANY@. Note that a...
2007 May 10
0
wxRuby2 preview 0.0.40 released
...rovide a solid platform for ongoing development. API CHANGES There are a small number of incompatible API changes. - ClientDC.new and PaintDC.new cannot now be called directly - always use the paint() method to get a DC for drawing on a window - A number of deprecated methods have been removed - evt_destroy and evt_create are now evt_window_destroy and evt_window_create, and accept zero arguments - ComboBox#get_selection_range is now ComboBox#get_text_selection_range CREDITS Many thanks to Sean Long for providing binary builds for OS X/i686 and Windows, as well as many code patches, and improvements...
2007 Apr 29
0
[995] branches/wxruby2/wxwidgets_282/swig/classes/include/events.rb: Fix argument signature for window_create/destroy events; use wxWidgets
..., </span><span class="cx"> ["EVT_KILL_FOCUS", 1, "wxEVT_KILL_FOCUS"], </span><span class="cx"> ["EVT_TIMER", 2, "wxEVT_TIMER"], </span><del>-["EVT_CREATE", 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><spa...
2006 Dec 31
0
[814] trunk/wxruby2/swig/classes: Added ScrollEvent class plus event processing and handler methods
...s="lines">@@ -209,6 +219,15 @@ </span><span class="cx"> ["EVT_TIMER", 2, "wxEVT_TIMER"], </span><span class="cx"> ["EVT_CREATE", 2, "wxEVT_CREATE"], </span><span class="cx"> ["EVT_DESTROY", 2, "wxEVT_DESTROY"], </span><ins>+["EVT_SCROLL", 1, "0"], +["EVT_SCROLL_TOP", 1, "wxEVT_SCROLL_TOP"], +["EVT_SCROLL_BOTTOM", 1, "wxEVT_SCROLL_BOTTOM"], +["EVT_SCROLL_LINEUP", 1, "wxEVT_SCROLL_LIN...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...; 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 => Wx::MenuEvent, - Wx::EVT_CONTEXT_MENU => Wx::ContextMenuEvent, - Wx::EVT_AUI_PANE_BUTTON => Wx::AuiManagerEvent, - Wx::EVT_AUI_PANE...
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...; 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 => Wx::MenuEvent, + Wx::EVT_CONTEXT_MENU => Wx::ContextMenuEvent, + Wx::EVT_AUI_PANE_BUTTON => Wx::AuiManagerEvent, + Wx::EVT_AUI_PANE...
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
...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(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_CREATE); -} - -static VALUE evt_destroy(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_DESTROY); -} - -static VALUE evt_menu_open(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_MENU_OPEN); -} - -static VALUE evt_menu_close(int ar...