6 nov 2018

Teoría - GTK2

GTK2

require gtk2                                                                              0.- Requerir la gema gtk2
variable Gtk::Window.new                                             1.- Crear la ventana
Contorno y/o interior                                                          2.- Definir ventana (como mínimo ésto)
variable.signal_connect("delete_event") do
    Gtk.main_quit
    false
end
window.border_width = 20                                                       
window.show  ó winsow.show_all                                  3.- llamar a la ventana.
Gtk.mail                                                                                     4.- Activar la ventana para que se muestre con Gtk.main

ejercicio TK -1

 #!/usr/bin/ruby #https://sandbox.mc.edu/~bennet/ruby/code/tk2_rb.html # Import the library. require 'tk' # Root window. root = TkRo...