[ruby-gnome2-doc-cvs] [Hiki] create - tips_key_pressed

Back to archive index

ruby-gnome2-hiki-pt_BR****@sourc***** ruby-gnome2-hiki-pt_BR****@sourc*****
2004年 4月 5日 (月) 08:28:25 JST


-------------------------
REMOTE_ADDR = 200.216.151.125
REMOTE_HOST = 
        URL = http://ruby-gnome2.sourceforge.jp/pt_BR/?tips_key_pressed
-------------------------
= Investigue que tecla estpressionada
Execute este script e pressione a tecla que deseja investigar. Vocpode obter o valor da tecla e a constante Gdk::Keyval facilmente.

 require 'gtk2'
 Gtk.init
 
 window = Gtk::Window.new
 window.add_events(Gdk::Event::KEY_PRESS)
 window.add(Gtk::Label.new("Pressione uma Tecla!"))
 
 window.signal_connect("key-press-event") do |w, e|
   p "#{e.keyval}, Gdk::Keyval::GDK_#{Gdk::Keyval.to_name(e.keyval)}"
 end
 
 window.set_default_size(100, 100).show_all
 
 Gtk.main

P.S.

Por favor perceba que este script pode obter o valor da tecla no seu ambiente apenas.
Alguns valores de teclas tem valores diferentes em cada ambiente.

== Log de Altera苺es
:2003-10-12 ((<Masao>))
 Vers縊 inicial.





ruby-gnome2-cvs メーリングリストの案内
Back to archive index