Displaying 3 results from an estimated 3 matches for "set_row_label_size".
2006 Apr 30
0
latest cvs head makes api more strongly typed
In previous versions the following would work as you expect with a
dynamic language like Ruby.
Method signature of wxGrid::SetRowLabelSize
void SetRowLabelSize(int width)
ex.
gird = Wx::Grid.new(....)
grid.set_row_label_size(some_value*0.5)
which Ruby translates to
gird = Wx::Grid.new(....)
grid.set_row_label_size((some_value*0.5).to_i)
In the latest cvs head you get this error:
`set_row_label_size'': in method ''SetRowLabelSize'', argument 2 of type
''int'' (TypeError)
Basic...
2007 Feb 12
0
[861] trunk/wxruby2/doc/textile/grid.txtl: Added missing methods listing section
..._column_sizes":#Grid_setorcalccolumnsizes
+* "Grid#set_or_calc_row_sizes":#Grid_setorcalcrowsizes
+* "Grid#set_read_only":#Grid_setreadonly
+* "Grid#set_row_attr":#Grid_setrowattr
+* "Grid#set_row_label_alignment":#Grid_setrowlabelalignment
+* "Grid#set_row_label_size":#Grid_setrowlabelsize
+* "Grid#set_row_label_value":#Grid_setrowlabelvalue
+* "Grid#set_row_minimal_height":#Grid_setrowminimalheight
+* "Grid#set_row_minimal_acceptable_height":#Grid_setrowminimalacceptableheight
+* "Grid#set_row_size":#Grid_setrowsize...
2006 Dec 14
5
wxruby2-preview Gauge and wx-sugar with SplitterWindow
First of all, just wanted to say big thanks for all the great work on
wxruby2 .. I''ve been a user of 0.6 for a long time and its proved very
useful over the years. It''s great to finally have a multi-platform, gem
installable ui toolkit that doesn''t suck!
Secondly, thanks also for wx-sugar. I was drowning in sizers and started
to write my own layout library ... but