search for: evt_window_destroy

Displaying 6 results from an estimated 6 matches for "evt_window_destroy".

2007 Jul 21
0
[1132] trunk/wxruby2/doc/textile/windowdestroyevent.txtl: Updated and corrected doc on WindowDestroyEvent, noting that e.skip must
...lt;/span><span class="lines">@@ -15,15 +15,14 @@ </span><span class="cx"> </span><span class="cx"> h2. Event hooks </span><span class="cx"> </span><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 option...
2006 Sep 18
1
EvtHanler.i / Events.i
I decided to take a look at the way we set up event handlers as part of adding two missing events (EVT_WINDOW_CREATE and EVT_WINDOW_DESTROY) and I must say I completely don''t understand how the passed block becomes a function that gets called during the callback. Anyone able to point me in the right direction here? Roy
2007 May 10
0
wxRuby2 preview 0.0.40 released
...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 for docs and samples, and to Artur Kuptel...
2007 Apr 29
0
[995] branches/wxruby2/wxwidgets_282/swig/classes/include/events.rb: Fix argument signature for window_create/destroy events; use wxWidgets
...t;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><span class="cx"> ["EVT_SCROLL_TOP", 1, "wxEVT_SCROLL_TOP"], </span><span class="cx"> ["EVT_SCR...
2007 May 07
0
[1017] trunk/wxruby2/Changelog: Update changelog with 0.0.40 changes
...e docs (AF) +- Corrected Image documentation (SL) +- Added IMAGE_QUALITY constants (SL) +- Require wxWidgets 2.8.3 (AF) +- Additional VERSION constants from Wx, fix hardcoded WXWIDGETS_VERSION +- Default arguments for Pen constructor (AF) +- More 2.8 methods for TopLevelWindow, Window (AF) +- fixed evt_window_destroy and evt_window_create (AF) +- fixed samples to use paint method rather than DC directly (AF) +- Fixes for memory errors and windows crashes with PaintDC, doc (AF/Artur Kuptel) +- Prevent direct instantiation of ClientDC and PaintDC (AF) +- Make Window#paint work consistently inside and outside evt_...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...::UpdateUIEvent], + EventType[''evt_update_ui_range'', 2, + Wx::EVT_UPDATE_UI, + Wx::UpdateUIEvent], + EventType[''evt_window_create'', 0, + Wx::EVT_CREATE, + Wx::WindowCreateEvent], + EventType[''evt_window_destroy'', 0, + Wx::EVT_DESTROY, + Wx::WindowDestroyEvent], + EventType[''evt_wizard_cancel'', 1, + Wx::EVT_WIZARD_CANCEL, + Wx::WizardEvent], + EventType[''evt_wizard_finished'', 1, + Wx::EVT_W...