search for: wxdefaultvalidator

Displaying 13 results from an estimated 13 matches for "wxdefaultvalidator".

2005 Aug 10
3
question on Choice.i
...re wxChoice::wxChoice(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, int n = 0, const wxString choices[] = NULL, long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxChoiceNameStr); If I comment these two lines out I can run all of the sample programs. Sean
2006 Dec 31
0
[813] trunk/wxruby2/swig/classes: Added ScrollBar class
...&nbsp&nbsp&nbsp&nbsp&nbsp*/ - </del><span class="cx"> wxScrollBar(wxWindow* parent , wxWindowID id , const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSB_HORIZONTAL, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxT("scrollBar")) ; </span><del>-&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp/** -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \brief Destructor, destroying the scrollbar. -&nbsp&nb...
2006 Nov 21
0
[744] trunk/wxruby2: get_data support & mem mgmt to all ControlWithItems types, using more
...wxruby2/swig/classes/Choice.i&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp2006-11-21 19:59:03 UTC (rev 744) </span><span class="lines">@@ -28,24 +28,15 @@ </span><span class="cx"> const wxValidator& validator = wxDefaultValidator, </span><span class="cx"> const wxString& name = wxChoiceNameStr); </span><span class="cx"> </span><del>- </del><span class="cx"> // start client_data fixes </span><span class="cx"&gt...
2007 Apr 13
0
[949] branches/wxruby2/wxwidgets_282: Changes in Gauge API 2.6->2.8, remove comment cruft in header
...p&nbsp&nbsp&nbsp&nbsp*/ - </del><span class="cx"> wxGauge(wxWindow* parent , wxWindowID id , int range , const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxGA_HORIZONTAL, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxT("gauge")) ; </span><del>-&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp/** -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \brief Destructor, destroying the gauge. -&nbsp&nbsp&n...
2006 Dec 26
0
[ wxruby-Bugs-7451 ] Add Wx::DEFAULT_VALIDATOR
...acker/?func=detail&atid=218&aid=7451&group_id=35 Category: Missing API call Group: None Status: Open Resolution: None Priority: 3 Submitted By: Alex Fenton (brokentoy) Assigned to: Alex Fenton (brokentoy) Summary: Add Wx::DEFAULT_VALIDATOR Initial Comment: WxWidgets defines a constant wxDefaultValidator, but it''s not currently exposed in wxRuby2. This is needed because it is the default arg to many control constructors (similar to Wx::DEFAULT_SIZE and Wx::DEFAULT_POSITION) ---------------------------------------------------------------------- You can respond by visiting: http://rubyfor...
2005 Sep 03
2
Problem with swig?
...default value! Here''s the definition from the .h file: wxListBox(wxWindow* parent , wxWindowID id , const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, int n = 0 , const wxString choices[] = NULL, long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxT("listBox")); I /thought/ swig pulled the default values from the definition. You can only imagine the havok that is being wreaked through the library if there are uninitialized longs sprinkled about. Is this just a problem with one of our swig config...
2007 Jan 04
0
[825] trunk/wxruby2/swig/RubyConstants.i: Added DEFAULT_VALIDATOR constant
...uot;cx"> </span><span class="cx"> %constant const wxSize DEFAULT_SIZE = wxDefaultSize; </span><span class="cx"> %constant const wxPoint DEFAULT_POSITION = wxDefaultPosition; </span><ins>+%constant const wxValidator DEFAULT_VALIDATOR = wxDefaultValidator; </ins><span class="cx"> </span><del>- </del><span class="cx"> // Text font families </span><span class="cx"> %constant int FONTFAMILY_DEFAULT = wxDEFAULT; </span><span class="cx"> %constant...
2007 Mar 18
0
[893] branches/wxruby2/wxwidgets_282: New hover bitmap methods in 2.6 -> 2.8 API
...nbsp&nbsp*/ - </del><span class="cx"> wxBitmapButton(wxWindow* parent , wxWindowID id , const wxBitmap& bitmap , const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxT("button")) ; </span><del>-&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp/** -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \brief Destructor, destroying the button. -&nbsp&nbsp&amp...
2007 Jul 04
0
[1104] trunk/wxruby2: Added 2.8 methods to TextCtrl & document them; tidy up header file
...p&nbsp&nbspwxPoint const &pos = wxDefaultPosition, wxSize const &size = wxDefaultSize, -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsplong style = 0, wxValidator const &validator = wxDefaultValidator, -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspwxString const &name = wxTextCtrlNameStr); </del><ins>+ wxTextCtrl(wxWindow *parent, +&nbsp&nbsp&nbsp&nbsp&nbsp&...
2007 Jan 05
0
[827] trunk/wxruby2/swig: Moved NULL objects into constants so they can be used for default args
...21:43:19 UTC (rev 827) </span><span class="lines">@@ -2145,6 +2145,17 @@ </span><span class="cx"> %constant const wxPoint DEFAULT_POSITION = wxDefaultPosition; </span><span class="cx"> %constant const wxValidator DEFAULT_VALIDATOR = wxDefaultValidator; </span><span class="cx"> </span><ins>+ +// ''Null'' objects +%constant wxBitmap const NULL_BITMAP = wxNullBitmap; +%constant wxIcon const NULL_ICON = wxNullIcon; +%constant wxCursor const NULL_CURSOR = wxNullCursor; +%constant wxPen const...
2006 Nov 07
0
[722] trunk/wxruby2/swig: Wx::Choice fixes for get_client_data (AF)
...class="cx"> %include "../common.i" </span><span class="lines">@@ -27,9 +27,26 @@ </span><span class="cx"> long style = 0, </span><span class="cx"> const wxValidator& validator = wxDefaultValidator, </span><span class="cx"> const wxString& name = wxChoiceNameStr); </span><del>- </del><span class="cx"> </span><span class="cx"> </span><ins>+// start client_data fixes +%include "....
2007 Mar 17
0
[883] branches/wxruby2/wxwidgets_282/swig: API changes for move to WxWidgets 2.8
...gt; public: </span><span class="cx"> wxControl(); </span><ins>+ wxControl(wxWindow *parent, wxWindowID id, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, long style = 0, + const wxValidator& validator = wxDefaultValidator, + const wxString& name = wxT("control")); + </ins><span class="cx"> virtual ~wxControl(); </span><ins>+ bool Create(wxWindow *parent, wxWindowID id, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultS...
2007 Mar 21
0
[906] branches/wxruby2/wxwidgets_282: Wx::ComboBox API 2.6 -> 2.8, plus some doc corrections
...indowID id, - const wxString& value = wxEmptyString, - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - int n = 0, const wxString choices[] = NULL, - long style = 0, - const wxValidator& validator = wxDefaultValidator, - const wxString& name = wxComboBoxNameStr); -*/ - </del><span class="cx"> /* tweak this signature so it can be used for cases where only </span><span class="cx"> a few parameters are passed */ </span><span class="cx"&...