Guest User

Untitled

a guest
May 10th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Vala 0.22 KB | None | 0 0
  1. public static void main (string [] args){
  2.     Gtk.init (ref args);
  3.     Timeout.add (1, () => {
  4.         Gdk.Event ev = Gdk.Display.get_default ().get_event ();
  5.         if (ev != null){
  6.             print ("Key:" + ev.key.str);
  7.         }
  8.     }
  9.     Gtk.main ();
  10. }
Add Comment
Please, Sign In to add comment