summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
* [Bug #3020677] wish can't link reg1.2nijtmans2010-07-011-4/+4
|
* [Patch 3009998]: Replace binding procedures with ordinary event handlersjenglish2010-06-191-64/+23
| | | | | | | | | | | in win/tkWinScrlbr.c and carbon/tkMacOSXScrlbr.c. Simplifications enabled by previous change: * TkCreateBindingProcedure() and associated machinery no longer needed. * TkBindDeadWindow() no longer needed. * TK_DEFER_MODAL_LOOP and associated machinery no longer needed. * Tests related to C binding procedures no longer needed.
* * win/tkWinX.c (HandleIMEComposition): [Bug 2992129]: Ensure that alldkf2010-05-201-1/+5
| | | | | places that generate key events zero them out first; Tk relies on that being true for the generic parts of the fix for Bug 1924761.
* Fix [Bug #3002230]: tk_chooseDirectory returns garbage on cancelnijtmans2010-05-171-1/+8
|
* [Patch #2999920]: Optimize Internal Virtual event string operationsnijtmans2010-05-171-3/+23
| | | | [Bug #2987995]: Tk_getOpenFile returns garbage under described circumstances
* CONSTify TkCopyAndGlobalEval, TkpSetMainMenubar,nijtmans2010-05-101-3/+3
| | | | | TkpMenuNotifyToplevelCreate, and TkSetWindowMenuBar Bring Tk_CreateBinding doc and signature (param name) in line.
* * generic/tk.h: Bump patchlevel to 8.6b1.2 to distinguishdgp2010-05-032-3/+3
| | | | | | | | | * library/tk.tcl: CVS snapshots from earlier snapshots as well * unix/configure.in: as the 8.6b1 and 8.6b2 releases. * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* Unnessarary TCL_STORAGE_CLASS re-definitionsnijtmans2010-04-2910-58/+37
| | | | | | Make various functions MODULE_SCOPE TCHAR-related fixes, making al those files compile fine when TCHAR != char.
* Define OPENFILENAME_SIZE_VERSION_400 if needednijtmans2010-04-201-1/+5
|
* Make sure that tkWinPort.h is always includednijtmans2010-04-201-7/+7
| | | | | before tcl.h, otherwise the fallback for TCHAR might go off before the inclusion of <tchar.h>
* [Patch 2898255]: Filenames limit with Tk_GetFileName()nijtmans2010-04-191-3/+13
| | | | Assure modern style dialogs where available
* Fix [Bug 2987995]: Tk_GetOpenFile returns garbage under described circumstancesnijtmans2010-04-191-5/+5
|
* Fix [Patch 2986105]: conditionally defining strcasecmp/strncasecmpnijtmans2010-04-131-7/+24
|
* Add <wchar.h> to tkWinPort.h, andnijtmans2010-04-083-39/+33
| | | | | remove some earlier CYGWIN-related hacks which then are no longer necessary.
* regenerated with autoconf-2.59nijtmans2010-04-062-5/+5
| | | | | [Bug 2982540] configure and install* script files should always have LF
* Fix [Tcl Bug 2967340]: Static build failurenijtmans2010-03-123-6/+10
|
* Don't use -fvisibility=hidden for cygwin.nijtmans2010-03-041-36/+24
| | | | Make tkTestWinProcs const
* remove unused "dataKey" variablenijtmans2010-02-191-7/+2
|
* Put all Tk_OptionSpec for buttons and labelsnijtmans2010-02-181-59/+5
| | | | | | in const memory. With some changes to win32 and macosx, preventing direct writes to read-only memory.
* CONSTify everything related to Tk_ConfigSpecnijtmans2010-02-171-12/+2
|
* tkWindow.c/tkStubInit.c adapted from stub changes in Tclnijtmans2010-02-165-104/+68
| | | | | | | | | | | | tkArgv.c make defaultTable const tkScrollbar.c Store default for "-with" in static non-const memory tkWinInt.h make tkWinProcs const, and 5 tkWinX.c procs MODULE_SCOPE tkWinColor.c make sysColors const tkWinKey.c make keymap const tkWinScrlbr.c Simplify copying of "-with" default value. tkUnixWm.c make TkSetTransientFor static tests/textImage.test textImage-1.13 depends on hash-order
* use -pipe for gcc on win32 (mingw/cygwin)nijtmans2010-02-132-20/+4
| | | | | | make sure that TkpCmapStressed is exported clean up unused Tk_CreatePhotoOption Make more internal arrays "const"
* Make more internal tables "const"nijtmans2010-02-052-2/+3
| | | | tk*Decls.h (regenerated with new genStubs.tcl from Tcl)
* When a function has had a leading underscore for a number of years youpatthoyts2010-02-031-1/+5
| | | | | might like to think about it when you remove it without testing the other compilers used. Fixed dimwitted previous edit.
* fix more gcc warnings: missing initializernijtmans2010-01-2210-159/+308
| | | | | | | Eliminate use of __argc and __argv for CYGWIN Make cygwin configuration error into a warning: CYGWIN compilation works although there still are test failures.
* Add SPI_SETKEYBOARDCUES definition,nijtmans2010-01-141-1/+4
| | | | needed for original VC++ 6.0
* Eliminate tkpMenubuttonClassnijtmans2010-01-1310-41/+39
| | | | | make tkpButtonProcs CONST fix gcc warnings: missing initializer
* [Bug 2926819]: Factor out the pointer warping code a bit better and extend itdkf2010-01-061-1/+15
| | | | to work on OSX too.
* Patch 289825: Enable unlimited multiple file selection from the open files ↵patthoyts2010-01-051-112/+304
| | | | dialog
* Corrected rounding of coordinates when working with fonts. [Bug 2824916]dkf2010-01-051-3/+3
|
* Patch 2848897: Support the system keyboard cues setting on Windowspatthoyts2010-01-031-20/+77
| | | | | | | | | This patch by Anton Kovalenko adds support for the Windows system-wide UI setting that prevents accelerators being underlined unless the Alt key is pressed. Modified to support the system keyboard cues flag and to handle dynamic changes to the system parameters by the user.
* cast away const needed for msvc6 when calling Tcl_SetResultpatthoyts2010-01-031-2/+3
|
* Fix [Bug 1373712] and [Bug 1924761].dkf2010-01-021-1/+2
|
* Highlight for cascade items in torn-off menus is incorrect on Windows.patthoyts2009-12-271-3/+5
| | | | Applied patch from [Bug 2879927].
* CONSTify return values of TkKeysymToString,nijtmans2009-12-161-2/+2
| | | | | | | TkFindStateString, TkpGetString, TkpGetChar, which are all not supposed to be modified by the caller. In tkUtil.c this gets rid of a dangerous type cast.
* Fix dependancies on ${TKSTUBLIB} whennijtmans2009-12-121-5/+5
| | | | TCL_USE_STATIC_PACKAGES is defined
* win/Makefile.in Use tktest86.dll for all tests.nijtmans2009-12-022-32/+27
| | | | | | | | win/tkWinInt.h mark various functions MODULE_SCOPE generic/tkInt.decls make TkWinChildProc available in private stub table. [Bug #220600] and [Bug #220690]. generic/tkIntPlatDecls.h (regenerated) generic/tkStubInit.c (regenerated)
* win/configure (regenerated, previous version didn't match tcl.m4)nijtmans2009-12-021-9/+7
|
* Better dependancies in case of static build.nijtmans2009-11-301-10/+24
| | | | Generate tktest86.dll and tktest86.lib.
* Make all internal initializationnijtmans2009-11-293-25/+17
| | | | | | routines MODULE_SCOPE copy win/tcl.m4 from Tcl (latest) to Tk and regenerate win/configure
* Make sure the window is still present when handling delayed activation [Bug ↵patthoyts2009-11-221-4/+15
| | | | 2899949]
* Include tk stubs in the tktest link line due to nijtmans recent changespatthoyts2009-11-221-2/+2
|
* Compile tkTest.c and friends with Stubsnijtmans2009-11-201-3/+3
|
* Compile tkTest.c and friends with Stubsnijtmans2009-11-191-6/+62
|
* doc/GetHINSTANCE.3 Fix mentioned header filenijtmans2009-11-191-12/+8
| | | | | win/tcl.m4 Should have been checked in together with the 2009-08-09 check in of "win/configure"
* Undo the reversal of the win/Makefile.in changes, that part was ok.andreas_kupries2009-11-101-8/+3
|
* * unix/Makefile.in: Partially reverted Don Porter's 2009-10-20andreas_kupries2009-11-101-3/+8
| | | | | | * win/Makefile.in: commit. The OSX Cocoa code branch still needs tclInt.h and the internal headers, thus the TCL_PLATFORM directory. See tclMacOSXNotify.c for example.
* Fix for [Bug 1739613]Joe Mistachkin2009-11-021-2/+40
|
* [Bug 1825353] Fix tiny fixed font on Russian Windows.patthoyts2009-10-291-17/+20
| | | | | | This patch reverts a previous attempt to fix tiny fonts on Russian Windows. It fixes the issue by requesting a suitable fixed font instead of decoding the system stock font.
* Make the handling of the filter index the same as in GetFileNameW!dkf2009-10-221-33/+20
|