blob: a151194cc27caf0dfbba657a8ad69dc5125ed8db (
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
|
#
# $Id: cursors.tcl,v 1.1 2006/10/31 01:42:27 hobbs Exp $
#
# Ttk 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*
|