summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ANSIfydkf2005-11-0411-3258/+3137
|
* ANSIfydkf2005-11-0410-2019/+1981
|
* fix for count displaylines bugvincentdarley2005-10-313-2/+42
|
* Whitespace/style/ANSI improvementsdkf2005-10-218-2876/+2785
|
* * generic/tkMain.c: Rewrote code that sets the ::argv valuedgp2005-10-182-24/+30
| | | | | | to be sure conversion from the system encoding is complete before any processing sensitive to list-special characters is done. [Bug 1328926].
* * macosx/tkMacOSXScrlbr.c (UpdateControlValues): check geomMgrPtrhobbs2005-10-182-16/+20
| | | | is valid before checking type
* Format for style and remove non-ANSI declsdkf2005-10-171-279/+278
|
* Format for style and remove non-ANSI declsdkf2005-10-171-587/+585
|
* whitespace cleaningdkf2005-10-171-5/+5
|
* Format for style and remove non-ANSI declsdkf2005-10-171-345/+335
|
* Format for style and remove non-ANSI declarationsdkf2005-10-171-421/+386
|
* Formatting cleanup and remove non-ANSI declsdkf2005-10-171-160/+185
|
* Style cleanup and removal of non-ANSI declsdkf2005-10-171-540/+596
|
* * library/menu.tcl (::tk::MenuUnpost): remove leftover ] fromhobbs2005-10-162-2/+7
| | | | string equal mods of 2005-07-25. (sowadsky)
* Permit building al debug builds as well as release buildspatthoyts2005-10-141-14/+79
|
* * win/tkWinSend.c: Avoid using tcl internal headers and fix topatthoyts2005-10-144-17/+20
| | | | | * win/tkWinSendCom.h: correctly link on all types of build (was * win/tkWinSendCom.c: broken in static,msvcrt builds).
* Tidy updkf2005-10-141-1268/+1194
|
* Undo accidental checkindkf2005-10-122-7/+2
|
* Arrange the test suite so that it only accesses images in the same directory.dkf2005-10-1214-41/+317
| | | | This enables packaging of the test suite as a starkit.
* * generic/tkConfig.c (Tk_DeleteOptionTable, Tk_CreateOptionTable):hobbs2005-10-102-3/+6
| | | | properly alloc/delete one more option. [Bug 1319720] (melbardis)
* * macosx/tkMacOSXInt.h: Move MODULE_SCOPE defn to tkInt.h and addhobbs2005-10-103-10/+45
| | | | | * generic/tkInt.h: WORDS_BIGENDIAN checks that will work with OS X universal binary compiles. (steffen)
* * generic/tkMenu.c (TkSetWindowMenuBar): do not call TkMenuInit ifhobbs2005-10-102-2/+17
| | | | | | the winPtr indicates TK_ALREADY_DEAD. This prevents reinit that creates a Tk exit handler after all exit handlers should be called. [Bug 749908, 1322294]
* whitespace changes onlyhobbs2005-10-101-201/+199
|
* tip256 implementationvincentdarley2005-10-1016-160/+516
|
* * library/dialog.tcl (::tk_dialog): add tkwait visibility beforehobbs2005-10-052-3/+8
| | | | grab. [Bug 1216775]
* * win/tkWinDialog.c (ChooseDirectoryValidateProc): reset storedhobbs2005-10-052-449/+6
| | | | | path to "" if it doesn't exist and -mustexist is true. [Bug 1309218] Remove old-style dir chooser (no longer used).
* Fixed bug #1311734chengyemao2005-10-052-5/+8
|
* * macosx/tkMacOSXInt.h: add MODULE_SCOPE definition check forhobbs2005-10-042-1/+15
| | | | | extension writers that access private headers on OS X and don't define it in configure.
* Spelling mistake in el.msg [Bug #1305708]bagnonm2005-10-031-1/+1
|
* temp patch to restore HEAD builddgp2005-09-301-1/+2
|
* * unix/tkUnixPort.h: Disabled inclusion of the private Tcl headerdgp2005-09-284-6/+44
| | | | | | | | | | * win/tkWinPort.h: file tclInt.h. Tk ought to have a tiny and shrinking number of calls of private Tcl routines. Each Tk source file doing this should follow the convention in the macosx port and have its own #include "tclInt.h". * generic/tkEvent.c: Disabled calls to private Tcl routine TclInExit(). See comment in TkCreateExitHandler() for full rationale.
* Regendkf2005-09-214-440/+472
|
* Tk-internal exit handler improvements. [Bug 749908]dkf2005-09-215-2137/+1780
|
* Get rid of constness warningdkf2005-09-141-3/+6
|
* Oops, varnames were not completely regularized.dkf2005-09-141-11/+10
|
* Fix for [1288128]dkf2005-09-142-88/+143
|
* * win/winMain.c (WishPanic): Replaced TCL_VARARGS* macros withdgp2005-09-132-5/+9
| | | | direct use of stdarg.h conventions.
* Fixed bug# 1283635chengyemao2005-09-111-5/+5
|
* Fixed bug# 1283635chengyemao2005-09-111-3/+4
|
* move declarations of Carbon-internal event debugging routines to ↵das2005-09-102-6/+8
| | | | tkMacOSXCarbonEvents.c
* * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): check ifdas2005-09-1026-252/+467
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | process is in front on MouseDown, otherwise request process activation from BringWindowForward() via new isFrontProcess param. * macosx/tkMacOSXCarbonEvents.c (TkMacOSXInitCarbonEvents): register our event handler on the dispatcher target for all carbon events of interest to TkAqua; this replaces event processing directly from the event queue and thus allows to capture events that are syntesized by Carbon and sent directly to the dispatcher and not to the event queue. * macosx/tkMacOSXEvent.c: remove TkMacOSXCountAndProcessMacEvents(), rename ReceiveAndProcessEvent() to TkMacOSXReceiveAndProcessEvent(). (TkMacOSXReceiveAndProcessEvent): remove tk event processing before sending events to the dispatcher, all events of interest are now processed in our dispatcher target event handler. * macosx/tkMacOSXNotify.c (CarbonEventsCheckProc): dispatch events directly via TkMacOSXReceiveAndProcessEvent(), but dispatch no more than four carbon events at one time to avoid starving other event sources. * macosx/tkMacOSXEvent.c: formatting cleanup, move XSync() to XStubs, * macosx/tkMacOSXEvent.h: removed obsolete kEventClassWish handling. * macosx/tkMacOSXXStubs.c * macosx/tkMacOSXEvent.h: declare macosx internal procs as MODULE_SCOPE. * macosx/tkMacOSXEvent.c: * macosx/tkMacOSXKeyEvent.c: * macosx/tkMacOSXMouseEvent.c: * macosx/tkMacOSXWindowEvent.c: * macosx/tkMacOSXButton.c: conditionalize all debug message printing to * macosx/tkMacOSXCursor.c: stderr via TK_MAC_DEBUG define. * macosx/tkMacOSXDebug.c: * macosx/tkMacOSXDebug.h: * macosx/tkMacOSXDialog.c: * macosx/tkMacOSXEvent.c: * macosx/tkMacOSXInit.c: * macosx/tkMacOSXKeyEvent.c: * macosx/tkMacOSXMenu.c: * macosx/tkMacOSXMenubutton.c: * macosx/tkMacOSXScale.c: * macosx/tkMacOSXWindowEvent.c: * macosx/tkMacOSXWm.c: * unix/configure.in: define TK_MAC_DEBUG on aqua when symbols enabled. * unix/configure: autoconf-2.59 * unix/tkConfig.h.in: autoheader-2.59 * library/listbox.tcl: synced aqua MouseWheel bindings with * library/scrlbar.tcl: core-8-4-branch. * library/text.tcl: * xlib/xcolors.c: fixed warning
* Whitespace/style improvementsdkf2005-09-082-1153/+1253
|
* Added missing FF charsdkf2005-09-061-4/+4
|
* * unix/Makefile.in (html): reverted/amended changes of 2005-08-23das2005-08-252-5/+14
| | | | | that broke TkAqua 'make install'; added BUILD_HTML_FLAGS optional var like in tcl/unix/Makefile.in.
* Punctuation fix in error message.dkf2005-08-232-17/+18
|
* * macosx/tkMacOSXDialog.c: make dialogs ignore -initialfile "" andhobbs2005-08-232-53/+62
| | | | -initialdir "" instead of error.
* * win/tkWin32Dll.c (DllMain): Replace old asm SEHmdejong2005-08-232-104/+98
| | | | | approach with Kenny's new SEH implementation. [Tcl bug 1235544]
* * unix/Makefile.in: Subst BUILD_TCLSH and TCL_EXE.mdejong2005-08-239-749/+309
| | | | | | | | | | | | | | | | | | | * unix/configure: Regen. * unix/configure.in: Update minimum autoconf version to 2.59. Invoke SC_PROG_TCLSH and SC_BUILD_TCLSH. * unix/tcl.m4 (SC_PROG_TCLSH, SC_BUILD_TCLSH): * win/Makefile.in: Subst BUILD_TCLSH and TCL_EXE. * win/configure: Regen. * win/configure.in: Update minimum autoconf version to 2.59. Invoke SC_BUILD_TCLSH. * win/tcl.m4 (SC_PROG_TCLSH, SC_BUILD_TCLSH): Split confused search for tclsh on PATH and build and install locations into two macros. SC_PROG_TCLSH searches just the PATH. SC_BUILD_TCLSH determines the name of the tclsh executable in the Tcl build directory. [Tcl bug 1160114] [Tcl patch 1244153]
* * macosx/tkMacOSXButton.c:das2005-08-223-4/+9
| | | | * macosx/tkMacOSXDialog.c: fix warnings.
* Fix for [Bug 1216006]Joe Mistachkin2005-08-212-2/+6
|