summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tkImgGIF.c: added GIF writing that uses miGIF RLEhobbs1999-11-301-3/+767
| | | | [Bug: 2039, new patch]
* see loghobbs1999-11-301-0/+5
|
* minor whitespace cleanuphobbs1999-11-302-38/+8
|
* * library/tk.tcl: fixed missing $w in ::tk::PlaceWindowhobbs1999-11-301-2/+19
|
* see loghobbs1999-11-301-0/+5
|
* * generic/tkListbox.c: fixed 'get' of listbox to return a stringhobbs1999-11-291-3/+10
| | | | when only one item is requested.
* fixed listboxhobbs1999-11-291-0/+5
|
* * library/clrpick.tcl:hobbs1999-11-245-131/+120
| | | | | | | | | * library/msgbox.tcl: * library/tk.tcl: * library/tkfbox.tcl: * library/xmfbox.tcl: fixed dialogs to center over -parent, added utility functions ::tk::PlaceWindow, ::tk::SetFocusGrab, ::tk::RestoreFocusGrab to tk.tcl to help
* updated dialogshobbs1999-11-241-0/+10
|
* ChangeLog commit.ericm1999-11-241-0/+6
|
* * tests/listbox.test: Added a test to check that the topIndex isericm1999-11-242-2/+27
| | | | | | | update when items are removed from the listvar variable. * generic/tkListbox.c: Added a check the updates the topIndex when items are removed from the listvar variable.
* Additions to update vertical scrollbar info for listboxes when listvar changes.ericm1999-11-243-3/+36
|
* * generic/tk.h:hobbs1999-11-233-9/+17
| | | | | | | * generic/tkConfig.c: added support for TK_OPTION_DONT_SET_DEFAULT as equiv for TK_CONFIG_DONT_SET_DEFAULT * generic/tkListbox.c: added TK_OPTION_DONT_SET_DEFAULT to the item specs
* see loghobbs1999-11-231-0/+8
|
* Replaced references to mkinstalldirs with mkdir -pwart1999-11-231-5/+4
|
* Removed bogus dependency on "installdirs"wart1999-11-231-2/+2
|
* see loghobbs1999-11-191-0/+16
|
* * win/tkWinInt.h: removed TkFontAttributes typedef (washobbs1999-11-193-8/+8
| | | | | | | | redundant with tkFont.h). * win/tkWinPort.h: put #ifndef __GNUC__ around redefinition of str[n]casecmp, as cygwin uses the originals. * win/tkWinX.c: changed GetCurrentTime to GetTickCount (the former is deprecated). [Bug: 2053]
* * generic/tkColor.c:hobbs1999-11-193-14/+18
| | | | | | | | * generic/tkColor.h: fixed Tk_NameOfColor to work correctly, with minor change to TkColor struct. * generic/tkConsole.c: added static declaration to ConsoleDeleteProc function (proto already had it)
* * tests/listbox.test: Added tests for itemcget and itemconfigure.ericm1999-11-193-90/+691
| | | | | | | | * doc/listbox.n: Added documentation for -listvar option and for itemconfigure and itemcget commands. * generic/tkListbox.c: Added support for itemconfigure/itemcget listbox subcommands (addresses rfe #936)
* ChangeLog commit.ericm1999-11-181-0/+4
|
* * tests/listbox.test: Updated tests for new error messages.ericm1999-11-182-8/+11
| | | | * generic/tkListbox.c: Improved error messages for bad -listvar's.
* Use mkdir -p to create the install directories (like Tcl already does)wart1999-11-181-6/+7
|
* * tests/listbox.test: Added tests for bad -listvar's.ericm1999-11-183-16/+60
| | | | | * generic/tkListbox.c: Added handlers for bad -listvar's (ie, bad lists)
* * tests/listbox.test: Added tests for ListboxUpdateHScrollbar.ericm1999-11-172-4/+45
| | | | | * generic/tkListbox.c: Changed some old static buffers to base size on TCL_DOUBLLE_SPACE instead of (completely) hardcoding the size.
* * tests/listbox.test: New tests for -listvar functionality, and anericm1999-11-173-31/+212
| | | | | | odd extra case that wasn't covered before. * generic/tkListbox.c: Tests exposed some bugs, now fixed.
* * tests/listbox.test: Fixed tests to comply with new objectifiedericm1999-11-174-27/+18
| | | | | | | | error messages. No -listvar specific tests yet. * win/tkWinDefault.h: * unix/tkUnixDefault.h: * mac/tkMacDefault.h: Added default value for -listvar option.
* * generic/tkWindow.c: Changed "listbox" mapping from old-school toericm1999-11-173-867/+1362
| | | | | | | | | | | new-school objectified command. * generic/tkListbox.c: Objectified listbox; added support for -listvar option. Converted internal structure to use a Tcl list object to store the data. * generic/tkInt.h: Changed reference to Tk_ListboxCmd to Tk_ListboxObjCmd.
* Removed bad option "-geometry" to toplevelwart1999-11-131-2/+2
|
* Added "wm geometry" calls in some tests that were waiting for the user towart1999-11-125-6/+12
| | | | | place a window manually. The Tk test suite can now run on twm with no user intervention.
* Added $(TCLTESTARGS) to the test target so that users can set additionalwart1999-11-121-2/+2
| | | | | | test harness arguments on the make command line: % make test TCLTESTARGS="-verbose pbs"
* * win/winMain.c: corrected winMain to not do a DebugBreak whenhobbs1999-11-101-2/+6
| | | | returning an error message from the top level
* * generic/tkGrid.c: changed Tcl_Alloc to ckallochobbs1999-11-102-9/+9
| | | | | * generic/tkEntry.c: fixed C expr error in destroy of entry that could lead to 'malformed bucket chain' error
* see loghobbs1999-11-101-0/+10
|
* * win/tkWinKey.c: fixed XKeysymToKeycode to handle mapping ofhobbs1999-10-301-10/+13
| | | | symbolic keysyms (Left, Home, ...) with event generate
* * library/entry.tcl: change tkEntrySeeInsert to avoid the usehobbs1999-10-301-5/+3
| | | | | | | of a while loop that could eat CPU tremendously. Behavior of moving the cursor at the right edge changes slightly (previously it tried to keep the cursor at the right edge, now it moves the cursor to a "central right" location - better IMHO).
* see loghobbs1999-10-301-0/+11
|
* * makefile.vc: changed 'c:/program files' to c:/progra~1hobbs1999-10-292-8/+6
|
* * tests/imgPhoto.test: added Img patch (Nijtmans) with docs,hobbs1999-10-291-5/+5
| | | | | headers #def'd with USE_OLD_IMAGE. Upgrades image stuff to Tcl_Obj API, adds alpha channel (images are now 32 bpp)
* * generic/tk.h:hobbs1999-10-2910-424/+1422
| | | | | | | | | | | | | | | * generic/tkCmds.c: * generic/tkImage.c: * generic/tkImgBmap.c: * generic/tkImgGIF.c: * generic/tkImgPPM.c: * generic/tkImgPhoto.c: * generic/tkInt.h: * generic/tkTest.c: * generic/tkWindow.c: * tests/imgPhoto.test: added Img patch (Nijtmans) with docs, headers #def'd with USE_OLD_IMAGE. Upgrades image stuff to Tcl_Obj API, adds alpha channel (images are now 32 bpp)
* * doc/CrtImgType.3:hobbs1999-10-294-42/+107
| | | | | | * doc/CrtPhImgFmt.3: * doc/FindPhoto.3: * doc/photo.n: new docs for Img patch mods
* see loghobbs1999-10-291-0/+22
|
* * unix/Makefile.in: added ChangeLog to dist archivehobbs1999-10-201-3/+3
|
* * library/scrlbar.tcl: changed tkScrollButtonUp to check forhobbs1999-10-201-4/+7
| | | | | existence of tkPriv(relief) in order to avoid spurious release events
* see loghobbs1999-10-201-0/+8
|
* 1999-09-24 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-10-0113-62/+76
| | | | | | | | | | | | | * */README: * win/makefile.vc: * */configure.in: * generic/tk.h: * library/tk.tcl: up'd to 8.3a1 * unix/Makefile.in: changed 'mkdir' to 'mkdir -p' * library/dialog.tcl: changed {Times 18} to {Times 12} for dialog font.
* 1999-09-16 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-09-2111-34/+65
| | | | | | | | | | | | | | | | | | | | | | | * generic/tkFont.c: fixed processing of font options and error returned [Bug: 2075] * win/tkWinWm.c: fixed bug in 'wm deiconify' that raised the wrong toplevel, and changed it to not set focus on overridden toplevels 1999-09-15 Jeff Hobbs <hobbs@scriptics.com> * unix/aclocal.m4: added fix for FreeBSD-[1-2] recognition [Bug: 2070] and fix to AIX-* to get ldAix right [Bug: 2624], fixed AIX version check (readjust from 8-21 fix) and several other config fixes for AIX * mac/tkMacMenubutton.c: * unix/tkUnixMenubu.c: fixed permanently stippled menubutton image * win/tkWinButton.c: fixed possible pointer smash [Bug: 2733] 1999-09-14 Jeff Hobbs <hobbs@scriptics.com> * win/tkWinMenu.c: fix for stack overrun in GetTextFace [Bug: 909]
* added DEMOPROGSstanton1999-09-181-1/+3
|
* 1999-09-14 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-09-152-10/+14
| | | | * win/tkWinMenu.c: fix for stack overrun in GetTextFace [Bug: 909]
* Made sure that the tkConfig.sh file is always installed.wart1999-09-102-4/+6
| | | | | configure now substitutes XINCLUDES in tkConfig.sh. Needed for Tk extensions like Itk.