/tutorial/plugin/mini_gtk/example.e
Specman e | 20 lines | 16 code | 4 blank | 0 comment | 0 complexity | f4744f13ee6b009f023bedc6faaec9c0 MD5 | raw file
1class EXAMPLE 2 3insert 4 GTK 5 6create {ANY} 7 make 8 9feature {} 10 make 11 local 12 w: GTK_WINDOW 13 do 14 create w.make 15 w.signal_connect("destroy", agent gtk_main_quit) 16 w.show 17 gtk_main 18 end 19 20end -- class EXAMPLE