Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Ruby
(debian,eclipse) modify the code of a window created with glade
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="lolveley, post: 4637713"] 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. [URL]http://fr.mail.yahoo.com[/URL] [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Ruby
(debian,eclipse) modify the code of a window created with glade
Top