/src/wrappers/gtk/examples/windows/plain_window_example.e
http://github.com/tybor/Liberty · Specman e · 32 lines · 22 code · 9 blank · 1 comment · 0 complexity · 3e35f33fa4229525cb4cf4398e88b08b MD5 · raw file
- indexing
- copyright: "(C) 2005 Paolo Redaelli "
- license: "LGPL v2 or later"
- date: "$Date:$"
- revision "$REvision:$"
- class PLAIN_WINDOW_EXAMPLE
- inherit
- GTK_MAIN
-
- creation
- make
-
- feature {} -- creation
- make is
- do
- initialize_gtk
- create window.make
- window.set_title ("Wow my first Eiffel window!")
- window.show
- run_gtk_main_loop
- end
- feature -- foo
- window: GTK_WINDOW
- -- the window
-
- end