summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * README: Bump version number to 8.4.12dgp2005-11-169-18/+28
| | | | | | | | | | | * generic/tk.h: * macosx/Wish.pbproj/project.pbxproc: * unix/configure.in: * unix/tk.spec: * win/configure.in: * unix/configure: autoconf * win/configure:
* * changes: Update changes for 8.4.12 releasedgp2005-11-162-1/+29
|
* clarify text index documentationvincentdarley2005-11-162-2/+12
|
* Added LIBS to fix issue building tclkit on OpenBSDpatthoyts2005-11-063-2/+6
|
* * generic/tkMain.c: Rewrote code that sets the ::argv valuedgp2005-10-182-16/+28
| | | | | | 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-17/+21
| | | | is valid before checking type
* * generic/tkInt.h: add MODULE_SCOPE and WORDS_BIGENDIAN checkshobbs2005-10-102-1/+43
| | | | that will work with OS X universal binary compiles. (steffen)
* * generic/tkConfig.c (Tk_DeleteOptionTable, Tk_CreateOptionTable):hobbs2005-10-102-10/+17
| | | | properly alloc/delete one more option. [Bug 1319720] (melbardis)
* * tests/winfo.test: Wait until child window is visiblepatthoyts2005-10-103-5/+11
| | | | * tests/wm.test: Modified test to match actual error output.
* * library/dialog.tcl (::tk_dialog): add tkwait visibility beforehobbs2005-10-052-12/+16
| | | | grab. [Bug 1216775]
* * win/tkWinDialog.c (ChooseDirectoryValidateProc): reset storedhobbs2005-10-052-1/+8
| | | | path to "" if it doesn't exist and -mustexist is true. [Bug 1309218]
* Fix for [Bug 1288128]dkf2005-09-142-86/+140
|
* move declarations of Carbon-internal event debugging routines to ↵das2005-09-102-6/+8
| | | | tkMacOSXCarbonEvents.c
* * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): check ifdas2005-09-1024-272/+449
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/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.13 * library/listbox.tcl: corrected comments. * library/text.tcl: * xlib/xcolors.c: fixed warning
* * macosx/tkMacOSXDialog.c: make dialogs ignore -initialfile "" andhobbs2005-08-232-42/+53
| | | | -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]
* * macosx/tkMacOSXButton.c:das2005-08-223-4/+9
| | | | * macosx/tkMacOSXDialog.c: fix warnings.
* Backport of fix for Tk_ConfigSpec-related part of [Bug 749908]dkf2005-08-162-24/+138
|
* Fix [Bug 1252702]dkf2005-08-1112-72/+78
|
* typodas2005-08-091-2/+0
|
* * macosx/tkMacOSXCarbonEvents.c (new): moved carbon events code intodas2005-08-0930-799/+1013
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * macosx/tkMacOSXHLEvents.c: new file like on HEAD, * macosx/tkMacOSXInit.c (TkpInit): initialize carbon event handlers * macosx/tkMacOSXInt.h: in TkpInit(), add new source * unix/Makefile.in: file to Makefile.in. * macosx/tkMacOSXCarbonEvents.c (AppEventHandlerProc): handle carbon events sent directly to application event target via the general TkMacOSXProcessEvent() in the same way as events posted to the event loop. Moved existing app event handlers to tkMacOSXWindowEvent.c. (TkMacOSXInitCarbonEvents): register our application event handler for kEventWindowExpanded events to deal with uncollapsing from the dock. * macosx/tkMacOSXEvent.h: made TkMacOSXProcessEvent() non-static, added * macosx/tkMacOSXEvent.c: new interp field to TkMacOSXEvent struct for use by app event handler. * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): retrieve current window, partCode, modifiers and local cursor position from carbon mouse event if possible. Use new static GenerateButtonEvent() taking a MouseEventData struct instead of TkGenerateButtonEvent() to avoid recomputing already known values. Move process activation on MouseDown into BringWindowForward() to allow clicking on window titlebar widgets without activating process. Move code dealing with clicks in window titelbar into separate function HandleWindowTitlebarMouseDown() to avoid code duplication. Avoid repeated calls to TkMacOSXGetXWindow() by storing result in MouseEventData struct. (TkMacOSXButtonKeyState, XQueryPointer): try to get button and modifier state from currently processed carbon event (to avoid unnecessary IPC with the window server), otherwise use modern carbon API to get this info instead of Button() and GetKeys(); only retrieve info caller asks for (via non-NULL ptr passed to XQueryPointer). (ButtonModifiers2State): new static function converting carbon button and modifier state into tk state, allows detection of more than 3 mouse buttons (tk supports up to 5) and of NumLock and Fn modifier keys (NumLock is mapped to Mod3 and Fn to Mod4). * macosx/tkMacOSXWindowEvent.c (TkMacOSXProcessApplicationEvent): handle kEventWindowExpanded event to deal with window uncollapsing from the dock by generating tk Map event, handle kEventAppHidden and kEventAppShown events (moved here from tkMacOSXCarbonEvents.c). * macosx/tkMacOSXSubwindows.c (XUnmapWindow): only hide window when it is not iconified to avoid window flashing on collapse. * macosx/tkMacOSXWm.c: replaced Tk_DoWhenIdle() by Tcl_DoWhenIdle(). (TkMacOSXZoomToplevel): remove call to TrackBox(), now done in HandleWindowTitlebarMouseDown() in tkMacOSXMouseEvent.c. (TkpWmSetState): avoid window flashing on collapse by unmapping after calling CollapseWindow(); only uncollapse window if it is collapsed. * generic/tkInt.decls: changed TkMacOSXZoomToplevel() signature. * generic/tkIntPlatDecls.h: * macosx/tkMacOSXKeyEvent.c (TkMacOSXProcessKeyboardEvent): only call GetMenuItemCommandID() on KeyDown or KeyRepeat events. * macosx/tkMacOSXMenu.c (ReconfigureMacintoshMenu): remove call to obsolete AppendResMenu() API. * macosx/tkMacOSXKeyEvent.c: replaced all direct uses of expensive * macosx/tkMacOSXMenu.c: GetMouse() and TkMacOSXButtonKeyState() * macosx/tkMacOSXMenus.c: APIs by calls to XQueryPointer() * macosx/tkMacOSXMouseEvent.c: * macosx/tkMacOSXScale.c: * macosx/tkMacOSXScrlbr.c: * macosx/tkMacOSXWm.c: * macosx/tkMacOSXDialog.c: replaced use of FrontNonFloatingWindow() * macosx/tkMacOSXKeyEvent.c: by ActiveNonFloatingWindow() as * macosx/tkMacOSXMenu.c: recommended by Carbon docs. * macosx/tkMacOSXMenus.c: * macosx/tkMacOSXSubwindows.c: * macosx/tkMacOSXWm.c: * macosx/tkMacOSXDialog.c: fixed warnings * macosx/tkMacOSXTest.c: * macosx/tkMacOSXCarbonEvents.c: added CVS Id line to file header. * macosx/tkMacOSXDebug.c: * macosx/tkMacOSXDebug.h: * macosx/tkMacOSXEntry.c: * macosx/tkMacOSXEvent.h: * macosx/tkMacOSXKeyEvent.c: * macosx/tkMacOSXMouseEvent.c: * macosx/tkMacOSXWindowEvent.c: * macosx/tkMacOSXWm.h: * macosx/tkMacOSXEmbed.c: replaced all uses of panic() with Tcl_Panic() * macosx/tkMacOSXFont.c: (sync with HEAD). * macosx/tkMacOSXMenus.c: * macosx/tkMacOSXSubwindows.c: * macosx/tkMacOSXWm.c: * macosx/tkMacOSXXStubs.c: * macosx/tkMacOSXInt.h: sync with HEAD changes of 2005-03-14. * macosx/tkMacOSXSubwindows.c: * macosx/tclets.r (removed): sync with HEAD. * macosx/tkMacOSXScale.c: * macosx/tkMacOSXPort.h: * library/demos/menu.tcl: removed errant '}'.
* * unix/Makefile.in (html): reverted/amended changes of 2005-07-24das2005-07-302-5/+14
| | | | | that broke TkAqua 'make install'; added BUILD_HTML_FLAGS optional var like in tcl/unix/Makefile.in.
* * macosx/tkMacOSXDraw.c (XDrawLines, XDrawSegments): correcthobbs2005-07-292-98/+105
| | | | | drawing of CoordModePrevious style (each point based on last). Exposed by tktable -drawmode fast.
* * library/bgerror.tcl (::tk::dialog::error::bgerror): usehobbs2005-07-282-3/+6
| | | | zoomDocProc instead of dBoxProc for bgerror dialog
* * macosx/tkMacOSXWm.c (TkpWmSetState): add IsWindowCollapsed checkhobbs2005-07-283-248/+328
| | | | | | | | | | | | before calling CollapseWindow. (WmResizableCmd): adjust kWindow*Attributes according to resize parameters. * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): handle inToolbarButton action (generates <<ToolbarButton>> virtual event) and correct inCollapseBox to properly track the event (waiting for buttonrelease) and generate the Unmap event (Map event on redisplay still missing).
* * generic/tkFrame.c (DisplayFrame):hobbs2005-07-289-20/+226
| | | | | | | | | | | * generic/tkInt.decls: add TkpDrawFrame to allow for * generic/tkIntDecls.h: platform-specific drawing into the frame/ * generic/tkStubInit.c: toplevel area. Currently only differs on * generic/tkFrame.c: OS X (Aqua), which will draw a themed bg * win/tkWinDraw.c: if tk::mac::useThemedToplevel == 1. * unix/tkUnixDraw.c: Normal frames left alone until we can * mac/tkMacDraw.c: better factor out frame drawing to be * macosx/tkMacDraw.c: widget-specific.
* * generic/tkInt.h: Swap TkUnsupported1Cmd for TkUnsupported1ObjCmd.hobbs2005-07-286-414/+411
| | | | | | | | | | | | * generic/tkWindow.c: Ditto. (neil madden) * macosx/tkMacOSXInt.h: Added TkMacOSXWindowClass decl * macosx/tkMacOSXWm.c (TkMacOSXWinStyle) New function. (TkUnsupported1ObjCmd): New function, replaces the un-objectified version of the command, recognizes more classes and attributes. (TkMacOSXWindowClass): private function to return OS X class of a Tk window. * macosx/tkMacOSXSubwindows.c (XMapWindow, XUnmapWindow): recognize special show/hide functions for sheets
* * unix/Makefile.in: Subst TCLSH_PROG andmdejong2005-07-259-284/+453
| | | | | | | | | | | | | | | | | | | BUILD_TCLSH into Makefile. Rework html target so that it depends on the tclsh installed on the system PATH. * unix/configure: Regen. * unix/configure.in: Invoke SC_PROG_TCLSH and SC_BUILD_TCLSH and subst into Makefile. * unix/tcl.m4: Update from Tcl. * win/Makefile.in: Subst TCLSH_PROG and BUILD_TCLSH into Makefile. Rework winhelp target so that it depends on the tclsh installed on the system PATH. * win/configure: Regen. * win/configure.in: Invoke SC_BUILD_TCLSH and subst into Makefile. * win/tcl.m4: Update from Tcl. [Tcl patch 1244153]
* sync'ed to Tcl's tcl.m4hobbs2005-07-212-367/+202
|
* * macosx/tkMacOSXEntry.c (TkpDrawEntryBorderAndFocus): sethobbs2005-07-212-1/+9
| | | | oldWidth to avoid warning
* * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent):hobbs2005-07-211-1/+1
| | | | corrected if expression error (use of = instead of ==)
* * doc/getOpenFile.n: correct -multiple docs (takes boolean)hobbs2005-07-062-2/+6
|
* * library/demos/menu.tcl: removed errant '}'.core_8_4_11das2005-06-252-3/+6
|
* updatedgp2005-06-241-1/+3
|
* * generic/tkConsole.c: backport fix for bug 756840 & sync whitespacedas2005-06-232-8/+31
| | | | | | changes from HEAD. * generic/tkConsole.c (TkConsolePrint): prevent potential NULL deref.
* new 8.4.11 release date: June 28dgp2005-06-231-2/+2
|
* updatedgp2005-06-231-1/+3
|
* * macosx/tkMacOSXDefault.h: change ENTRY_BORDER defaults to from 5 to 2das2005-06-232-4/+8
| | | | | to make default entry widgets in TkAqua look like in other aqua apps (and have same border dimensions as other platforms). [Bug 1176610]
* * unix/Makefile.in (install-private-headers): rewrite tkPort.h whendas2005-06-232-6/+12
| | | | | installing private headers to remove ../unix relative #include path to tkUnixPort.h (which is incorrect at the installed location).
* release tagdgp2005-06-221-2/+2
|
* Fix silly error in SYNOPSIS of Tk_AllocBitmapFromObj [Bug 1224983]dkf2005-06-212-2/+6
|
* typodgp2005-06-211-2/+2
|
* Plug a buffer overflow in the GIF readerdkf2005-06-203-24/+42
|
* *** 8.4.11 TAGGED FOR RELEASE ***das2005-06-184-5/+17
| | | | | | | | | | * macosx/Makefile: for X11 build, add -X11 suffix to unversioned wish symbolic link. * unix/tcl.m4 (Darwin): add -headerpad_max_install_names to LDFLAGS to ensure we can always relocate binaries with install_name_tool. * unix/configure: autoconf-2.13
* release tagdgp2005-06-181-0/+2
|
* * changes: Update changes for 8.4.11 releasedgp2005-06-182-1/+9
|
* * README: Bump version number to 8.4.11dgp2005-06-189-20/+33
| | | | | | | | | | | | * generic/tk.h: * macosx/Wish.pbproj/project.pbxproc: * unix/configure.in: * win/configure.in: * unix/configure.in: Updated LOCALES to cover all msgs catalogs. * unix/configure: autoconf * win/configure:
* backport auto_path trimdown to speed up safe.testdgp2005-06-061-1/+5
|
* Backport fix for [Bug 1114977]; canvas tag searches now work with threads.dkf2005-06-032-81/+151
|
* Backported [console] rename fix. [Bug 1016385]dkf2005-06-032-42/+44
|