(debian,eclipse) modify the code of a window created with glade

L

lolveley

hello,

I would like to create a window with glade, import it in a ruby project,
and add a buton to it but from eclipse.

here it is an example:

************************************************
#!/usr/bin/env ruby
#
require 'libglade2'
require 'gtk2'
class MonAppli
attr_accessor:main_glade_xml
def initialize(file, root)
@main_glade_xml = GladeXML.new(file, root) {|handler| method(handler)}
#@main_glade_xml['fenetre_2'].show_all
end
def on_button1_clicked
puts "clicked !"
end
end


Gtk.init
a=MonAppli.new("/home/lolveley/eclipse/plan_de_travail/test_1/fenetre_2.glade",nil)

a.main_glade_xml["window1"].add_child(new Button("bouton 1"))


# marche
a.main_glade_xml["window1"].show_all
Gtk.main
**********************************************

but I can't find the correct term to use for "button" : I tried
Gtk::button but I have this error then : "undefined method `Button' for
Gtk:Module".

can you help me?

olivier.










___________________________________________________________________________
Yahoo! Mail réinvente le mail ! Découvrez le nouveau Yahoo! Mail et son interface révolutionnaire.
http://fr.mail.yahoo.com
 

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

Forum statistics

Threads
473,764
Messages
2,569,566
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top