search for: wxevt_null

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

2005 Aug 29
3
added Choicebook
Here are the new files in a zip and the patches to existing. Also added Listbook values to parents.rb that I forgot when adding that. Sean _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Dec 31
0
[815] trunk/wxruby2/swig/classes: Added ContextMenuEvent class plus event handling methods
...,32 @@ </span><ins>+// Copyright 2004-2006 by Kevin Smith +// released under the MIT-style wxruby2 license + +#if !defined(_wxContextMenuEvent_h_) +#define _wxContextMenuEvent_h_ + + +class wxContextMenuEvent : public wxCommandEvent +{ +public: + wxContextMenuEvent(wxEventType type = wxEVT_NULL, + wxWindowID winid = 0, + const wxPoint& pt = wxDefaultPosition) + : wxCommandEvent(type, winid), + m_pos(pt) + { } + wxContextMenuEvent(const wxContextMenuEvent & event) + : wxCommandEvent(event), + m_pos(even...
2007 May 31
0
[1037] trunk/wxruby2/swig/RubyEventTypes.i: RubyEventTypes is no longer needed - moved to Events.i
...directors="1") wxRubyEventTypes - -%include "common.i" - -%{ -//NO_CLASS - This tells fixmodule not to expect a class -#include <wx/calctrl.h> -#include <wx/fdrepdlg.h> -#include <wx/power.h> -#include <wx/aui/aui.h> -%} - - - - - - %constant const int wxEVT_NULL;// 0) - %constant const int wxEVT_COMMAND_BUTTON_CLICKED;// 1) - %constant const int wxEVT_COMMAND_CHECKBOX_CLICKED;// 2) - %constant const int wxEVT_COMMAND_CHOICE_SELECTED;// 3) - %constant const int wxEVT_COMMAND_LISTBOX_SELECTED;// 4) - %constant const int wxEVT_COMMAND_LISTBOX_D...
2007 Jun 25
0
[1066] trunk/wxruby2/swig: Move EVT constants in swig/classes/Event.i; add a few missing ones
...t;wx/wizard.h> -#include <wx/splitter.h> -#include <wx/grid.h> -#include <wx/laywin.h> -#include <wx/process.h> -#include <wx/tglbtn.h> -#include <wx/aui/aui.h> - -#ifdef WXSCINTILLA -# include <wx/wxscintilla.h> -#endif - -%} - - -%constant const int wxEVT_NULL;// 0) -%constant const int wxEVT_COMMAND_BUTTON_CLICKED;// 1) -%constant const int wxEVT_COMMAND_CHECKBOX_CLICKED;// 2) -%constant const int wxEVT_COMMAND_CHOICE_SELECTED;// 3) -%constant const int wxEVT_COMMAND_LISTBOX_SELECTED;// 4) -%constant const int wxEVT_COMMAND_LISTBOX_DOUBLECLICKED;// 5) -...
2007 May 31
0
[1036] trunk/wxruby2: Merge RubyEventTypes into Events.i, add missing EVT_ constants for
...;nbsp2007-05-31 18:35:32 UTC (rev 1036) </span><span class="lines">@@ -32,6 +32,214 @@ </span><span class="cx"> %} </span><span class="cx"> </span><span class="cx"> </span><ins>+%constant const int wxEVT_NULL;// 0) +%constant const int wxEVT_COMMAND_BUTTON_CLICKED;// 1) +%constant const int wxEVT_COMMAND_CHECKBOX_CLICKED;// 2) +%constant const int wxEVT_COMMAND_CHOICE_SELECTED;// 3) +%constant const int wxEVT_COMMAND_LISTBOX_SELECTED;// 4) +%constant const int wxEVT_COMMAND_LISTBOX_DOUBLECLICKED;// 5) +...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...ot;], -["EVT_TREE_ITEM_MIDDLE_CLICK", 2, "wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK"], -["EVT_TREE_ITEM_COLLAPSING", 2, "wxEVT_COMMAND_TREE_ITEM_COLLAPSING"], -["EVT_MOUSEWHEEL", 1, "wxEVT_MOUSEWHEEL"], -["EVT_COMMAND_RANGE", 3, "wxEVT_NULL"], -["EVT_CHOICEBOOK_PAGE_CHANGING", 2, "wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING"], -["EVT_NOTEBOOK_PAGE_CHANGING", 2, "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING"], -["EVT_LISTBOOK_PAGE_CHANGING", 2, "wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING"],...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...uot;>@@ -0,0 +1,39 @@ </span><ins>+// Copyright 2007 by Kevin Smith +// released under the MIT-style wxruby2 license + +#if !defined(_wxAuiManagerEvent_h_) +#define _wxAuiManagerEvent_h_ + + +class wxAuiManagerEvent : public wxEvent +{ +public: + wxAuiManagerEvent(wxEventType type=wxEVT_NULL) : wxEvent(0, type) + { + manager = NULL; + pane = NULL; + button = 0; + veto_flag = false; + canveto_flag = true; + dc = NULL; + } + + wxEvent *Clone() const { return new wxAuiManagerEvent(*this); } + + void SetManager(wxAuiManager* mgr) { mana...
2007 Mar 17
0
[883] branches/wxruby2/wxwidgets_282/swig: API changes for move to WxWidgets 2.8
...; </span><ins>+#include <wx/power.h> </ins><span class="cx"> %} </span><span class="cx"> </span><span class="cx"> </span><ins>+ + + </ins><span class="cx"> %constant const int wxEVT_NULL;// 0) </span><span class="cx"> %constant const int wxEVT_COMMAND_BUTTON_CLICKED;// 1) </span><span class="cx"> %constant const int wxEVT_COMMAND_CHECKBOX_CLICKED;// 2) </span><span class="lines">@@ -93,7 +96,10 @@ </span&g...