ruby and Tk:- Menu's calling other widgets

J

John Maclean

What's the best (and simplest) method of having a menu item produce
another widget (a menu for example)? So far I have code as shown below
which calls a simple button. I'd like to use the proc{foo} method so
that I can call another file. The idea is to have each type of widget
organised into many smaller files.

It the proc{require 'another_widget'} way possible or recommended?

here's a menu entry that calls another widget....


[['Blah', 0],
['command', proc {
toplevelwindow = TkToplevel.new(root) {
title "New window"
#geometry("50x50+100+100")
#configure('bg'=>"black")
}

toplevelbutton = TkButton.new(toplevelwindow) {
text "Close"
command proc { toplevelwindow.destroy }
}.place('x'=>10, 'y'=>10)
}],
],
[['Blah', 0],
['command', proc {
toplevelwindow = TkToplevel.new(root) {
title "New window"
#geometry("50x50+100+100")
#configure('bg'=>"black")
}

toplevelbutton = TkButton.new(toplevelwindow) {
text "Close"
command proc { toplevelwindow.destroy }
}.place('x'=>10, 'y'=>10)
}],
],
 
G

Gerald Murray

An example is in the ruby source distribution:
ruby-1.8.4/ext/tk/sample/demos-en/widget

best regards,
Gerald

If you only want buttons you might try:

require 'tk'
#= windowmaker - create button array, each pops a window
#global $button[] holds buttons defined by this method
#parm root the frame which is to hold the button
#parm b_text the button text; also becomes toplevel title
#parm t_place String, "0x0+100+200", toplevel window size, place
#parm init_color String, "#000000", 2 hex digits for red, green, blue
#
def windowmaker(root,b_text,t_place,init_color="#000000")
toplevelwindow = -1
b = TkButton.new(root,
'text'=>b_text,
'command'=> proc {
toplevelwindow = TkToplevel.new(root, {
'title'=> "#{b.text}",
'geometry'=>t_place,
'bg'=>init_color
})
}
).pack('expand'=>'yes','fill'=>'x')
$buttons.push [b,toplevelwindow]
end

r = TkRoot.new
f = TkFrame.new(r)
$buttons = [] # each entry holds [button,toplevel]
windowmaker(f,"red","100x100","#ff0000")
windowmaker(f,"white","200x200","#ffffff")
windowmaker(f,"blue","300x300","#0000ff")
windowmaker(f,"0x400+100+100","dummy") # re-configured:
# show reconfiguration of the last button
$buttons[-1][0].configure('command'=>proc{r.destroy;
exit},'text'=>"Quit")
f.pack
Tk.mainloop
 
H

Hidetoshi NAGAI

From: John Maclean <[email protected]>
Subject: ruby and Tk:- Menu's calling other widgets
Date: Wed, 25 Jan 2006 03:13:34 +0900
Message-ID: said:
that I can call another file. The idea is to have each type of widget
organised into many smaller files.

It the proc{require 'another_widget'} way possible or recommended?

It must be possible, but I don't recommend it.
If your each type of widget is a class,
'autoload' may be a good solution.
Please see some libraries in '<ruby-libs>/tkextlib/' directory
(e.g. 'tkextlib/iwidgets.rb' and files in 'textlib/iwidgets/').
 
J

John Maclean

Thank you Chaps,

I've managed to get it going with proc{load 'fo.rb'}. I know that it
may be "bad practice" but I'd like to cut my teeth into a certain
project.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top