File: toggle_buttons.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 (34 lines) | stat: -rw-r--r-- 739 bytes parent folder | download | duplicates (4)
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
28
29
30
31
32
33
34
-- Copyright 1998 Richie Bielak and others
-- Licensed under Eiffel Forum Freeware License, version 1;
-- (see forum.txt)
--
class TOGGLE_BUTTONS

inherit

	GTK_COMMAND

feature

	window: WINDOW_WITH_CLOSE_BUTTON

	execute is
		local
			box2: GTK_BOX
			toggle_button: GTK_TOGGLE_BUTTON
		do
			!!window.make ("Toggle Buttons")
			!!box2.make_vertical (False, 10)
			box2.set_border_width (10)
			window.box.pack (box2, True, True, 0)
			!!toggle_button.make_with_label ("Button1")
			box2.pack (toggle_button, True, True, 0)
			!!toggle_button.make_with_label ("Button2")
			box2.pack (toggle_button, True, True, 0)
			!!toggle_button.make_with_label ("Button2")
			box2.pack (toggle_button, True, True, 0)
			window.show_all
		end


end