This file is indexed.

/usr/share/amsn/utils/voipcontrols/voipcontrols.tcl is in amsn-data 0.98.9-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
package require snit
package provide voipcontrols 0.1

snit::widget voipcontrol {

	option -orient -default "vertical" -readonly yes

	option -mixerframesize -default 10 -readonly yes
	option -buttonframesize -default 22 -readonly yes

	option -bg -default white -configuremethod SetBackground
	option -state -default normal -configuremethod SetState


	component mixerframe
	component mutecheckbutton
	component endcallbutton


	delegate option -endcallimage to endcallbutton as -image
	delegate option -endcallcommand to endcallbutton as -command
	delegate option -endcallstate to endcallbutton as -state

	delegate option -mutedimage to mutecheckbutton
	delegate option -unmutedimage to mutecheckbutton
	delegate option -mutevariable to mutecheckbutton
	delegate option -mutecommand to mutecheckbutton
	delegate option -mutestate to mutecheckbutton as -state

	delegate option -volumefrom to mixerframe
	delegate option -volumeto to mixerframe
	delegate option -levelfrom to mixerframe
	delegate option -levelto to mixerframe
	delegate option -volumevariable to mixerframe as -variable
	delegate option -volumecommand to mixerframe as -command
	delegate option -volumestate to mixerframe as -state

	delegate method setLevel to mixerframe

	delegate method Mute to mutecheckbutton
	delegate method UnMute to mutecheckbutton

	delegate option * to hull

	constructor {args} {

		set mixerframe [voipmixer ${win}.mixerframe]
		set buttonframe [frame ${win}.buttonframe]
		set mutecheckbutton [mutecheckbutton ${buttonframe}.mute]
		set endcallbutton [button ${buttonframe}.endcall -relief flat -image {}]

		$self configurelist $args
		#creating mixerframe again since $options(-orient) is not set yet and the component must exist when configurelist is called...
		destroy $mixerframe
		set mixerframe [voipmixer ${win}.mixerframe -orient $options(-orient) -mutecheckbutton $mutecheckbutton]
		$self configurelist $args

		if { $options(-orient) == "vertical" } {
			pack $mutecheckbutton $endcallbutton
			place $mixerframe -width $options(-mixerframesize) -relheight 1
			place $buttonframe -x $options(-mixerframesize) -width $options(-buttonframesize) -relheight 1
		} else {
			pack $mutecheckbutton $endcallbutton -side right
			place $mixerframe -height $options(-mixerframesize) -relwidth 1
			place $buttonframe -y $options(-mixerframesize) -height $options(-buttonframesize) -relwidth 1
		}
	}


	method SetBackground {option value} {
		set options($option) $value
		$win configure -background $value
		$mixerframe configure -background $value
		$win.buttonframe configure -background $value
		$mutecheckbutton configure -background $value
		$win.buttonframe.endcall configure -background $value
	}

	method SetState {option value} {
		set options($option) $value
		$mixerframe configure -state $value
		$endcallbutton configure -state $value
		$mutecheckbutton configure -state $value
	}

	method getSize {} {
		set size $options(-mixerframesize)
		incr size $options(-buttonframesize)
		return $size
	}
}


snit::widgetadaptor mutecheckbutton {

	variable muted

	option -mutedimage -default {} -configuremethod SetImage
	option -unmutedimage -default {} -configuremethod SetImage
	option -mutevariable -default {}
	option -mutecommand -default {}

	delegate option * to hull
	delegate method * to hull

	constructor {args} {

		installhull using button -relief flat -image {} -command [list $self invoke]

		$self configurelist $args
		
		set muted 0

		if {[info exists ::$options(-mutevariable)]} {
			if {[set ::$options(-mutevariable)]} {
				set muted 1
			} else {
				set muted 0
			}
		}
		$self configure -image $options(-unmutedimage)
	}

	method SetImage {option value} {
		set options($option) $value
		if {$muted} {
			$self configure -image $options(-mutedimage)
		} else {
			$self configure -image $options(-unmutedimage)
		}
	}

	method Mute {} {
		if {!$muted} {
			$self configure -image $options(-mutedimage)
			set muted 1

			if {[info exists ::$options(-mutevariable)]} {
				set ::$options(-mutevariable) $muted
			}
			if { $options(-mutecommand) != {} } {
				eval $options(-mutecommand)
			}
		}
	}

	method UnMute {} {
		if {$muted} {
			$self configure -image $options(-unmutedimage)
			set muted 0

			if {[info exists ::$options(-mutevariable)]} {
				set ::$options(-mutevariable) $muted
			}
			if { $options(-mutecommand) != {} } {
				eval $options(-mutecommand)
			}
		}
	}

	method invoke {} {
		if {$muted} {
			$self configure -image $options(-unmutedimage)
			set muted 0
		} else {
			$self configure -image $options(-mutedimage)
			set muted 1
		}

		if {[info exists ::$options(-mutevariable)]} {
			set ::$options(-mutevariable) $muted
		}
		if { $options(-mutecommand) != {} } {
			eval $options(-mutecommand)
		}
	}
}




snit::widget voipmixer {

	option -mutecheckbutton -readonly yes -default ""
	option -volumefrom -default -25
	option -volumeto -default 15
	option -levelfrom -default -20
	option -levelto -default 0

	option -selectsize -default 5 -configuremethod SetSelectSize

	option -variable -default {} -configuremethod SetVariable
	option -command -default {}

	option -orient -default "vertical" -readonly yes

	option -state -default normal

	delegate option * to hull

	constructor {args} {

		frame ${win}.fill
		place ${win}.fill -relheight 1 -relwidth 1

		frame ${win}.select -background black

		$self configurelist $args

		bind ${win}.select <B1-Motion> "$self Motion"

		if {![catch {tk windowingsystem} wsystem] && $wsystem != "x11"} {
			bind ${win} <MouseWheel> "$self MouseWheel"
			bind ${win}.fill <MouseWheel> "$self MouseWheel"
			bind ${win}.select <MouseWheel> "$self MouseWheel"
		} else {
			bind ${win} <ButtonPress-5> "$self MoveSelect 0"
			bind ${win}.fill <ButtonPress-5> "$self MoveSelect 0"
			bind ${win}.select <ButtonPress-5> "$self MoveSelect 0"
			bind ${win} <ButtonPress-4> "$self MoveSelect 1"
			bind ${win}.fill <ButtonPress-4> "$self MoveSelect 1"
			bind ${win}.select <ButtonPress-4> "$self MoveSelect 1"
		}
	}


	method MoveSelect {{up 1}} {
		if { $options(-state) != "normal"} {return}

		set val [expr {double([set ::$options(-variable)]) - double($options(-volumefrom))}]
		set val [expr {$val / (double($options(-volumeto)) - double($options(-volumefrom)))}]

		if {$up == 1} {
			set val [expr {$val + 0.1}]
		} else {
			set val [expr {$val - 0.1}]
		}

		if { $options(-orient) == "vertical" } {
			set size [winfo height ${win}]
			set max [expr {1-double($options(-selectsize))/double(${size})}]
			set rel [expr {1-$val}]
		} else {
			set size [winfo width ${win}]
			set max [expr {1-double($options(-selectsize))/double(${size})}]
			set rel $val
		}
		if {$rel > $max} {
			set rel $max
		} else {
			if {$rel < 0} {
				set rel 0
			}
		}

		if { $options(-mutecheckbutton) != ""} {
			if { $options(-orient) == "vertical" } {
				if {$rel >= 0.95} {
					$options(-mutecheckbutton) Mute
				} else {
					$options(-mutecheckbutton) UnMute
				}
			} else {
				if {$rel <= 0.05} {
					$options(-mutecheckbutton) Mute
				} else {
					$options(-mutecheckbutton) UnMute
				}
			}
		}

		if { $options(-orient) == "vertical" } {
			place configure ${win}.select -rely $rel
		} else {
			place configure ${win}.select -relx $rel
		}

		if {[info exists ::$options(-variable)]} {
			if { $options(-orient) == "vertical" } {
				set val [expr {1-$rel/$max}]
				set val [expr {$options(-volumefrom) + $val * ($options(-volumeto) - $options(-volumefrom))}]
				set ::$options(-variable) $val
				if { $options(-command) != {} } {
					eval $options(-command) $val
				}
			} else {
				set val [expr {$rel/$max}]
				set val [expr {$options(-volumefrom) + $val * ($options(-volumeto) - $options(-volumefrom))}]
				set ::$options(-variable) $val
				if { $options(-command) != {} } {
					eval $options(-command) $val
				}
			}
		}
	}


	method MouseWheel {} {
		if {%D>0} {
			$self MoveSelect 1
		} else {
			$self MoveSelect 0
		}
	}

	method Motion {} {
		if { $options(-state) != "normal"} {return}

		if { $options(-orient) == "vertical" } {
			set size [winfo height ${win}]
			set max [expr {1-double($options(-selectsize))/double(${size})}]
			set rel [expr {double([winfo pointery ${win}] - [winfo rooty ${win}])/double(${size})}]
		} else {
			set size [winfo width ${win}]
			set max [expr {1-double($options(-selectsize))/double(${size})}]
			set rel [expr {double([winfo pointerx ${win}] - [winfo rootx ${win}])/double(${size})}]
		}

		if {$rel > $max} {
			set rel $max
		} else {
			if {$rel < 0} {
				set rel 0
			}
		}


		if { $options(-mutecheckbutton) != "" } {
			if { $options(-orient) == "vertical" } {
				if {$rel >= 0.95} {
					$options(-mutecheckbutton) Mute
				} else {
					$options(-mutecheckbutton) UnMute
				}
			} else {
				if {$rel <= 0.05} {
					$options(-mutecheckbutton) Mute
				} else {
					$options(-mutecheckbutton) UnMute
				}
			}
		}

		if { $options(-orient) == "vertical" } {
			place configure ${win}.select -rely ${rel}
		} else {
			place configure ${win}.select -relx ${rel}
		}

		if {[info exists ::$options(-variable)]} {
			if { $options(-orient) == "vertical" } {
				set val [expr {1-$rel/$max}]
				set val [expr {$options(-volumefrom) + $val * ($options(-volumeto) - $options(-volumefrom))}]
				set ::$options(-variable) $val
				if { $options(-command) != {} } {
					eval $options(-command) $val
				}
			} else {
				set val [expr {$rel/$max}]
				set val [expr {$options(-volumefrom) + $val * ($options(-volumeto) - $options(-volumefrom))}]
				set ::$options(-variable) $val
				if { $options(-command) != {} } {
					eval $options(-command) $val
				}
			}
		}
	}

	method SetSelectSize {option value} {
		set options($option) $value
		if { $options(-orient) == "vertical" } {
			${win}.select configure -height $value
			place ${win}.select -height $value
		} else {
			${win}.select configure -width $value
			place ${win}.select -width $value
		}
	}

	method SetVariable { option value} {
		set options($option) $value

		if {![info exists ::$options(-variable)]
			|| [set ::$options(-variable)] > $options(-volumeto)
			|| [set ::$options(-variable)] < $options(-volumefrom)} {
			set ::$options(-variable) [expr {$options(-volumefrom) + 0.5 * (double($options(-volumeto)) - double($options(-volumefrom)))}]
		}

		set val [expr {double([set ::$options(-variable)]) - double($options(-volumefrom))}]
		set val [expr {$val / (double($options(-volumeto)) - double($options(-volumefrom)))}]
		if { $options(-orient) == "vertical" } {
			set val [expr {1-$val}]
			place ${win}.select -relx 0 -rely ${val} -relwidth 1 -height $options(-selectsize)
		} else {
			place ${win}.select -rely 0 -relx ${val} -relheight 1 -width $options(-selectsize)
		}

	}

	method setLevel {value} {
		if { $options(-state) != "normal"} {return}

		if {[expr {$value == "-inf"}] ||
		    [expr {$value == "inf"}] } { 
			set value $options(-levelfrom) 
		}

		set relsize [expr {double($value) - double($options(-levelfrom))}]
		set relsize [expr {$relsize / (double($options(-levelto)) - double($options(-levelfrom)))}]

		if { $options(-orient) == "vertical" } {
			place conf $win.fill -relheight $relsize
			place conf $win.fill -rely [expr {1-$relsize}]
		} else {
			place conf $win.fill -relwidth $relsize
		}
		
		if {[expr $relsize > 0.5]} {
			set R e1
			binary scan [binary format i [expr {int(2*(1.0-$relsize)*225)}]] H2 G
		} else {
			set G e1
			binary scan [binary format i [expr {int(2*$relsize*225)}]] H2 R
		}
		set B 00
		${win}.fill configure -background \#${R}${G}${B}
	}


}