This file is indexed.

/usr/share/amsn/balloon.tcl is in amsn-data 0.98.9-1ubuntu3.

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
##############################################################################
#
# balloon.tcl - procedures used by balloon help
#
# Copyright (C) 1996-1997 Stewart Allen
# 
# This is part of vtcl source code Adapted for 
# general purpose by Daniel Roche <dan@lectra.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

##############################################################################
#

::Version::setSubversionId {$Id: balloon.tcl 9254 2008-01-06 00:29:39Z tomhennigan $}

bind Bulle <Enter> {
    set Bulle(set) 0
    set Bulle(first) 1
    set win %W 
    set Bulle(id) [after 1000 [list balloon ${win} $Bulle(${win}) $BullePic(${win}) %X %Y]]
}

bind Bulle <Button> {
    set Bulle(first) 0
    kill_balloon
}

bind Bulle <Leave> {
    set Bulle(first) 0
    kill_balloon
}

bind Bulle <Motion> {
    if {$Bulle(set) == 0} {
        after cancel $Bulle(id)
	set win %W
        set Bulle(id) [after 1000 [list balloon ${win} $Bulle(${win}) $BullePic(${win}) %X %Y]]
    }
}

proc set_balloon {target message {pic ""}} {
    global Bulle
    global BullePic
    set Bulle(${target}) ${message}
    set BullePic(${target}) ${pic}
    bindtags ${target} "[bindtags ${target}] Bulle"
    bind $target <Destroy> "array unset Bulle ${target}; array unset BullePic ${target}"
}

proc change_balloon {target message {pic ""}} {
	kill_balloon
	global Bulle
    global BullePic
    set Bulle(${target}) ${message}
    set BullePic(${target}) ${pic}
}

proc kill_balloon { } {
    global Bulle
    catch {
	after cancel $Bulle(id)
	if {[winfo exists .balloon] == 1} {
		fade_balloon .balloon
	}
	set Bulle(set) 0
    }
}

proc fade_balloon {{w ".balloon"}} {
	if {![winfo exists $w]} { return; }
	
	if { [catch {set prev_alpha [wm attributes $w -alpha]} ] } {
		# Then the wm doesn't support the -alpha attribute.
		destroy $w
		return
	}
	set new_alpha [expr $prev_alpha - 0.05]
	set current_alpha [wm attributes $w -alpha $new_alpha]
	
	# Non-compositing wm's will return the previous alpha if the window hasn't faded, so we check for that.
	# CF. http://www.tcl.tk/man/tcl8.4/TkCmd/wm.htm#M12
	if {$new_alpha > 0.0 && $new_alpha != $prev_alpha} {
		after 25 [list fade_balloon $w]
	} else {
		destroy $w
	}
	
	return
}

proc balloon {target message pic {cx 0} {cy 0} {fonts ""} {mode "simple"} } {
    global Bulle
	
    #check that the mouse is over the target (fix a tk bug - in windows)
    if {[OnWin] && [eval winfo containing  [winfo pointerxy .]]!=$target} {
    	set Bulle(first) 0
    	kill_balloon
		return
    }
    
    #Last focus variable for "Mac OS X focus bug" with balloon
    set lastfocus [focus]
    
    after cancel "kill_balloon"
    if {$Bulle(first) == 1 } {
        set Bulle(first) 2
			
		if { $cx == 0 && $cy == 0 } {
			set x [expr {[winfo rootx ${target}] + ([winfo width ${target}]/2)}]
			set y [expr {[winfo rooty ${target}] + [winfo height ${target}] + 2}]
		} else {
			set x [expr {$cx + 12}]
			set y [expr {$cy + 2}]
		}
		
		if { [catch { toplevel .balloon -bg [::skin::getKey balloonborder]}] != 0 } {
			destroy .balloon
			toplevel .balloon -bg [::skin::getKey balloonborder]
		}
		
		#Standard way to show balloon on Mac OS X (aqua), show balloon in white for Mac OS X and skinnable balloons for others platforms
		if { [OnMac] } {
			destroy .balloon
			toplevel .balloon -relief flat -bg #C3C3C3 -class Balloonhelp
			::tk::unsupported::MacWindowStyle style .balloon help none
		} else {
			wm overrideredirect .balloon 1
			if { [OnWin] } { catch { wm attributes .balloon -alpha [::skin::getKey balloonalpha 0.9] } }
		}

		frame .balloon.f -bg [::skin::getKey balloonbackground]
		
		if { [OnWin] } {
			set bw [::skin::getKey balloonborderwidth]
		} else {
			set bw [expr {[::skin::getKey balloonborderwidth] - 1 }]
			if {$bw < 0} {
				set bw 0
			}
		}
		pack .balloon.f -padx $bw -pady $bw
		
		if { [string equal -length 11 $pic "--command--"] } {
			set command [string range $pic 11 end]
			set pic [eval $command]
		}
		
		if { $pic != "" && ![catch {$pic cget -file}]} {
			label .balloon.f.pic -image $pic -bg [::skin::getKey balloonbackground]
			set iwidth [image width $pic]
			pack .balloon.f.pic -side left
		} else {
			set iwidth 0
		}

		set wlength [expr {[winfo screenwidth .] - $x - 15 - $iwidth }]
		#If available width is less than 200 pixels, make the balloon
		#200 pixels width, and move it to the left so it's inside the screen
		if { $wlength < 200 } {
			set x [expr { [winfo screenwidth . ] - 200 - 15 - $iwidth } ]
			set wlength 200
		}

		if { $mode == "complex" } {
			set i 1;
			foreach msg_part $message font_part $fonts {
				if { [string equal -length 11 $msg_part "--command--"] } {
					set command [string range $message 11 end]
					set message [eval $command]
				}
				if { $font_part == "" } {
					set font_part [::skin::getKey balloonfont]
				}
				
				label ".balloon.f.l$i" \
				-text ${msg_part} -relief flat \
				-bg [::skin::getKey balloonbackground] -fg [::skin::getKey balloontext] -padx 2 -pady 0 \
				-anchor w -font $font_part -justify left -wraplength $wlength
				pack ".balloon.f.l$i" -side top -fill x
				incr i
			}
		} elseif { $mode == "simple" } {
			if { [string equal -length 11 $message "--command--"] } {
				set command [string range $message 11 end]
				set message [eval $command]
			}
				label .balloon.f.l \
				-text ${message} -relief flat \
				-bg [::skin::getKey balloonbackground] -fg [::skin::getKey balloontext] -padx 2 -pady 0 -anchor w \
				-font [::skin::getKey balloonfont] -justify left -wraplength $wlength
			pack .balloon.f.l -side left
		} else {
			error "Optional parameter mode must be either \"simple\" or \"complex\"."
		}

		if { [OnWin] } {
			set bw [::skin::getKey balloonborderwidth]
		} else {
			set bw [expr {[::skin::getKey balloonborderwidth] - 1 }]
			if {$bw < 0} {
				set bw 0
			}
		}
		
		wm geometry .balloon +${x}+${y}
		
		if { [OnMac] } {
			#Set alpha value of balloon. This is done after setting the geometry to
			#avoid the balloon to be placed at a random position on screen.
			catch { wm attributes .balloon -alpha [::skin::getKey balloonalpha 0.9] }

			#Focus last windows in AquaTK (to fix "Mac OS X focus bug")
			if { $lastfocus!="" } {
				after 50 "catch {focus -force $lastfocus}"
			}
		}
			
		set Bulle(set) 1
		after 10000 "kill_balloon"
    }
}