Since 5/7/2012 11:57:20 PM, y.leikind has written 8 articles and participated in 8 conversations. y.leikind signature: y.leikind
y.leikind's articles:
Items(8) /1
Aliasing a singleton method of a Class object432 (9/10/2004 10:17:14 AM) comp.lang.ruby Hello all, Aliasing an object method is simple: class QQQ def aaa end alias_method(:new_name_for_aaa, :aaa) end How do I alias a singleton method of a Class object (or, as many call it, a cla... Yuri
FoX: removing widgets1524 (5/18/2004 1:47:25 PM) comp.lang.ruby Hello all, When I need to delete some widget, I do it like this: parent_obj.removeChild(obj_to_remove) and then create and recalc But, though the object deleted does not belong anywhere in the hierarchy of... Yuri
FoX: X Error after fx_app.normalFont=235 (5/6/2004 3:19:06 PM) comp.lang.ruby Hello all, I try to set the normal font for the FXApp object after it has been run (fx_app.normalFont = my_font), and I get the following errors: X Error: code 7 major 56 minor 0: BadFont (invalid Font para... Yuri
FoX: how to set font for an FXTable item427 (4/26/2004 3:10:47 PM) comp.lang.ruby Hello all, Is there a way to set font for a single FXTableItem ? FXTableItem does not have an appropriate method, there is only a way to set font for the whole FXTable, globally. -- Best regards, Yuri Lei... Yuri
FXMessageBox question021 (2/27/2004 2:57:27 PM) comp.lang.ruby Hello all, There are 2 ways to use FXMessageBox - via static methods like #error or #information, and #new. Using the first way doesn't give you access to the object created Say, I want to use #new to be abl... Yuri
using open3.rb from a thread126 (1/23/2004 5:01:55 PM) comp.lang.ruby Hello all, I use open3 library from non-main threads, and I get the following warning /usr/lib/ruby/1.8/open3.rb:39: warning: fork terminates thread at easinstaller.rb:41 My thread is terminated, and I won... Yuri
FXRuby: adding child widgets after #run has started440 (1/23/2004 3:13:54 PM) comp.lang.ruby Hello all, Is there a way in Fox to add widgets after the widget hierarchy has been built and FXApp#run has started ? Say, I have an empty FXScrollWindow, and I want to add FXMatrix to it with lots of its ... Yuri
FoX: FXMessageBox and threads141 (12/2/2003 6:42:40 PM) comp.lang.ruby Hello all, I have a FoX application written using threads, and I came across a strange problem - when a FXMessageBox is created from a thread other than the one FXApp#run runs in, after clicking the Ok button... Yuri
y.leikind's replies:
Items(6) /1
FXRuby: adding child widgets after #run has started440 (1/23/2004 3:13:54 PM) comp.lang.ruby Hello all, Is there a way in Fox to add widgets after the widget hierarchy has been built and FXApp#run has started ? Say, I have an empty FXScrollWindow, and I want to add FXMatrix to it with lots of its ... y.leikind(16)
FoX: how to set font for an FXTable item427 (4/26/2004 3:10:47 PM) comp.lang.ruby Hello all, Is there a way to set font for a single FXTableItem ? FXTableItem does not have an appropriate method, there is only a way to set font for the whole FXTable, globally. -- Best regards, Yuri Lei... y.leikind(16)
Ruby under Suse Linux1325 (4/29/2004 2:10:08 PM) comp.lang.ruby Hi. I'm new to Ruby, and struggling; Ruby does not seem to be very easy to install under Linux. I can't use the Suse RPM package, as I want the functionality of FOX and fxruby, and they aren't on the distro... ceo1881(10)
FoX: X Error after fx_app.normalFont=235 (5/6/2004 3:19:06 PM) comp.lang.ruby Hello all, I try to set the normal font for the FXApp object after it has been run (fx_app.normalFont = my_font), and I get the following errors: X Error: code 7 major 56 minor 0: BadFont (invalid Font para... y.leikind(16)
FoX: removing widgets1524 (5/18/2004 1:47:25 PM) comp.lang.ruby Hello all, When I need to delete some widget, I do it like this: parent_obj.removeChild(obj_to_remove) and then create and recalc But, though the object deleted does not belong anywhere in the hierarchy of... y.leikind(16)
Aliasing a singleton method of a Class object432 (9/10/2004 10:17:14 AM) comp.lang.ruby Hello all, Aliasing an object method is simple: class QQQ def aaa end alias_method(:new_name_for_aaa, :aaa) end How do I alias a singleton method of a Class object (or, as many call it, a cla... y.leikind(16)