summaryrefslogtreecommitdiffstats
path: root/demos/www-options.tcl
blob: bf2548dfa986131709eafdb97302f037804d06dd (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
286
287
288
289
290
291
292
293
294
295
# RCS: @(#) $Id: www-options.tcl,v 1.14 2006/11/30 02:41:39 treectrl Exp $

proc DemoInternetOptions {} {

    global Options

    set T [DemoList]

    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" -tags C0

    $T configure -treecolumn C0

    #
    # Create elements
    #

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

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

    #
    # Create styles using the elements
    #

    set S [$T style create STYLE]
    $T style elements $S {elemRectSel elemImg elemTxt}
    $T style layout $S elemImg -padx {0 4} -expand ns
    $T style layout $S elemTxt -expand ns
    $T style layout $S elemRectSel -union [list elemTxt] -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 STYLE
	$T item element configure $item C0 elemTxt -text $text
	set Options(option,$item) $option
	set Options(group,$item) $group
	if {($setting eq "on") || ($setting eq "off")} {
	    set Options(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 Options(current,$group) $item
		    $T item state set $item on
		}
		$T item state set $item radio
	    }
	} else {
	    $T item element configure $item C0 elemImg -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> {
	OptionButton1 %W %x %y
	break
    }

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

    return
}

proc OptionButton1 {T x y} {
    variable TreeCtrl::Priv
    global Options
    focus $T
    set id [$T identify $x $y]
    if {[lindex $id 0] eq "header"} {
	TreeCtrl::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 {$Options(option,$item) eq ""} return
	set group $Options(group,$item)
	# a checkbutton
	if {$group eq ""} {
	    $T item state set $item ~on
	    if {$Options(setting,$item) eq "on"} {
		set setting off
	    } else {
		set setting on
	    }
	    set Options(setting,$item) $setting
	# a radiobutton
	} else {
	    set current $Options(current,$group)
	    if {$current eq $item} return
	    $T item state set $current !on
	    $T item state set $item on
	    set Options(setting,$item) on
	    set Options(current,$group) $item
	}
    }
    return
}


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

    global Options

    set T [DemoList]

    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 elemImg image
    $T element create elemTxt text -fill [list $::SystemHighlightText {selected focus}]
    $T element create elemRectSel rect -fill [list $::SystemHighlight {selected focus}] -showfocus yes

    #
    # Create styles using the elements
    #

    set S [$T style create STYLE]
    $T style elements $S {elemRectSel elemImg elemTxt}
    $T style layout $S elemImg -padx {0 4} -expand ns
    $T style layout $S elemTxt -expand ns
    $T style layout $S elemRectSel -union [list elemTxt] -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 STYLE
	$T item element configure $item 0 elemTxt -text $text
	set Options(option,$item) $option
	set Options(group,$item) $group
	if {$setting eq "on" || $setting eq "off"} {
	    set Options(setting,$item) $setting
	    if {$group eq ""} {
		set img internet-check-$setting
		$T item element configure $item 0 elemImg -image $img
	    } else {
		if {$setting eq "on"} {
		    set Options(current,$group) $item
		}
		set img internet-radio-$setting
		$T item element configure $item 0 elemImg -image $img
	    }
	} else {
	    $T item element configure $item 0 elemImg -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> {
	OptionButton1 %W %x %y
	break
    }

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

    return
}

proc OptionButton1_2 {T x y} {
    variable TreeCtrl::Priv
    global Options
    focus $T
    set id [$T identify $x $y]
    if {[lindex $id 0] eq "header"} {
	TreeCtrl::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 {$Options(option,$item) eq ""} return
	set group $Options(group,$item)
	# a checkbutton
	if {$group eq ""} {
	    if {$Options(setting,$item) eq "on"} {
		set setting off
	    } else {
		set setting on
	    }
	    $T item element configure $item 0 elemImg -image internet-check-$setting
	    set Options(setting,$item) $setting
	# a radiobutton
	} else {
	    set current $Options(current,$group)
	    if {$current eq $item} return
	    $T item element configure $current 0 elemImg -image internet-radio-off
	    $T item element configure $item 0 elemImg -image internet-radio-on
	    set Options(setting,$item) on
	    set Options(current,$group) $item
	}
    }
    return
}