summaryrefslogtreecommitdiffstats
path: root/win/tkWinCursor.c
Commit message (Collapse)AuthorAgeFilesLines
* more reorganization of error codes: safety is common failure modedkf2012-07-301-1/+1
| | | FossilOrigin-Name: 5058af7c9a91e1d51c12121b7773b3ff31205a81
* a few more placesdkf2012-07-241-9/+11
| | | FossilOrigin-Name: 86dc9bdcfd94dd76a3abfd36a1a08dbc7bfe7aed
* Purge RCS Keywordsdgp2011-06-081-2/+0
|\ | | | | FossilOrigin-Name: b8a1385217cc117d6962c234f0a4d28ff10e089c
| * Purge RCS Keywords.dgp2011-06-081-2/+0
| |\ | | | | | | FossilOrigin-Name: 3f95fbe0ce14948fd409844b915c18ef25d7d0a0
| | * Purge RCS Keywords.dgp2011-06-081-2/+0
| | | | | | | | | FossilOrigin-Name: a74f32bb6369d3e66e661145c81a98a14ed79b3a
| | * Backported fix for bug #776646 which makes hand2 and fleur native on windows.patthoyts2004-01-281-3/+12
| | | | | | | | | FossilOrigin-Name: 41e6f000686239707adc6bba8a13f26d3c987d6e
| | * * win/tkWinCursor.c (TkGetCursorByName): Fix bug 420510 to providehobbs2003-07-191-2/+2
| | | | | | | | | | | | | | | | | | consistency between unix and windows -cursor option. (thoyts) FossilOrigin-Name: 92e27acb8077174acf762357736bd77e264086b2
| * | [Patch 2542828] use stock Win32 help arrow cursor when question_arrow ↵patthoyts2009-02-231-1/+5
| | | | | | | | | | | | | | | requested (danckaert) FossilOrigin-Name: 590ad193e4e6513fb41029021b68a31803122da5
* | | Remove casts from uses of ckalloc/ckfree/... now that Tcl declares them to bedkf2011-03-121-8/+7
| | | | | | | | | | | | | | | using useful casts internally. FossilOrigin-Name: 142e016e7b17277d81257da90477297eb9aaa05a
* | | [FRQ 2965056]: Windows build with -DUNICODEnijtmans2010-10-061-9/+3
| | | | | | | | | FossilOrigin-Name: e7d9b5928a07c36a17fb6bc8297bff508fa7f219
* | | Make compilable with -DUNICODE, or mark files with a TODO which are not done ↵nijtmans2010-09-101-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | yet. tkWinPort.h: mingw/cygwin fixes: <tchar.h> should always be included here. FossilOrigin-Name: bf1b459784d2582097fc588b20ad9ef01b575112
* | | [Patch 2542828] use stock Win32 help arrow cursor for question_arrowpatthoyts2009-02-221-1/+5
| | | | | | | | | FossilOrigin-Name: 640e20fb676b23bd162740f09efbf032c53b5632
* | | Add "const" to many internalnijtmans2008-10-171-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | const tables, so those will be put by the C-compiler in the TEXT segment in stead of the DATA segment. This makes those table sharable in shared libraries. FossilOrigin-Name: da3819dbb53904a418b6098f3b103df483c53304
* | | Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-271-4/+4
|/ / | | | | FossilOrigin-Name: ddfd8bb6f7ecfa71a218a5dc88075a419e3e1d5c
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| | | | | | FossilOrigin-Name: e7868b44c1e7bffc63a053b87a96a4499757f80d
* | Assorted minor cleanups.dkf2007-09-081-2/+2
| | | | | | FossilOrigin-Name: 2a5cff56d4709ff5cc546122512d6375136e11a2
* | ANSIficationdkf2005-12-021-39/+48
| | | | | | FossilOrigin-Name: 1be88f1039a57d37b1f4567340d02ca39ddb3575
* | * win/tkWinCursor.c: Fix for bug #776646 for a native hand2 andpatthoyts2003-07-241-3/+12
| | | | | | | | | | | | | | fleur (move) cursor under win. * tests/cursor.test: Check that documented cursors are available. FossilOrigin-Name: c3ebf298fe6cab5c1c9ba5f43f0dde859c1052f2
* | * win/tkWinCursor.c (TkGetCursorByName): Fix bug 420510 to providepatthoyts2003-07-181-2/+2
|/ | | | | | consistency between unix and windows -cursor option. FossilOrigin-Name: cbf38f1a3d0e52e3dc3ae63cc78b01cb0a976705
* Applied companion patch for Tcl Patch 585105,dgp2002-08-051-3/+3
| | | | | | | | | | | | | | | | | | | | | | | updating Tk to use Tcl 8.4's fully CONST-ified interface, and fully CONSTifying Tk at the same time. This patch includes purging Tk of its last direct access to interp->result. [Bug 589853] The substantial changes include copying event sequence strings into Tcl_DStrings in tkBind.c, and copying [text] indices into Tcl_DStrings because parsing them involved overwriting them. If this causes performance trouble, that can be resolved by further converting them to Tcl_Obj's. The #defines USE_NON_CONST and USE_COMPAT_CONST have the same effect for Tk as they do for Tcl. (They actually change tcl.h) FossilOrigin-Name: 5603f01aa35a127f83db9bb68f3b1ff9e5bb64de
* Refixed cursor handling on Windows, and added tests to enforce it.dkf2002-06-131-30/+43
| | | FossilOrigin-Name: 4cbec30087ab76fe37f011d2eef28bda678f043f
* * win/tkWinCursor.c (TkGetCursorByName): reverted fix fromhobbs2002-06-121-42/+29
| | | | | | | 2002-06-06 because it broke the ability to use built-in cursors like left_ptr. FossilOrigin-Name: 9dee7eedf2f29d6b8eeb6f8e9c2250c1fdb95ad4
* D'oh! Next time, I should at least check I've got the variable names right.dkf2002-06-111-3/+3
| | | FossilOrigin-Name: 490767a8ed3439f7f419a237d2ca7e7386868e3a
* Cursor name parsing was quite broken compared with Unix; cursor names aredkf2002-06-061-29/+42
| | | | | | supposed to be first-and-foremost a list... FossilOrigin-Name: a146a14fbcd4ed9776f6e44e4ecf158d6db858f6
* * Updated callers of Tcl_SplitList and Tcl_Merge.dgp2002-01-251-2/+2
| | | | | | | | | | | * Updated callers of Tcl_GetStringResult. Rewrote PrintScrollFractions to ScrollFractions to stop scribbling directly on interp->result. * Updated callers of Tcl_GetVar, Tcl_GetVar2 * Updated callers of Tcl_SplitPath, Tcl_JoinPath, and Tcl_TranslateFileName. FossilOrigin-Name: 933dcfe881579bb3925ff2a05e925a0bd8d67087
* * win/tkWinCursor.c: added support for Windows cursors tohobbs1999-12-161-1/+30
| | | | | | | | | | | | TkGetCursorByName (.ani, .cur) using -cursor @<filename> (Ascher) [Bug: 1350] * win/tkWinWm.c: fixed 'wm deiconify' to update position of the toplevel if event is waiting before mapping. (Mao) [Bug: 3687] This removes the need for 'update idle' before 'wm deiconify' on Windows. FossilOrigin-Name: e7aa2a517ac9d86186daa5274230776997172f85
* * Merged 8.1 branch into the main trunkstanton1999-04-161-4/+3
| | | FossilOrigin-Name: 1120dc4257448ed1955333e682de48e2940cc741
* Replaced SCCS strings, fixed binary filesstanton1998-09-141-1/+1
| | | FossilOrigin-Name: fb58b663f313796e8ed3115f92d657f0cae1d575
* Initial revisionrjohnson1998-04-011-0/+210
FossilOrigin-Name: 2bf55ca9aa942b581137b9f474da5ad9c1480de4