summaryrefslogtreecommitdiffstats
path: root/macosx/README
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/README')
-rw-r--r--macosx/README26
1 files changed, 25 insertions, 1 deletions
diff --git a/macosx/README b/macosx/README
index b354bd0..d84ec54 100644
--- a/macosx/README
+++ b/macosx/README
@@ -1,7 +1,7 @@
TclTkAqua README
----------------
-RCS: @(#) $Id: README,v 1.3 2002/10/29 00:51:12 das Exp $
+RCS: @(#) $Id: README,v 1.4 2003/02/11 07:26:18 wolfsuit Exp $
This is the README file for the Mac OS X native versions of Tcl & Tk.
@@ -90,6 +90,30 @@ allows to dis/enable antialiasing on the fly from tcl (even for existing text).
libraries (.dylib) and not MachO bundles, at present loading of MachO bundles is
not supported.
+- Scrollbars: There are two scrollbar variants in Aqua, normal & small. The
+normal scrollbar has a small dimension of 16, the small variant 12. Access
+to the small variant was added in Tk 8.4.3.
+
+- Cursors: You can now put up and spin the Classic MacOS spinner, and the
+counting hands and watch cursor. The way this is done is each of the spinners
+have a base name:
+
+ spinning: The circular B&W circular spinner
+ countinguphand: The counting up hand
+ countingdownhand: The counting down hand
+ countingupanddownhand: The counting up then down hand
+ watch: The watch cursor
+
+Then to get the sequential variants, add an integer to the end of the base
+name. So, for instance this code will spin the spinner:
+
+proc spinCursor {widget count} {
+ $widget configure -cursor spinning$count
+ after 100 spinCursor [incr count]
+}
+
+This was added in Tk 8.4.3
+
3. Building TclTkAqua
---------------------