summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* Fixed indentation with last patch.HEADmasterDavid N. Welton2009-02-251-6/+6
|
* Removed SELECTION_VISIBLE define in favor of runtime option.David N. Welton2009-02-254-62/+53
|
* Make sure a height is specified - pick 15 as a default if there isDavid N. Welton2009-02-131-5/+8
| | | | absolutely nothing else.
* Added code to attempt to paint 'average height' stripes at the bottomDavid N. Welton2009-02-042-7/+17
| | | | of trees.
* * First version of -fillstripes patch.David N. Welton2009-02-043-7/+41
|
* Fixed potentially uninitialized variable when calculating column header ↵treectrl2008-10-081-1/+3
| | | | layout. Thanks to Mats Bengtsson (I think) who submitted the fix.
* Fixed [Bug 1915466] panic in Range_ItemUnderPoint thanks to Mats Bengtsson ↵treectrl2008-10-081-3/+3
| | | | (I think) who submitted the fix.
* Added option -showrootchildbuttons.treectrl2008-07-213-18/+43
| | | | Bumped version to 2.2.7.
* Fixed comments.treectrl2008-07-211-3/+3
|
* Fixed freeing an uninitialized variable when asking for the value of an ↵treectrl2008-07-211-8/+8
| | | | unknown column option.
* Added debug code to detect use of uninitialized TreePtrList.treectrl2008-07-211-1/+20
|
* Increased size of DotState struct to prevent Win64 crash. [BUG 1911322]treectrl2008-03-121-2/+2
|
* Fixed integer overflow in the "item bbox" command when getting the bounds of ↵treectrl2008-02-294-12/+18
| | | | a column or element in a big list. New TreeRectangle struct replaces the use of XRectangle which uses short integers.
* * generic/tkTreeTheme.c: use Get|SetWindowLongPtr to work withhobbs22008-02-281-3/+3
| | | | Win64. Requires latest Windows headers.
* * generic/tkTreeTheme.c (DllMain): get module at dll load time tohobbs22008-02-231-1/+19
| | | | avoid GetModuleHandleEx call.
* * generic/tkTreeNotify.c (Percents_ItemDelete, ExpandItemList)hobbs22008-02-222-66/+50
| | | | | | | (Percents_ItemVisibility, Percents_Selection): remove TclFormatInt * generic/qebind.c (QE_ExpandNumber): references and add ExpandItemList to simplify item list expansion. Corrects crash with 8.4-built treectrl used in 8.5.
* Added a Win32 .manifest file and associated .rc file to load version 6 of ↵treectrl2008-02-091-3/+130
| | | | comctl32.dll for visual themes. Added winrc.m4 for rules to compile the .rc file. Changed the Makefile to merge in any Microsoft-compiler-created manifest file (for picking the correct MSVCRT). Changed the theme init code to properly check that comctl32.dll version 6 is actually being used.
* Bump copyright to 2008.treectrl2008-01-2215-30/+30
|
* Tree_FillRegion: allow building for Tk 8.4.14 or earlier to work under OSX.treectrl2008-01-221-2/+3
|
* Fixed compiler warnings.treectrl2008-01-222-5/+7
|
* Fix the dotted-rectangle drawing code on OSX Tk 8.4.17+/8.5.0+.treectrl2008-01-211-1/+20
|
* Fixed inverted Tk version check, was < 8.4.17 should be >= 8.4.17.treectrl2008-01-211-2/+2
|
* Fixes for OSX 8.4.17/8.5.0 where TkRegion changed from RgnHandle to HIShapeRef.treectrl2008-01-211-3/+13
|
* ANSI'd 3 callback functions to shutup MSVC compiler.treectrl2007-12-141-10/+10
|
* Fixed an old bug caused by a MSVC compiler optimization bug that stopped ↵treectrl2007-12-141-3/+5
| | | | items being redrawn when the only change in appearance was the expand/collapse button needing to be redrawn. [BUG 1353969]
* Fixed a comment.treectrl2007-12-141-4/+4
| | | | Cast as "void *" two arguments to memcpy to shutup MSVC compiler.
* Added #ifdef around Tk_InitStubs to handle "const" difference between 8.4 ↵treectrl2007-12-141-1/+5
| | | | and 8.5.
* Comment updated.treectrl2007-12-141-3/+3
|
* The new option -columntagexpr is checked to disable tag expressions in ↵treectrl2007-11-121-19/+81
| | | | column descriptions. [Patch 1684169]
* The new option -itemtagexpr is checked to disable tag expressions in item ↵treectrl2007-11-121-17/+89
| | | | | | descriptions. Changed the [item sort] code to be a "stable" sort. This means that the pre-sort order of two equal items is used as a tie-breaker. [Request 1782405]
* Added -itemtagexpr and -columntagexpr options.treectrl2007-11-122-2/+11
|
* Check for potential NULL pointer in TreeTheme_ThemeChanged. [BUG 1805700]treectrl2007-10-031-8/+13
|
* * generic/tkTreeUtils.c (Tree_FillRegion): disable OS X specifichobbs22007-05-111-2/+2
| | | | | code as Tk improvements have made it unnecessary, and it actually made it act funny in 8.5.
* Fixed partially-exposed transparent photo images not being redrawn when ↵treectrl2007-04-218-159/+226
| | | | scrolling under X11. This involved creating a wrapper around Tk_RedrawImage to ensure proper clipping of the source image to the bounds of the destination drawable. A new data type TreeDrawable remembers the height and width of a drawable.
* Fixed [item cget -button] always returning 0 when the value of the option ↵treectrl2007-03-031-2/+2
| | | | was not 'auto'.
* Check version of comctl32.dll when determining whether the application is ↵treectrl2007-02-061-4/+39
| | | | using visual styles under Windows. Apparently IsAppThemed and IsThemeEnabled aren't enough.
* Misc format changes.treectrl2007-01-311-42/+99
| | | | | Fixed excess allocation when ALLOC_HAX is undefined. Revert OSX change to Tree_VDotLine; does XDrawPoint work on OSX or not?
* Fixed flickering of borders with "-doublebuffer window" when resizing or ↵treectrl2007-01-311-23/+43
| | | | | | | exposing areas of the widget. Call FormatResult in two places. Misc format changes.
* Misc format changes.treectrl2007-01-311-3/+3
|
* Call FormatResult in two places.treectrl2007-01-311-14/+17
| | | | Misc format changes.
* Make TreeElemTypeXXX variables start with lowercase letter.treectrl2007-01-311-15/+15
|
* Make TreeElemTypeXXX variables start with lowercase letter.treectrl2007-01-311-44/+45
| | | | Added PerStateCO_Init to stubs table.
* Make TreeElemTypeXXX variables start with lowercase letter.treectrl2007-01-311-20/+34
| | | | | Added PerStateCO_Init to stubs table. Format long lines.
* (vsnprintf): _vsnprintf on Windowshobbs22007-01-261-1/+5
|
* Renamed many symbols to avoid collisions under ELF.treectrl2007-01-2312-627/+658
| | | | Renamed Element to TreeElement_.
* Tcl_Preserve the associated Tk_Window otherwise we get crashes while freeing ↵treectrl2007-01-221-1/+8
| | | | config options after a <Destroy> event when the TreeCtrl struct is eventually freed. Reason: if the TreeCtrl struct was Tcl_Preserved before the window was destroyed, then tkwin is NULL when TreeDestroy finally gets called.
* Moved tclInt.h to the main header file.treectrl2007-01-211-5/+82
| | | | dbwin() now sets a global variable called dbwin with a string. The string can be ignored, printed to stdout, written to a log file, etc.
* Moved tclInt.h to the main header file.treectrl2007-01-211-2/+1
|
* DumpDInfo processes arguments itself rather than letting tkTreeCtrl.c do it.treectrl2007-01-211-7/+45
|
* Moved tclInt.h to the main header file.treectrl2007-01-211-6/+4
| | | | Declare new dbwin stuff, remove #include "dbwin.h".