diff options
author | wolfsuit <wolfsuit> | 2003-02-11 07:26:18 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit> | 2003-02-11 07:26:18 (GMT) |
commit | 7e1886554eaaffb141641625bb597ff69c58d6b7 (patch) | |
tree | 6701c6c6a9b18325b6545d5bbfca5895d52d6af9 /macosx/README | |
parent | c059cbbeeb14132e2490fcab534919dacb4f764e (diff) | |
download | tk-7e1886554eaaffb141641625bb597ff69c58d6b7.zip tk-7e1886554eaaffb141641625bb597ff69c58d6b7.tar.gz tk-7e1886554eaaffb141641625bb597ff69c58d6b7.tar.bz2 |
2003-02-10 Jim Ingham <jingham@apple.com>
* macosx/tkMacOSXCursor.c (TkMacOSXInstallCursor): Set all theme
cursors using SetThemeCursor or SetAnimatedThemeCursors.
(TkGetCursorByName): Use the theme cursors for arrow, ibeam, etc.
Allow animatedCursor{NUM} form for an animated cursor with count.
(TkpSetCursor): Don't reset the cursor if there is no change.
* macosx/tkMacOSXMouseEvent.c (GeneratePollingEvents): Don't
directly call TkMacOSXInstallCursor, it gets called by the call
to Tk_UpdatePointer immediately above.
Diffstat (limited to 'macosx/README')
-rw-r--r-- | macosx/README | 26 |
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 --------------------- |