search for: wxevt_creat

Displaying 10 results from an estimated 10 matches for "wxevt_creat".

Did you mean: wxevt_create
2007 Apr 29
0
[995] branches/wxruby2/wxwidgets_282/swig/classes/include/events.rb: Fix argument signature for window_create/destroy events; use wxWidgets
...uot;wxEVT_TASKBAR_MOVE"], </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...
2006 Nov 07
0
[723] trunk/wxruby2: Added WindowCreateEvent and WindowDestroyEvent + event handlers (AF)
...an class="lines">@@ -277,6 +279,18 @@ </span><span class="cx"> (const wxEventType *)0 </span><span class="cx"> }; </span><span class="cx"> </span><ins>+static const wxEventType *createEvents[] = +{ + &wxEVT_CREATE, + (const wxEventType *)0 +}; + +static const wxEventType *destroyEvents[] = +{ + &wxEVT_DESTROY, + (const wxEventType *)0 +}; + </ins><span class="cx"> #ifdef WXSCINTILLA </span><span class="cx"> static const wxEventType *scintillaEvents[] = <...
2007 May 31
0
[1037] trunk/wxruby2/swig/RubyEventTypes.i: RubyEventTypes is no longer needed - moved to Events.i
...04) - %constant const int wxEVT_ACTIVATE_APP;// 405) -#ifdef wxHAS_POWER_EVENTS // currently Win32 only - %constant const int wxEVT_POWER_SUSPENDING;// 406) - %constant const int wxEVT_POWER_SUSPENDED;// 407) -#endif - %constant const int wxEVT_ACTIVATE;// 409) - %constant const int wxEVT_CREATE;// 410) - %constant const int wxEVT_DESTROY;// 411) - %constant const int wxEVT_SHOW;// 412) - %constant const int wxEVT_ICONIZE;// 413) - %constant const int wxEVT_MAXIMIZE;// 414) - %constant const int wxEVT_MOUSE_CAPTURE_CHANGED;// 415) - %constant const int wxEVT_PAINT;// 416...
2006 Dec 31
0
[814] trunk/wxruby2/swig/classes: Added ScrollEvent class plus event processing and handler methods
...quot;, 2, "wxEVT_COMMAND_LEFT_CLICK"], </span><span class="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_SCROL...
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
...rgc, argv, self, wxEVT_IDLE); -} - -static VALUE evt_show(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_SHOW); -} - -static VALUE evt_window_create(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_CREATE); -} - -static VALUE evt_size(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_SIZE); -} - -static VALUE evt_key_down(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_KEY_DOWN); -} - -static V...
2007 Jun 25
0
[1066] trunk/wxruby2/swig: Move EVT constants in swig/classes/Event.i; add a few missing ones
...ERY_END_SESSION;// 404) -%constant const int wxEVT_ACTIVATE_APP;// 405) -#ifdef wxHAS_POWER_EVENTS // currently Win32 only -%constant const int wxEVT_POWER_SUSPENDING;// 406) -%constant const int wxEVT_POWER_SUSPENDED;// 407) -#endif -%constant const int wxEVT_ACTIVATE;// 409) -%constant const int wxEVT_CREATE;// 410) -%constant const int wxEVT_DESTROY;// 411) -%constant const int wxEVT_SHOW;// 412) -%constant const int wxEVT_ICONIZE;// 413) -%constant const int wxEVT_MAXIMIZE;// 414) -%constant const int wxEVT_MOUSE_CAPTURE_CHANGED;// 415) -%constant const int wxEVT_PAINT;// 416) -%constant const int w...
2007 May 31
0
[1036] trunk/wxruby2: Merge RubyEventTypes into Events.i, add missing EVT_ constants for
...ERY_END_SESSION;// 404) +%constant const int wxEVT_ACTIVATE_APP;// 405) +#ifdef wxHAS_POWER_EVENTS // currently Win32 only +%constant const int wxEVT_POWER_SUSPENDING;// 406) +%constant const int wxEVT_POWER_SUSPENDED;// 407) +#endif +%constant const int wxEVT_ACTIVATE;// 409) +%constant const int wxEVT_CREATE;// 410) +%constant const int wxEVT_DESTROY;// 411) +%constant const int wxEVT_SHOW;// 412) +%constant const int wxEVT_ICONIZE;// 413) +%constant const int wxEVT_MAXIMIZE;// 414) +%constant const int wxEVT_MOUSE_CAPTURE_CHANGED;// 415) +%constant const int wxEVT_PAINT;// 416) +%constant const int w...
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...DOWN, - &wxEVT_SCROLLWIN_THUMBTRACK, - &wxEVT_SCROLLWIN_THUMBRELEASE, - (const wxEventType *)0 -}; - -static const wxEventType *activateEvents[] = -{ - &wxEVT_ACTIVATE, - &wxEVT_ACTIVATE_APP, - (const wxEventType *)0 -}; - -static const wxEventType *createEvents[] = -{ - &wxEVT_CREATE, - (const wxEventType *)0 -}; - -static const wxEventType *destroyEvents[] = -{ - &wxEVT_DESTROY, - (const wxEventType *)0 -}; - -static const wxEventType *menuEvents[] = -{ - &wxEVT_MENU_OPEN, - &wxEVT_MENU_CLOSE, - &wxEVT_MENU_HIGHLIGHT, - (const wxEventType *)0 -}; - -sta...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
..., -["EVT_JOY_BUTTON_UP", 1, "wxEVT_JOY_BUTTON_UP"], -["EVT_TASKBAR_MOVE", 1, "wxEVT_TASKBAR_MOVE"], -["EVT_KILL_FOCUS", 1, "wxEVT_KILL_FOCUS"], -["EVT_TIMER", 2, "wxEVT_TIMER"], -["EVT_WINDOW_CREATE", 1, "wxEVT_CREATE"], -["EVT_WINDOW_DESTROY", 1, "wxEVT_DESTROY"], -["EVT_SCROLL", 1, "0"], -["EVT_SCROLL_TOP", 1, "wxEVT_SCROLL_TOP"], -["EVT_SCROLL_BOTTOM", 1, "wxEVT_SCROLL_BOTTOM"], -["EVT_SCROLL_LINEUP", 1, "wxEV...
2007 Mar 17
0
[883] branches/wxruby2/wxwidgets_282/swig: API changes for move to WxWidgets 2.8
...ently Win32 only + %constant const int wxEVT_POWER_SUSPENDING;// 406) + %constant const int wxEVT_POWER_SUSPENDED;// 407) +#endif </ins><span class="cx"> %constant const int wxEVT_ACTIVATE;// 409) </span><span class="cx"> %constant const int wxEVT_CREATE;// 410) </span><span class="cx"> %constant const int wxEVT_DESTROY;// 411) </span></span></pre></div> <a id="brancheswxruby2wxwidgets_282swigRubyStockObjectsi"></a> <div class="modfile"><h4>Modified: bran...