search for: wxgridcelleditor

Displaying 7 results from an estimated 7 matches for "wxgridcelleditor".

Did you mean: gridcelleditor
2007 Jan 25
0
[855] trunk/wxruby2/swig/classes/include/parents.rb: Parenting for GridBagSizer
..."> ''wxGrid'' => ''wxScrolledWindow'', </span><ins>+ ''wxGridBagSizer'' => ''wxFlexGridSizer'', </ins><span class="cx"> ''wxGridCellBoolEditor'' => ''wxGridCellEditor'', </span><span class="cx"> ''wxGridCellBoolRenderer'' => ''wxGridCellRenderer'', </span><span class="cx"> ''wxGridCellChoiceEditor'' => ''wxGridCellEditor'', </span&...
2007 Dec 28
0
[ wxruby-Bugs-16671 ] GridCellBoolEditor doesn''t work: pure virtual method
...Resolution: None Priority: 3 Submitted By: Alex Fenton (brokentoy) Assigned to: Alex Fenton (brokentoy) Summary: GridCellBoolEditor doesn''t work: pure virtual method Initial Comment: - GridCellBoolEditor doesn''t work. Error message: "Swig director pure virtual method called wxGridCellEditor::Create (RuntimeError)" also - GridCellBollRenderer: the cell value can only be "0" or "1". When it is "true" or "false" nothing ist redenderer. Isn''t it a bool renderer? --------------------------------------------------------------------...
2007 Feb 14
0
[872] trunk/wxruby2/swig/classes/Grid.i: Prevent GC prematurely cleaning up Grid-related classes
...C (rev 872) </span><span class="lines">@@ -9,6 +9,8 @@ </span><span class="cx"> #include <wx/grid.h> </span><span class="cx"> %} </span><span class="cx"> </span><ins>+%apply SWIGTYPE *DISOWN { wxGridCellEditor* editor }; +%apply SWIGTYPE *DISOWN { wxGridCellAttr* attr }; </ins><span class="cx"> </span><span class="cx"> %import "include/wxObject.h" </span><span class="cx"> %import "include/wxEvtHandler.h" </span>&...
2007 Mar 18
0
[896] branches/wxruby2/wxwidgets_282/swig/classes/Grid.i: Added DISOWN typemap to prevent free_GridCellRenderer crash on GC/exit
...an class="cx"> #include <wx/grid.h> </span><span class="cx"> %} </span><span class="cx"> </span><ins>+%apply SWIGTYPE *DISOWN { wxGridCellAttr* attr }; </ins><span class="cx"> %apply SWIGTYPE *DISOWN { wxGridCellEditor* editor }; </span><del>-%apply SWIGTYPE *DISOWN { wxGridCellAttr* attr }; </del><ins>+%apply SWIGTYPE *DISOWN { wxGridCellRenderer* renderer }; </ins><span class="cx"> </span><span class="cx"> %import "include/wxObject.h&quot...
2007 Feb 14
0
[873] trunk/wxruby2/swig/classes/GridCellAttr.i: Prevent GC prematurely cleaning up GridCellAttr-related classes
...> #include <wx/grid.h> </span><span class="cx"> %} </span><span class="cx"> </span><del>-#This is to get arround SWIG trying to call a protected destructor -%nodefault wxGridCellAttr; </del><ins>+%apply SWIGTYPE *DISOWN { wxGridCellEditor* editor }; +%apply SWIGTYPE *DISOWN { wxGridCellRenderer* renderer }; </ins><span class="cx"> </span><ins>+// This is to get arround SWIG trying to call a protected destructor +%nodefaultdtor wxGridCellAttr; + </ins><span class="cx"> %include...
2007 Jun 01
0
[1044] trunk/wxruby2: Special memory management for Wx::Grid
...DISOWN +// to prevent premature ruby GC. To save a lot of messy C++ The work is +// done in pure ruby - see lib/wx/classes/grid.rb </ins><span class="cx"> %apply SWIGTYPE *DISOWN { wxGridCellAttr* attr }; </span><span class="cx"> %apply SWIGTYPE *DISOWN { wxGridCellEditor* editor }; </span><span class="cx"> %apply SWIGTYPE *DISOWN { wxGridCellRenderer* renderer }; </span></span></pre> </div> </div> </body> </html>
2008 Jul 28
12
Segfault with GridCellChoiceEditor
I have a problem. In my application I have a few Grid objects in a Notebook. The Grid objects are populated via GridTableBase. Certain Grid cells need to have a choice interface (I''m artificially enforcing foreign key constraints). All this works to the point where you try to edit the value for that cell. The choice box renders (i.e. the drop down arrow appears) then the application