Upgrade to Tcl/Tk 8.5b2
[msysgit.git] / mingw / lib / tk8.5 / ttk / cursors.tcl
bloba151194cc27caf0dfbba657a8ad69dc5125ed8db
2 # $Id: cursors.tcl,v 1.1 2006/10/31 01:42:27 hobbs Exp $
4 # Ttk package: Symbolic cursor names.
6 # @@@ TODO: Figure out appropriate platform-specific cursors
7 # for the various functions.
10 namespace eval ttk {
12 variable Cursors
14 switch -glob $::tcl_platform(platform) {
15 "windows" {
16 array set Cursors {
17 hresize sb_h_double_arrow
18 vresize sb_v_double_arrow
19 seresize size_nw_se
23 "unix" -
24 * {
25 array set Cursors {
26 hresize sb_h_double_arrow
27 vresize sb_v_double_arrow
28 seresize bottom_right_corner
35 #*EOF*