summaryrefslogtreecommitdiffstats
path: root/demos/www-options.tcl
blob: 0d31e93e58752be386db24475677b306144e4125 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
proc DemoInternetOptions {} {

	set T .f2.f1.t

	set height [font metrics [$T cget -font] -linespace]
	if {$height < 18} {
		set height 18
	}

	#
	# Configure the treectrl widget
	#

	$T configure -showroot no -showbuttons no -showlines no -itemheight $height \
		-selectmode browse

	InitPics internet-*

	#
	# Create columns
	#

	$T column create -text "Internet Options" -tag C0

	$T configure -treecolumn C0

	#
	# Create elements
	#

	$T state define check
	$T state define radio
	$T state define on

	$T element create e1 image -image {
		internet-check-on {check on}
		internet-check-off {check}
		internet-radio-on {radio on}
		internet-radio-off {radio}
	}
	$T element create e2 text -fill [list $::SystemHighlightText {selected focus}]
	$T element create e3 rect -fill [list $::SystemHighlight {selected focus}] -showfocus yes

	#
	# Create styles using the elements
	#

	set S [$T style create s1]
	$T style elements $S {e3 e1 e2}
	$T style layout $S e1 -padx {0 4} -expand ns
	$T style layout $S e2 -expand ns
	$T style layout $S e3 -union [list e2] -iexpand ns -ipadx 2

	#
	# Create items and assign styles
	#

	set parentList [list root {} {} {} {} {} {}]
	set parent root
	foreach {depth setting text option group} {
		0 print "Printing" "" ""
			1 off "Print background colors and images" "o1" ""
		0 search "Search from Address bar" "" ""
			1 search "When searching" "" ""
				2 off "Display results, and go to the most likely sites" "o2" "r1"
				2 off "Do not search from the Address bar" "o3" "r1"
				2 off "Just display the results in the main window" "o4" "r1"
				2 on "Just go to the most likely site" "o5" "r1"
		0 security "Security" "" ""
			1 on "Check for publisher's certificate revocation" "o5" ""
			1 off "Check for server certificate revocation (requires restart)" "o6" ""
	} {
		set item [$T item create]
		$T item style set $item C0 s1
		$T item element configure $item C0 e2 -text $text
		set ::Option(option,$item) $option
		set ::Option(group,$item) $group
		if {($setting eq "on") || ($setting eq "off")} {
			set ::Option(setting,$item) $setting
			if {$group eq ""} {
				$T item state set $item check
				if {$setting eq "on"} {
					$T item state set $item on
				}
			} else {
				if {$setting eq "on"} {
					set ::Option(current,$group) $item
					$T item state set $item on
				}
				$T item state set $item radio
			}
		} else {
			$T item element configure $item C0 e1 -image internet-$setting
		}
		$T item lastchild [lindex $parentList $depth] $item
		incr depth
		set parentList [lreplace $parentList $depth $depth $item]
	}

	bind DemoInternetOptions <Double-ButtonPress-1> {
		TreeCtrl::DoubleButton1 %W %x %y
	}
	bind DemoInternetOptions <ButtonPress-1> {
		TreeCtrl::OptionButton1 %W %x %y
		break
	}

	bindtags $T [list $T DemoInternetOptions TreeCtrl [winfo toplevel $T] all]

	return
}
proc TreeCtrl::OptionButton1 {T x y} {
	variable Priv
	focus $T
	set id [$T identify $x $y]
	if {[lindex $id 0] eq "header"} {
		ButtonPress1 $T $x $y
	} elseif {$id eq ""} {
		set Priv(buttonMode) ""
	} else {
		set Priv(buttonMode) ""
		set item [lindex $id 1]
		$T selection modify $item all
		$T activate $item
		if {$::Option(option,$item) eq ""} return
		set group $::Option(group,$item)
		# a checkbutton
		if {$group eq ""} {
			$T item state set $item ~on
			if {$::Option(setting,$item) eq "on"} {
				set setting off
			} else {
				set setting on
			}
			set ::Option(setting,$item) $setting
		# a radiobutton
		} else {
			set current $::Option(current,$group)
			if {$current eq $item} return
			$T item state set $current !on
			$T item state set $item on
			set ::Option(setting,$item) on
			set ::Option(current,$group) $item
		}
	}
	return
}


# Alternate implementation that does not rely on run-time states
proc DemoInternetOptions_2 {} {

	set T .f2.f1.t

	set height [font metrics [$T cget -font] -linespace]
	if {$height < 18} {
		set height 18
	}

	#
	# Configure the treectrl widget
	#

	$T configure -showroot no -showbuttons no -showlines no -itemheight $height \
		-selectmode browse

	InitPics internet-*

	#
	# Create columns
	#

	$T column create -text "Internet Options"

	#
	# Create elements
	#

	$T element create e1 image
	$T element create e2 text -fill [list $::SystemHighlightText {selected focus}]
	$T element create e3 rect -fill [list $::SystemHighlight {selected focus}] -showfocus yes

	#
	# Create styles using the elements
	#

	set S [$T style create s1]
	$T style elements $S {e3 e1 e2}
	$T style layout $S e1 -padx {0 4} -expand ns
	$T style layout $S e2 -expand ns
	$T style layout $S e3 -union [list e2] -iexpand ns -ipadx 2

	#
	# Create items and assign styles
	#

	set parentList [list root {} {} {} {} {} {}]
	set parent root
	foreach {depth setting text option group} {
		0 print "Printing" "" ""
			1 off "Print background colors and images" "o1" ""
		0 search "Search from Address bar" "" ""
			1 search "When searching" "" ""
				2 off "Display results, and go to the most likely sites" "o2" "r1"
				2 off "Do not search from the Address bar" "o3" "r1"
				2 off "Just display the results in the main window" "o4" "r1"
				2 on "Just go to the most likely site" "o5" "r1"
		0 security "Security" "" ""
			1 on "Check for publisher's certificate revocation" "o5" ""
			1 off "Check for server certificate revocation (requires restart)" "o6" ""
	} {
		set item [$T item create]
		$T item style set $item 0 s1
		$T item element configure $item 0 e2 -text $text
		set ::Option(option,$item) $option
		set ::Option(group,$item) $group
		if {$setting eq "on" || $setting eq "off"} {
			set ::Option(setting,$item) $setting
			if {$group eq ""} {
				set img internet-check-$setting
				$T item element configure $item 0 e1 -image $img
			} else {
				if {$setting eq "on"} {
					set ::Option(current,$group) $item
				}
				set img internet-radio-$setting
				$T item element configure $item 0 e1 -image $img
			}
		} else {
			$T item element configure $item 0 e1 -image internet-$setting
		}
		$T item lastchild [lindex $parentList $depth] $item
		incr depth
		set parentList [lreplace $parentList $depth $depth $item]
	}

	bind DemoInternetOptions <Double-ButtonPress-1> {
		TreeCtrl::DoubleButton1 %W %x %y
	}
	bind DemoInternetOptions <ButtonPress-1> {
		TreeCtrl::OptionButton1 %W %x %y
		break
	}

	bindtags $T [list $T DemoInternetOptions TreeCtrl [winfo toplevel $T] all]

	return
}
proc TreeCtrl::OptionButton1_2 {T x y} {
	variable Priv
	focus $T
	set id [$T identify $x $y]
	if {[lindex $id 0] eq "header"} {
		ButtonPress1 $T $x $y
	} elseif {$id eq ""} {
		set Priv(buttonMode) ""
	} else {
		set Priv(buttonMode) ""
		set item [lindex $id 1]
		$T selection modify $item all
		$T activate $item
		if {$::Option(option,$item) eq ""} return
		set group $::Option(group,$item)
		# a checkbutton
		if {$group eq ""} {
			if {$::Option(setting,$item) eq "on"} {
				set setting off
			} else {
				set setting on
			}
			$T item element configure $item 0 e1 -image internet-check-$setting
			set ::Option(setting,$item) $setting
		# a radiobutton
		} else {
			set current $::Option(current,$group)
			if {$current eq $item} return
			$T item element configure $current 0 e1 -image internet-radio-off
			$T item element configure $item 0 e1 -image internet-radio-on
			set ::Option(setting,$item) on
			set ::Option(current,$group) $item
		}
	}
	return
}