Re: [Fxruby-users] re: resizing FXTABLE columns
Status: Inactive
Brought to you by:
lyle
|
From: meinrad r. <mei...@gm...> - 2003-10-12 15:59:43
|
Brett S Hallett wrote:
> Thanks for your input, however I cant find any documentation on
> SEL_CONFIGURE in my FXRuby docs,
> could you drop ina little sample code ?
i was thinking of this. it is very easy:
untested code ahead:
#this is the frame holding your table only with padding 0
h=FXVerticalFramme.new parent
t=FXTable.new(h, ...)
h.connect(SEL_CONFIGURE) {
puts [h.width, h.height].join ' '
t.resize(h.width, h.height)
}
>
> Thanks
>
hope it helps,
-- henon
--------------
% cat "food in cans"
cat: can't open food in cans
|