summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed exampledkf2007-10-151-9/+9
|
* whitespace changehobbs2007-10-151-4/+3
|
* * generic/tkFocus.c, generic/tkFrame.c, generic/tkInt.h:hobbs2007-10-1511-41/+756
| | | | | | | | * macosx/tkMacOSXButton.c, macosx/tkMacOSXMenubutton.c: * macosx/tkMacOSXWm.c, unix/tkUnixWm.c, win/tkWinWm.c: * doc/wm.n, tests/wm.test: TIP #125 implementation [Bug 998125] Adds [wm manage|forget] for dockable frames. Finished X11 and Windows code, needs OS X completion.
* generic/ttk/ttkTreeview.c: Store pointer to column table entryjenglish2007-10-153-73/+46
| | | | | | | instead of column index in columnNames hash table. This avoids the need for the evil PTR2INT and INT2PTR macros, and simplifies things a bit.
* * generic/tkArgv.c: Fix gcc warnings about 'cast to/fromdas2007-10-1517-64/+447
| | | | | | | | | | | | | | | | | | | * generic/tkCanvUtil.c: pointer from/to integer of different * generic/tkCanvas.c: size' on 64-bit platforms by casting * generic/tkCursor.c: to intermediate types * generic/tkInt.h: intptr_t/uintptr_t via new PTR2INT(), * generic/tkListbox.c: INT2PTR(), PTR2UINT() and UINT2PTR() * generic/tkObj.c: macros. * generic/tkStyle.c: * generic/tkTextIndex.c: * generic/tkUtil.c: * generic/ttk/ttkTheme.h: * generic/ttk/ttkTreeview.c: * unix/tkUnixMenu.c: * unix/configure.in: * unix/configure: autoconf-2.59 * unix/tkConfig.h.in: autoheader-2.59
* * macosx/Wish-Common.xcconfig: add 'tktest-X11' target.das2007-10-156-6/+2059
| | | | | | | * macosx/Wish.xcode/project.pbxproj: * macosx/Wish.xcode/default.pbxuser: * macosx/Wish.xcodeproj/default.pbxuser: * macosx/Wish.xcodeproj/project.pbxproj:
* * unix/configure.in (Darwin): add support for 64-bit X11.das2007-10-152-15/+106
| | | | * unix/configure: autoconf-2.59
* * win/configure, win/configure.in (TK_WIN_VERSION): Make sure thehobbs2007-10-153-5/+14
| | | | patchlevel doesn't contain extra dotted pairs (eg. interim release)
* Hush.patthoyts2007-10-121-3/+3
|
* Fixed install of tk broken with last commitpatthoyts2007-10-122-9/+5
|
* Mine all version information from headers. Sync tcl and tk and bringpatthoyts2007-10-124-125/+377
| | | | | extension versions closer together. Try and avoid using tclsh to do substitutions as we may cross compile.
* Make use of TkFixedFont and ttk widgets in the console. Try and select a ↵patthoyts2007-10-122-15/+34
| | | | better fixed font just for the console.
* * macosx/tkMacOSXDraw.c: replace all (internal) use of QD regiondas2007-10-1215-431/+1101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * macosx/tkMacOSXSubwindows.c: API by HIShape API, with conversion to * macosx/tkMacOSXWindowEvent.c QD regions only when required by legacy * macosx/tkMacOSXPrivate.h: Carbon or Tk API. * macosx/tkMacOSXRegion.c: * macosx/tkMacOSXDebug.c: * macosx/tkMacOSXDebug.h: * macosx/tkMacOSXInt.h: replace MacDrawable's QD RgnHandles * macosx/tkMacOSXEmbed.c: clipRgn, aboveClipRgn & drawRgn by * macosx/tkMacOSXMenu.c: HIShapeRefs visRgn & aboveVisRgn and * macosx/tkMacOSXSubwindows.c: CGRect drawRect. * macosx/tkMacOSXWindowEvent.c: remove use of QD port vis rgn in window * macosx/tkMacOSXSubwindows.c: update rgn calculation, manually excise * macosx/tkMacOSXWm.c: growbox from toplevel clip rgn instead. * macosx/tkMacOSXDraw.c: replace use of QD port clip rgn by new * macosx/tkMacOSXPrivate.h: clipRgn fld in TkMacOSXDrawingContext; handle QD/CG drawing mismatches in XCopyArea, XCopyPlane and TkPutImage; cleanup/speedup CGContext setup in TkMacOSXSetupDrawingContext(). * macosx/tkMacOSXDraw.c: change TkMacOSXSetupDrawingContext() to * macosx/tkMacOSXEntry.c: return boolean indicating whether * macosx/tkMacOSXFont.c: drawing is allowed (and was setup) or * macosx/tkMacOSXMenu.c: not (e.g. when clipRgn is empty). * macosx/ttkMacOSXTheme.c: * macosx/tkMacOSXSubwindows.c: signal that drawable is a pixmap via * macosx/tkMacOSXInt.h: new explicit TK_IS_PIXMAP flag instead of a NULL cligRgn field. * macosx/tkMacOSXRegion.c: add wrappers for missing/buggy HIShape * macosx/tkMacOSXPrivate.h: API, and private helpers to operate on HIShapeRefs & convert to/from TkRegion. * macosx/tkMacOSXRegion.c: add Tkp{Retain,Release}Region() API for * macosx/tkMacOSXInt.h: TkRegion.
* * xlib/xgc.c: factor out alloc/free of GC clip_mask;das2007-10-122-48/+86
| | | | | * macosx/tkMacOSXXStubs.c: manage clip rgn lifetime with new Tkp{Retain,Release}Region().
* * macosx/tkMacOSXButton.c: delay picParams setup until needed.das2007-10-121-25/+16
|
* * generic/tkTextDisp.c (CharUndisplayProc): fix textDisp.test crash.das2007-10-121-21/+23
|
* no messagedavygrvy2007-10-121-0/+7
|
* * win/winMain.c: Replaced incorrect comments in main() to descibedavygrvy2007-10-121-4/+3
| | | | | | why the console widget does not need to be created for this application entry point (if used). Must have been a bad copy/paste of WinMain() from 10 years back.
* * macosx/tkMacOSXWm.c (TkMacOSXGrowToplevel): manually constrain resizedas2007-10-112-2/+19
| | | | | limitBounds to maxBounds, works around SectRect() mis-feature (return zero rect if input rect has zero height/width). [Bug 1810818]
* Make Ttk_GetImage safe if called with NULL interp. Added some testspatthoyts2007-10-093-3/+44
| | | | that crash on Windows without this fix.
* * generic/tk.h: Bump version number to 8.5b1.1 to distinguishdgp2007-10-028-20/+31
| | | | | | | | | | * library/tk.tcl: CVS development snapshots from the 8.5b1 * unix/configure.in: release. Updated LOCALES. * unix/tk.spec: * win/configure.in: * unix/configure: autoconf (2.59) * win/configure:
* Fix private routines accidentally defined in global namespace [Bug 1803836]jenglish2007-09-302-3/+9
|
* Added Hungarian messages. [Patch 1800742]dkf2007-09-262-0/+82
|
* update changes for 8.5b1core_8_5_b1dgp2007-09-242-3/+5
|
* Only call callbacks that are not NULL. [Bug 1791052]dkf2007-09-203-15/+42
|
* contributor namesdas2007-09-201-14/+14
|
* * changes: updates for 8.5b1 release.dgp2007-09-202-3/+27
|
* fix 'make checkstubs' complaint about Tk_PkgInitStubsCheckdas2007-09-201-1/+3
|
* * README: Bump version number to 8.5b1.dgp2007-09-199-17/+28
| | | | | | | | * generic/tk.h: Merge from core-stabilizer-branch. * library/tk.tcl: Stabilizing toward 8.5b1 release now done * unix/configure.in: on the HEAD. core-stabilizer-branch is * unix/tk.spec: now suspended. * win/configure.in:
* Replace isdigit call with an internal implementation to avoid libc linkage ↵patthoyts2007-09-192-2/+15
| | | | on windows
* Aqua changes for 8.5b1das2007-09-181-1/+34
|
* * generic/tkStubLib.c: Remove C library calls from Tk_InitStubs()dgp2007-09-183-4/+16
| | | | | * win/makefile.vc: so that we don't need the C library linked in to libtkStub.
* fix warningsdas2007-09-181-3/+3
|
* autoconf-2.59das2007-09-181-85/+148
|
* fix quoting of new FreeBSD SHLIB_LDdas2007-09-181-1/+1
|
* Yet another step in the tidying up of the GIF code.dkf2007-09-182-163/+199
|
* Made ttk/all.tcl be the same as tk's all.tcl and make use of file normalizepatthoyts2007-09-183-12/+26
|
* Add crt flags for tkStubLib now it makes use of C-library functionspatthoyts2007-09-172-2/+7
|
* Use '${CC} -shared' instead of 'ld -Bshareable' to build shared librariesjenglish2007-09-174-186/+103
| | | | on current NetBSDs [#1749251].
* * generic/tkConsole.c: Revised callers of Tcl_InitStubs() to accountdgp2007-09-176-11/+88
| | | | | | | | | | | | * generic/tkMain.c: for restored compatible support for the call * generic/tkWindow.c: Tcl_InitStubs(interp, TCL_VERSION, 1). Also revised Tcl_PkgRequire() call for Tcl so that, for example, a Tk library built against Tcl 8.5.1 headers will not refuse to [load] into a Tcl 8.5.0 interpreter. [Tcl Bug 1578344]. * generic/tk.h: Revised Tk_InitStubs() to restore Tk 8.4 * generic/tkStubLib.c: source compatibility with callers of * generic/tkWindow.c: Tk_InitStubs(interp, TK_VERSION, 1).
* Try to improve combobox appearance on OSX + Tk 8.5 [#1780286].jenglish2007-09-172-40/+70
|
* * unix/tcl.m4: replace all direct references to compiler by ${CC} todas2007-09-153-74/+90
| | | | | | | | | enable CC overriding at configure & make time; run check for visibility "hidden" with all compilers; quoting fixes from TEA tcl.m4. (SunOS-5.1x): replace direct use of '/usr/ccs/bin/ld' in SHLIB_LD by 'cc' compiler driver. * unix/configure: autoconf-2.59
* * macosx/Wish-Common.xcconfig: enable Tcl DTrace support.das2007-09-143-3/+12
| | | | * macosx/Wish.xcodeproj/project.pbxproj:
* * win/Makefile.in (install-binaries): Fixed missing brace in theandreas_kupries2007-09-123-4/+10
| | | | | * win/makefile.vc (install-binaries): generated package index file. Note: unix/Makefile.in is good.
* Missed one PkgRequire Tcl revisiondgp2007-09-111-2/+2
|
* * generic/tkImgGIF.c: Fixed a buffer overrun that got triggered byrmax2007-09-113-3/+23
| | | | | | | multi-frame interlaced GIFs that contain subsequent frames that are smaller than the first one. * tests/imgPhoto.test: Added a test for the above.
* * generic/tkConsole.c: Revised calls to Tcl_InitStubs() anddgp2007-09-118-22/+33
| | | | | | | | | * generic/tkMain.c: [package require Tcl] so that Tk Says What * generic/tkWindow.c: It Means using the new facilties of [package] * library/tk.tcl: in Tcl 8.5 about what version(s) of Tcl it * unix/Makefile.in: is willing to work with. [Bug 1578344]. * win/Makefile.in: * win/makefile.vc:
* cleanupdas2007-09-111-11/+7
|
* comment typos: s/Tcl/Tk/das2007-09-111-4/+4
|
* typo corrections [Bug 1788682]hobbs2007-09-102-3/+7
|