[Fxruby-users] some FXRuby 1.2 stuff
Status: Inactive
Brought to you by:
lyle
From: Yuri L. <y.l...@sa...> - 2004-07-09 15:15:03
|
Hello Lyle and all, I'be been implementing support of FXRuby 1.2 in my little GUI tool, and I have a couple of questions : 1) aliases.rb has a couple of aliases related to so-called leading rows and columns in the FXTable class: def leadingRows=(*args); setLeadingRows(*args); end def leadingRows(*args); getLeadingRows(*args); end def leadingColumns=(*args); setLeadingColumns(*args); end def leadingColumns(*args); getLeadingColumns(*args); end Looks like there are no more leading rows/columns, and there are no setLeadingRows/getLeadingRows/etc methods. And I personally don't need them now as tables are created with ready FXHeaders now 2) Before 1.2.x FXRuby I used to require "fox" require "fox/colors" Now that FXRuby is packed as a Ruby gem I do this require_gem "fxruby" where fxruby is not the so file, but a package name. So how am I supposed to require the "fox/colors" file now in an elegant way, via require_gem? 3) Do you plan to provide gems as the only source package format? I think rubygems is a terrific thing, but I also suppose there must be a choice. -- Best regards, Yuri Leikind |