This file is indexed.

/usr/share/saods9/blt3.0/drawer.tcl is in saods9-blt 7.2+dfsg-4.

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
namespace eval blt::Drawer {
    set buttonPressed 0
    proc Initialize {} {
    }
}

bind DrawerHandle <Enter> { 
    if { !$blt::Drawer::buttonPressed } { 
	%W activate 
    } 
} 
bind DrawerHandle <Leave> { 
    if { !$blt::Drawer::buttonPressed } { 
	%W deactivate
    } 
}
bind DrawerHandle <KeyPress-Left> { 
    %W move -10 0 
}
bind DrawerHandle <KeyPress-Right> { 
    %W move 10  0 
}
bind DrawerHandle <KeyPress-Up> { 
    %W move 0 -10 
}
bind DrawerHandle <KeyPress-Down> { 
    %W move 0 10 
}
bind DrawerHandle <ButtonPress-1> { 
    set blt::Drawer::buttonPressed 1
    %W anchor %X %Y 
}
bind DrawerHandle <B1-Motion> { 
    %W mark %X %Y 
}
bind DrawerHandle <ButtonRelease-1> { 
    set blt::Drawer::buttonPressed 0
    %W set %X %Y 
}