/usr/share/tcltk/tile0.8.2/cursors.tcl is in tk-tile 0.8.2-2.2.
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 | #
# cursors.tcl,v 1.3 2006/11/05 18:40:48 jenglish Exp
#
# Tile package: Symbolic cursor names.
#
# @@@ TODO: Figure out appropriate platform-specific cursors
# for the various functions.
#
namespace eval ttk {
variable Cursors
switch -glob $::tcl_platform(platform) {
"windows" {
array set Cursors {
hresize sb_h_double_arrow
vresize sb_v_double_arrow
seresize size_nw_se
}
}
"unix" -
* {
array set Cursors {
hresize sb_h_double_arrow
vresize sb_v_double_arrow
seresize bottom_right_corner
}
}
}
}
#*EOF*
|