File: range_widgets_app.e

package info (click to toggle)
egtk 0.3.6-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,984 kB
  • ctags: 5,256
  • sloc: ansic: 2,320; sh: 273; makefile: 234
file content (27 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
indexing
	description: "Adapted from GTK examples/rangewidgets, demonstrates %
		%the range related widgets"
	author: "Dave E Martin XXIII"
	genesis: "199905122228 utc"
	version: "v 0.3.5 GTK+ 1.2.x"
	gtk_version: "1.2"

class RANGE_WIDGETS_APP

inherit
	GTK_APPLICATION

creation {ANY}
	make

feature {NONE} -- initialization
	make is
		local
			main_window: MAIN_WINDOW
		do
			initialize_tool_kit
			set_locale
			!! main_window.make (Current)
			main_loop
		end
end