summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* Removed unused code.treectrl2006-09-081-52/+20
| | | | Added -visible option to [item count].
* Bumped copyright to 2006.treectrl2006-09-0515-30/+38
|
* * generic/tkTreeDisplay.c (Tree_Display): Allow Tree_DeselectHiddenhobbs22006-08-163-16/+31
| | | | | | | * generic/tkTreeItem.c (Item_Configure): to be deferred to next * generic/tkTreeCtrl.h: redraw by calling Tree_DInfoChanged(tree, DINFO_REDO_SELECTION). Significantly improves performance of multiple item visibility changes.
* * generic/tkTreeItem.c (Item_Configure): on checking for -visible,hobbs22006-08-151-2/+3
| | | | verify that the value actually changed, because it can be expensive.
* * generic/tkTreeCtrl.c (TreeWidgetCmd): set the tk caret when thehobbs22006-08-041-1/+7
| | | | active item changes.
* Fix cut-and-paste error in comment.treectrl2006-07-111-2/+2
|
* Playing around with span widths.treectrl2006-07-111-1/+14
|
* Did some work on better distributing space when a style spans multiple ↵treectrl2006-07-111-50/+232
| | | | | | | | | | columns. Not used yet. Renamed SortData.count to columnCount for readability. Reformatted some function headers. CompareProc: identity test to save work. find_pivot: bug fix. ItemSortCmd: fix memory leak with -command option.
* * generic/tkTreeCtrl.c (LoupeCmd): correct loupe on OS X x86.hobbs22006-04-061-1/+16
|
* Improve appearance of list header under OSX/Aqua. [Patch 1356447]treectrl2005-11-181-2/+22
|
* Fix compile issue on Mac [Patch 1311956]treectrl2005-10-151-1/+3
|
* Format fix with braces.treectrl2005-09-281-6/+4
|
* Fix a comment typo.treectrl2005-09-281-2/+2
|
* * generic/tkTreeCtrl.c (LoupeCmd): don't capture display (ithobbs22005-09-281-3/+1
| | | | causes flashing) on OS X.
* Hide cursor on OS X and capture display while grabbinghobbs22005-09-271-1/+5
|
* * generic/tkTreeCtrl.c (LoupeCmd): add OS X support. Correcthobbs22005-09-271-24/+110
| | | | | Win32 code to use grab size constraints and honor the virtual system metrics (OS X needs similar correction still).
* reorg used vars into right areashobbs22005-09-251-4/+4
|
* * demos/demo.tcl: just check for 'loupe' to run loupe demohobbs22005-09-251-32/+91
| | | | | * generic/tkTreeCtrl.c (LoupeCmd): add Win32 code to enable loupe functionality on Windows.
* Removed declarations of unused functions.treectrl2005-09-211-4/+1
|
* Add Tcl block comments above each function. Comment function arguments.treectrl2005-09-211-46/+778
|
* Add Tcl block comments above each function. Comment function arguments.treectrl2005-09-211-142/+1630
|
* Add Tcl block comments above each function. Comment function arguments.treectrl2005-09-191-80/+725
|
* Add Tcl block comments above each function. Comment function arguments.treectrl2005-09-171-17/+168
|
* Add Tcl block comments above each function. Comment function arguments.treectrl2005-09-161-10/+200
|
* Converted to tab+space indentation.treectrl2005-09-164-1789/+1789
|
* Added Tcl block comments above each function. Commented function arguments.treectrl2005-09-161-100/+1112
| | | | Fixed bug where the header of a column would not be redisplayed if an image displayed in the header was changed.
* Converted to tab+space indentation.treectrl2005-09-161-4131/+4137
|
* Added Tcl block comments above each function. Commented function arguments. ↵treectrl2005-09-161-472/+826
| | | | Converted to tab+space indentation.
* Comment function arguments.treectrl2005-09-161-124/+531
|
* Removed unused code.treectrl2005-09-151-38/+3
| | | | Changed error message for 2 commands.
* Removed declarations of unused functions.treectrl2005-09-151-14/+1
|
* Add Tcl block comments above each function.treectrl2005-09-151-162/+1510
|
* Add Tcl block comments above each function. Comment function arguments.treectrl2005-09-151-102/+1705
|
* #include <tclInt.h> on OSX for TCL_ALIGN definition.treectrl2005-09-141-1/+2
|
* Fixed alignment problem with allocated array of structures affecting some ↵treectrl2005-09-091-5/+5
| | | | systems.
* Commented AllocHax stuff. Changed how AllocHax_Free calculates the address ↵treectrl2005-09-071-13/+59
| | | | of the AllocElem using Tcl_DbCkfree() as a guide.
* Removed wipefree() function.treectrl2005-09-071-13/+6
| | | | | Replaced wipefree() calls with WIPEFREE(). AllocHax_Free(): replaced memset() with WIPE().
* Style_DoLayoutH/V: Removed unused return values.treectrl2005-09-071-21/+12
| | | | Replaced wipefree() with WCFREE().
* Changed TreeItem_RemoveColumn to delete a range of columns. This is to ↵treectrl2005-09-071-15/+16
| | | | support the updated [column delete] command.
* [column delete] now accepts an optional second argument so a range of ↵treectrl2005-09-071-31/+53
| | | | | | columns can be deleted in one call. Replaced wipefree() call with WCFREE macro.
* Fixed a typo.treectrl2005-09-071-2/+2
|
* Added an argument to TreeItem_RemoveColumn to delete a range of columns to ↵treectrl2005-09-071-6/+13
| | | | | | support the updated [column delete] command. Removed the wipefree() function, and changed WFREE to only memset() freed memory when TREECTRL_WIPE_MEM is defined. The STATIC_FREE was changed to take advantage of this.
* * generic/tkTreeStyle.c (Style_DoLayout): use if instead ofhobbs22005-08-101-4/+6
| | | | tertiary ?: operator for funcs with different return types.
* Simplified and corrected calculation of item width. Fixed bug where ↵treectrl2005-07-231-56/+49
| | | | | | indentation wasn't counted if an item-column had no style. Added call to XSycn() to improve debugging of display.
* Eliminate "type-punned pointer" warnings from GCC.treectrl2005-07-233-46/+80
|
* Don't overwrite object result of interpreter in case it is shared.treectrl2005-07-231-7/+8
|
* Added offset args to Tree_DrawTiledImage so image element can use it.treectrl2005-07-161-2/+8
| | | | Redo ranges when an item's -height option changes.
* Added -tiled option to image element.treectrl2005-07-161-1/+22
|
* Added offset args to Tree_DrawTiledImage so image element can use it.treectrl2005-07-161-2/+2
|
* Range_Redo: Add missing braces.treectrl2005-07-161-39/+38
| | | | Added offset args to Tree_DrawTiledImage so image element can use it.