Displaying 1 result from an estimated 1 matches for "button_norm".
Did you mean:
button_normal
2008 Sep 06
0
Tab control using FXRuby
...)
fld1a.setFocus ## focus on first field ( it does NOT !
-> first BUTTON "New" )
end
btns= FXHorizontalFrame.new(amain, LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_SUNKEN)
# btns
new= FXButton.new(btns, "New", :opts => LAYOUT_FILL_X| BUTTON_NORMAL)
new.connect(SEL_COMMAND) do |sender, sel, checked|
# ## your button press code here ##
end # new
clear= FXButton.new(btns,"Clear", :opts => LAYOUT_FILL_X|BUTTON_NORMAL)
clear.connect(SEL_COMMAND) do |sender, sel, checked|
# ## your button press code here ##
end # clear
load=...