search for: gridcellattr

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

2007 Apr 13
0
[952] branches/wxruby2/wxwidgets_282/doc/textile/gridcellattr.txtl: Doc fix from Wx 2.8
...x 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[952] branches/wxruby2/wxwidgets_282/doc/textile/gridcellattr.txtl: Doc fix from Wx 2.8</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>952</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-04-13 15:14:26 -0400 (Fri, 13 Apr...
2007 Feb 14
0
[873] trunk/wxruby2/swig/classes/GridCellAttr.i: Prevent GC prematurely cleaning up GridCellAttr-related classes
...#ccc;margin:10px 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[873] trunk/wxruby2/swig/classes/GridCellAttr.i: Prevent GC prematurely cleaning up GridCellAttr-related classes</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>873</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd&g...
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
2007 Mar 12
0
[879] trunk/wxruby2/Changelog: Prepare to tag for 0.0.39 release
...gt;<span class="lines">@@ -1,3 +1,4 @@ </span><ins>+=== 0.0.39 tag on 2007-03-12 included all of this: === </ins><span class="cx"> - Added grid sample (Alex Fenton) </span><span class="cx"> - Fix GC-related segfaults related to GridCellAttr and GridCellEditor (Alex Fenton) </span><span class="cx"> - Fix numerous crashes caused by regression from SWIG upgrade (Alex Fenton) </span></span></pre> </div> </div> </body> </html>
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
....o obj/FontDialog.o obj/Frame.o obj/GBPosition.o obj/GBSpan.o obj/GDIObject.o obj/GLCanvas.o obj/Gauge.o obj/GenericDirCtrl.o obj/GraphicsBrush.o obj/GraphicsContext.o obj/GraphicsFont.o obj/GraphicsMatrix.o obj/GraphicsObject.o obj/GraphicsPath.o obj/GraphicsPen.o obj/Grid.o obj/GridBagSizer.o obj/GridCellAttr.o obj/GridCellBoolEditor.o obj/GridCellBoolRenderer.o obj/GridCellChoiceEditor.o obj/GridCellEditor.o obj/GridCellFloatEditor.o obj/GridCellFloatRenderer.o obj/GridCellNumberEditor.o obj/GridCellNumberRenderer.o obj/GridCellRenderer.o obj/GridCellStringRenderer.o obj/GridCellTextEditor.o obj/GridEd...
2007 Mar 20
0
[903] branches/wxruby2/wxwidgets_282/samples: Added #!/usr/bin/env ruby to the grid sample.
...ound_colour(1, 1, Wx::RED) - - # We can specify the some cells will store numeric - # values rather than strings. Here we set grid column 6 - # to hold floating point values displayed with width - # of 2 and precision of 2. The column is highlighted in light grey - cell_attr = Wx::GridCellAttr.new - cell_attr.set_background_colour( Wx::LIGHT_GREY ) - cell_attr.set_renderer( Wx::GridCellFloatRenderer.new(2, 2) ) - - @grid.set_col_attr(5, cell_attr) - @grid.set_cell_value(0, 5, "3.1415") - @grid.set_cell_value(0, 6, - "The whole column...
2007 Mar 09
0
[877] trunk/wxruby2/Changelog: Update with 0.0.39 changes; correct last version number
...6) +++ trunk/wxruby2/Changelog&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp2007-03-09 23:13:45 UTC (rev 877) </span><span class="lines">@@ -1,3 +1,28 @@ </span><ins>+- Added grid sample (Alex Fenton) +- Fix GC-related segfaults related to GridCellAttr and GridCellEditor (Alex Fenton) +- Fix numerous crashes caused by regression from SWIG upgrade (Alex Fenton) +- Documentation for FontDialog (Alex Fenton) +- Test for suitable version (==2.6.3) of wxWidgets (Alex Fenton) +- Fix Window compile error (Roy Sutton) +- Added GridBagSizer and supporting...
2010 Feb 24
3
Mouse wheel events in a grid cell editor?
I''m trying to do some advanced editing using Grids. I''ve created my own editors and updating view and model both works fine so far. Thanks to whoever made this possible. I like wxRuby more each day! Now I''d like to catch mousewheel events in order to increment/decrement a grid cell editor. I''ve tried installing a handler in begin_edit of my editor and removing
2007 May 07
0
[1017] trunk/wxruby2/Changelog: Update changelog with 0.0.40 changes
...;nbsp&nbsp&nbsp&nbsp </ins><span class="cx"> === 0.0.39 tag on 2007-03-12 included all of this: === </span><span class="cx"> - Added grid sample (Alex Fenton) </span><span class="cx"> - Fix GC-related segfaults related to GridCellAttr and GridCellEditor (Alex Fenton) </span></span></pre> </div> </div> </body> </html>
2007 Feb 14
0
[875] trunk/wxruby2/samples: Add expanded grid sample
...ound_colour(1, 1, Wx::RED) + + # We can specify the some cells will store numeric + # values rather than strings. Here we set grid column 6 + # to hold floating point values displayed with width + # of 2 and precision of 2. The column is highlighted in light grey + cell_attr = Wx::GridCellAttr.new + cell_attr.set_background_colour( Wx::LIGHT_GREY ) + cell_attr.set_renderer( Wx::GridCellFloatRenderer.new(2, 2) ) + + @grid.set_col_attr(5, cell_attr) + @grid.set_cell_value(0, 5, "3.1415") + @grid.set_cell_value(0, 6, + "The whole column...
2007 Jul 23
11
Memory problem with GridCell*Editor
Alex, I was getting the following crashes when editing cells in a grid: ./init.rb:1072:in `main_loop'': undefined method `begin_edit'' for "_p_wxEvent":String (NoMethodError) from ./init.rb:1072 but only after the first App GC mark phase. So I changed all the GridCell*Editor.i files from GC_MANAGE to GC_MANAGE_AS_EVENT. Which stopped the crashing. My question
2010 Jan 28
5
Compiling problem on Ubuntu 9.10 64 bit
...Dialog.o obj/Frame.o obj/GBPosition.o obj/GBSpan.o obj/GCDC.o obj/GDIObject.o obj/GLCanvas.o obj/Gauge.o obj/GenericDirCtrl.o obj/GraphicsBrush.o obj/GraphicsContext.o obj/GraphicsFont.o obj/GraphicsMatrix.o obj/GraphicsObject.o obj/GraphicsPath.o obj/GraphicsPen.o obj/Grid.o obj/GridBagSizer.o obj/GridCellAttr.o obj/GridCellBoolEditor.o obj/GridCellBoolRenderer.o obj/GridCellChoiceEditor.o obj/GridCellEditor.o obj/GridCellFloatEditor.o obj/GridCellFloatRenderer.o obj/GridCellNumberEditor.o obj/GridCellNumberRenderer.o obj/GridCellRenderer.o obj/GridCellStringRenderer.o obj/GridCellTextEditor.o obj/GridEd...
2007 Feb 09
20
Hello Everyone
I have a bit of a problem with installation. I installed wxX11 in my linux box. I compiled the demos and all the demos, save dbbrowse, work. I think I have a functional wx. Now I''m trying to install wxRuby from source, since I have a 64 bit machine. I only have permission to my home directory so my installation is : /usr/people/stevenq/Applications/wxX11/