summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Added missing messages. [Patch 1800744]dkf2007-12-041-0/+2
|
* Added Danish message catalog. [Patch 1844143]dkf2007-12-041-34/+39
|
* * win/configure, win/tcl.m4 (LIBS_GUI): remove ole32.lib oleaut32.libhobbs2007-12-031-0/+5
| | | | (LIBS): add ws2_32.lib for static builds with Tcl.
* Improved macrology for statically-initialized layout template tables.jenglish2007-12-021-0/+9
|
* * unix/tkUnixPort.h: When unix/configure determines whether thedgp2007-11-281-0/+6
| | | | | intptr_t type is available, it has the <inttypes.h> header present. It's only fair that we let Tk have it too.
* * generic/tkImgPPM.c (StringReadPPM): Corrected a comparisonKevin B Kenny2007-11-261-2/+7
| | | | | | | whose sense was reversed that resulted in reading beyond the end of the input buffer on malformed PPM data. [Bug #1822391] * tests/imgPPM.test (imgPPM-4.1): Added test case that exercises [Bug #1822391].
* * library/tkfbox.tcl (VerifyFileName): Corrected a coupleKevin B Kenny2007-11-261-0/+9
| | | | | | | | of typos in handling of bad file names. [Bug #1822076] * tests/filebox.test (filebox-7.1, filebox-7.2): Added test cases that exercise the above bug. Thanks to Christoph Bauer (fridolin@users.sf.net) for the patch.
* Internal Ttk_Manager API updates; Fixed [Bug 1343984];jenglish2007-11-251-0/+12
| | | | | | Added [$nb hide] method; [$nb add] on already-managed windows no longer throws an error, can be used to re-add a hidden tab. Updated docs and test suite.
* General improvements to Unix READMEdkf2007-11-231-0/+4
|
* Improve theming of Unix dialogsdkf2007-11-211-0/+4
|
* formattingdas2007-11-191-6/+2
|
* Fixed crash bug in style element createpatthoyts2007-11-191-0/+5
|
* tag 8.5b3dgp2007-11-191-0/+2
|
* * README: Bump version number to 8.5b3.dgp2007-11-191-0/+10
| | | | | | | | | | | * generic/tk.h: * library/tk.tcl: * unix/configure.in: * unix/tk.spec: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* * changes: Update changes for 8.5b3 release.dgp2007-11-191-0/+4
|
* formattingdas2007-11-191-28/+22
|
* * generic/ttk/ttkElements.c, macosx/ttkMacOSXTheme.c:jenglish2007-11-191-0/+13
| | | | | | | | | | | | Add "fill" element: like "background" but only erases parcel. * generic/ttk/ttkFrame.c: Use fill element in Labelframe Label sublayout. Also improved default labelmargins for -labelanchor w*, e*. * generic/ttk/ttkLabel.c: no longer need Labelframe hack. * library/ttk/aquaTheme.tcl: ImageTextElement no longer needed. TextElement no longer needs '-background' option.
* * generic/ttk/ttkFrame.c: Use sublayout for ttk::labelframe labelsjenglish2007-11-181-0/+11
| | | | | | | | instead of single element. * generic/ttk/ttkLabel.c: Default -anchor for text and label elements is now "w" instead of "center". Fixes [Bug 1614540]. * library/ttk/defaults.tcl, library/ttk/*Theme.tcl: Button styles now need explicit "-anchor center".
* BUGFIX: Ttk_GetPaddingFromObj() and Ttk_GetBorderFromObj() returned garbagejenglish2007-11-181-0/+6
| | | | when passed an empty list.
* ttkMacOSXTheme.c: Resynchronize with Tile codebasejenglish2007-11-181-0/+7
| | | | | so that patches can flow back and forth. aquaTheme.tcl: Extra TButton -padding no longer needed.
* * win/ttkWinXPTheme.c: Add support for size information flags forpatthoyts2007-11-181-0/+6
| | | | | scrollbar and combobox buttons. This handles tile patches 1596647 and 1596657 but a bit more generically.
* Tidy up some variable types.patthoyts2007-11-171-0/+4
|
* Forgot the changelogpatthoyts2007-11-171-0/+6
|
* Swap in core scrollbars for [ttk::scrollbar]s on OSX.jenglish2007-11-171-0/+5
|
* * macosx/tkMacOSXFont.c (TkpMeasureCharsInContext): Correct ancc_benny2007-11-161-0/+5
| | | | oversight in the bug fix from 2007-11-11. [Bug 1824638]
* * macosx/Wish.xcodeproj/project.pbxproj: add new chanio.test.das2007-11-151-1/+6
| | | | * macosx/Wish.xcode/project.pbxproj:
* The Swedish message catalog should be for Swedish... [Bug 1831803]dkf2007-11-141-0/+5
|
* * macosx/tkMacOSXFont.c (TkpMeasureCharsInContext): Fix thecc_benny2007-11-111-0/+6
| | | | | case when TK_WHOLE_WORDS and TK_AT_LEAST_ONE are both set and maxLength is small. [Bug #1824638]
* typodas2007-11-091-1/+1
|
* * macosx/tkMacOSXButton.c: sync formatting, whitespace, copyrightdas2007-11-091-0/+12
| | | | | | | | | | * macosx/tkMacOSXDialog.c: with core-8-4-branch. * macosx/tkMacOSXMenus.c: * macosx/tkMacOSXWm.c: * xlib/xgc.c * library/bgerror.tcl: * library/console.tcl: * library/menu.tcl:
* formattingdas2007-11-081-9/+7
|
* * macosx/tkMacOSXCarbonEvents.cdas2007-11-081-0/+55
| | | | | | | | | | | | (InstallStandardApplicationEventHandler): on Mac OS X Leopard, replace the 2005-11-27 approach of installing the standard application handler by calling RAEL and immediately longjmping out of it from an event handler, as that now leads to crashes in -[NSView unlockFocus] whenever HIToolbox uses Cocoa in Leopard (Help menu, Nav Services, Color Picker). Instead call InstallStandardEventHandler() on the application and menubar event targets, as Leopard ISEH finally handles these correctly. Unfortunately need a HIToolbox-internal SPI to retrieve the menubar event target, no public API appears have that functionality.
* Ttk_ElementSize: Fixed longstanding, subtle bug that caused element paddingjenglish2007-11-081-0/+14
| | | | | | to sometimes be counted twice in size computations. Fix ElementSizeProcs affected by previous change.
* * doc/CrtConsoleChan.3: Fixed markup typo and extended see alsoandreas_kupries2007-11-061-0/+5
| | | | section per suggestions by Donal.
* * library/ttk/combobox.tcl: Set focus to listbox in <Map> bindingjenglish2007-11-061-0/+5
| | | | instead of in Post command (see #1349811 for info).
* * doc/CrtConsoleChan.3: New file providing minimal documentationandreas_kupries2007-11-051-0/+5
| | | | of 'Tk_InitConsoleChannels()'. This is for [SF Tk Bug 432435].
* * macosx/ttkMacOSXTheme.c(TreeitemLayout): Remove focus ringjenglish2007-11-051-0/+5
| | | | from treeview items on OSX (problem reported by Kevin Walzer).
* + Use null "treearea" element for treeview owner-draw areajenglish2007-11-041-0/+10
| | | | | | | instead of "client", to avoid nameclash with Notebook.client element. This was causing sizing anomalies in XP theme, and introduced extraneous padding. + "alt" theme Treeitem.indicator element needs left margin now.
* * macosx/tkMacOSXMenus.c: add "Run Widget Demo" menu item to thedas2007-11-041-1/+27
| | | | | | default Edit menu along with associated carbon event handler enabling the item only if demo files are installed; cleanup handling of "About" and "Source" menu items.
* Add menu item and key binding to adjust fontpatthoyts2007-11-031-0/+4
|
* Added a demo of how to do a multi-column sortable listbox.dkf2007-11-021-0/+5
|
* Tk (non-native) message box now uses Ttk widgets for better L&F.dkf2007-11-021-0/+3
|
* Tk (non-native) file chooser now uses Ttk widgets for better L&F and ↵dkf2007-11-021-0/+4
| | | | supports <Tab> completion of file names. [FRQ 805091]
* Better resizing. [Bug 1822410]dkf2007-11-021-0/+4
|
* Better resizing behaviour. [Bug 1822601]dkf2007-11-011-0/+4
|
* Added list of Windows system colors. [Bug 945409]dkf2007-11-011-0/+4
|
* * doc/console.n: clarify availability of [console] in TkAqua.das2007-11-011-0/+2
|
* * macosx/tkMacOSXColor.c (GetThemeColor): improve translation of RGBdas2007-11-011-1/+12
| | | | pixel values into RGBColor.
* Make documentation use the name that scripts use as much as possible.dkf2007-11-011-0/+3
| | | | [Bug 1640073]
* Fixed mistake in [$t tag remove] docs. [Bug 1792191]dkf2007-11-011-0/+2
|