summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Applied patch from #1723362 for transparent bitmapspatthoyts2007-10-241-0/+2
|
* permit wm manage of any widget (esp: ttk::frame)patthoyts2007-10-241-0/+4
|
* * library/ttk/combobox.tcl (ttk::combobox::PopdownWindow): redo wmhobbs2007-10-231-0/+5
| | | | transient on each drop to handle reparent-able frames. [Bug 1818441]
* [namespace import ::ttk::scrollbar] doesn't work,jenglish2007-10-231-0/+5
| | | | since ttk::scrollbar isn't [namespace export]ed.
* * tests/cursor.test: Make tests robust against changes in Tcl'sdgp2007-10-231-0/+5
| | | | rules for accepting integers in octal format.
* Added TIP#145 documentation.dkf2007-10-231-0/+4
|
* Fixed leak in CreateNamedFont spotted by das.patthoyts2007-10-231-0/+4
|
* * macosx/Wish.xcodeproj/project.pbxproj: add new demo files.das2007-10-231-7/+20
| | | | * macosx/Wish.xcode/project.pbxproj:
* More widget demos!dkf2007-10-221-6/+15
|
* * library/ttk/combobox.tcl: ttk::combobox overhaul;jenglish2007-10-221-0/+9
| | | | | | | | fixes [#1814778, #1780286, #1609168, #1349586] * library/ttk/aquaTheme.tcl: Factored out aqua-specific combobox -postposition adjustments. * generic/ttk/ttkTrack.c: Detect [grab]s and unpress pressed element; combobox workaround no longer needed.
* typodas2007-10-211-1/+1
|
* * macosx/Wish.xcodeproj/project.pbxproj: add new demo files.das2007-10-211-1/+18
| | | | * macosx/Wish.xcode/project.pbxproj:
* More Ttk demosdkf2007-10-181-0/+6
|
* * library/ttk/fonts.tcl: Create all the tip 145 font names on allpatthoyts2007-10-181-0/+5
| | | | platforms (mac and unix get handled in script, windows in C)
* no messagedavygrvy2007-10-171-1/+1
|
* no messagedavygrvy2007-10-171-0/+7
|
* more GOOBEdas2007-10-171-0/+2
|
* * library/demos/widget: Aqua GOOBE, cleanup icons.das2007-10-171-0/+15
| | | | | | | * library/demos/ttkbut.tcl: * library/demos/button.tcl: restore setting of button highlightbackground on Aqua.
* Added demo of basic Ttk widgets.dkf2007-10-171-0/+4
|
* no messagedavygrvy2007-10-161-0/+5
|
* More improvements for the widget demo main structure, including 'new' flagging.dkf2007-10-161-0/+4
|
* Text widget documentation improvementsdkf2007-10-161-0/+5
|
* GOOBE work on the widget demo, plus a new demo of text widget peering.dkf2007-10-151-6/+15
|
* * generic/tkFocus.c, generic/tkFrame.c, generic/tkInt.h:hobbs2007-10-151-0/+9
| | | | | | | | * 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-151-0/+7
| | | | | | | 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-151-0/+18
| | | | | | | | | | | | | | | | | | | * 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-151-0/+11
| | | | | | | * macosx/Wish.xcode/project.pbxproj: * macosx/Wish.xcode/default.pbxuser: * macosx/Wish.xcodeproj/default.pbxuser: * macosx/Wish.xcodeproj/project.pbxproj:
* * win/configure, win/configure.in (TK_WIN_VERSION): Make sure thehobbs2007-10-151-0/+5
| | | | patchlevel doesn't contain extra dotted pairs (eg. interim release)
* Mine all version information from headers. Sync tcl and tk and bringpatthoyts2007-10-121-0/+5
| | | | | 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-121-0/+4
| | | | better fixed font just for the console.
* * macosx/tkMacOSXDraw.c: replace all (internal) use of QD regiondas2007-10-121-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* no messagedavygrvy2007-10-121-0/+7
|
* * macosx/tkMacOSXWm.c (TkMacOSXGrowToplevel): manually constrain resizedas2007-10-111-0/+6
| | | | | 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-091-0/+6
| | | | that crash on Windows without this fix.
* * generic/tk.h: Bump version number to 8.5b1.1 to distinguishdgp2007-10-021-0/+11
| | | | | | | | | | * 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-301-0/+6
|
* Added Hungarian messages. [Patch 1800742]dkf2007-09-261-0/+5
|
* update changes for 8.5b1core_8_5_b1dgp2007-09-241-2/+2
|
* Only call callbacks that are not NULL. [Bug 1791052]dkf2007-09-201-0/+5
|
* * changes: updates for 8.5b1 release.dgp2007-09-201-1/+5
|
* * README: Bump version number to 8.5b1.dgp2007-09-191-0/+11
| | | | | | | | * 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-191-0/+4
| | | | on windows
* * generic/tkStubLib.c: Remove C library calls from Tk_InitStubs()dgp2007-09-181-0/+6
| | | | | * win/makefile.vc: so that we don't need the C library linked in to libtkStub.
* Yet another step in the tidying up of the GIF code.dkf2007-09-181-25/+30
|
* Made ttk/all.tcl be the same as tk's all.tcl and make use of file normalizepatthoyts2007-09-181-0/+6
|
* Add crt flags for tkStubLib now it makes use of C-library functionspatthoyts2007-09-171-0/+5
|
* Use '${CC} -shared' instead of 'ld -Bshareable' to build shared librariesjenglish2007-09-171-0/+6
| | | | on current NetBSDs [#1749251].
* * generic/tkConsole.c: Revised callers of Tcl_InitStubs() to accountdgp2007-09-171-0/+13
| | | | | | | | | | | | * 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-171-0/+5
|
* * unix/tcl.m4: replace all direct references to compiler by ${CC} todas2007-09-151-0/+10
| | | | | | | | | 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