summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
...
* off-by-one error in recent cleanup fixvincentdarley2003-12-101-2/+2
|
* fix to memory leaks and reading of freed memoryvincentdarley2003-12-091-1/+15
|
* performance of lines containing 10000+ charactersvincentdarley2003-12-054-46/+149
|
* fix to text widget tabs and xy-scroll-commandvincentdarley2003-12-044-52/+73
|
* Typo fixdkf2003-12-031-2/+2
|
* * generic/tkMenu.c (MenuVarProc): prevent this from triggeringhobbs2003-12-031-5/+13
| | | | while interp is being destroyed.
* Corrected targetWinPtr check, now if winPtr==0 and targetWinPtr!=0 thena_kovalenko2003-11-251-2/+2
| | | | the event is not ignored any more
* correct handling of interpolated tabs using fractional pixel widthsvincentdarley2003-11-213-25/+40
|
* fix to two test suite bugsvincentdarley2003-11-211-16/+53
|
* Stupid typo fix. [Bug 843395]dkf2003-11-181-2/+2
|
* * generic/tkMenubutton.h: fixed compound menubutton handling likehobbs2003-11-172-18/+30
| | | | | | * generic/tkMenubutton.c: *button corrections of 2003-04-25. * mac/tkMacMenubutton.c (TkpDisplayMenuButton): * unix/tkUnixMenubu.c (TkpDisplayMenuButton):
* documentation and cleanupvincentdarley2003-11-161-28/+38
|
* single line wraps to whole display fixvincentdarley2003-11-151-5/+46
|
* fixed tab interpretation inconsistencyvincentdarley2003-11-151-30/+58
|
* cleanupvincentdarley2003-11-151-18/+20
|
* fix two more old text widget bugsvincentdarley2003-11-155-102/+138
|
* Fixes to prevent infinite event sequences in 'make test' on slow connectionsdkf2003-11-141-70/+68
| | | | Also a bit of whitespace/style police work. [Bug 837300]
* Tcl_EvalObjv is more robust than Tcl_VarEvaldkf2003-11-131-16/+22
|
* old tk text widget bugs fixedvincentdarley2003-11-121-2/+2
|
* old tk text widget bugs fixedvincentdarley2003-11-125-32/+54
|
* * generic/tkButton.c (ConfigureButton): abort option processing ifhobbs2003-11-121-1/+8
| | | | the button was deleted. [Bug #824479]
* * generic/tkMenuDraw.c (TkPostSubmenu): add {} around menu name inhobbs2003-11-121-3/+3
| | | | | case it has spaces when calling Tcl_VarEval. This is a hack until this is rewritten for proper Tcl_Obj handling. [Bug #723856]
* * generic/tkListbox.c (ListboxDeleteSubCmd, ListboxListVarProc):hobbs2003-11-111-3/+4
| | | | free itemconfig data when removing it from table. [Bug #836483]
* Minor int vs. unsigned fixes to stop GCC warningsdkf2003-11-101-5/+7
|
* handling of zero-pixel text widgetsvincentdarley2003-11-101-66/+74
|
* elide tag handling, once morevincentdarley2003-11-084-80/+190
|
* better elide tag handlingvincentdarley2003-11-079-129/+225
|
* another elide/tkchat/tkTextDisp.c fixvincentdarley2003-11-071-5/+20
|
* text widget and test suite fixesvincentdarley2003-11-031-11/+14
|
* Stop some complaints about signed/unsigneddkf2003-11-031-7/+7
|
* size_t vs int fixvincentdarley2003-10-311-5/+7
|
* * generic/tkImgPhoto.c (ImgPhotoBlendComplexAlpha): OS X useshobbs2003-10-311-2/+2
| | | | 32bpp images internally always, so make use of the assumption.
* text widget bug fixvincentdarley2003-10-311-2/+11
|
* TIP 155 implementationvincentdarley2003-10-3110-1016/+4597
|
* * generic/tkImgPhoto.c (ImgPhotoBlendComplexAlpha): add alphahobbs2003-10-311-16/+251
| | | | | blending for images with partial transparency. Only operates for 15bpp+ display. [Bug 809157]
* Whitespace/style policedkf2003-10-301-201/+262
|
* * generic/tkInt.h: move TkGetOptionSpec to stubs intDeclshobbs2003-10-138-11/+2659
| | | | | | | | | | * generic/tkIntDecls.h: * generic/tkInt.decls: * generic/tkStubInit.c: * tkDecls.h: updated with latest genstubs * tkIntPlatDecls.h: * tkIntXlibDecls.h: * tkPlatDecls.h:
* Register the type of text indices. Also some exported symbol name policing...dkf2003-10-103-6/+8
|
* Fix double-free in style engine [Bug #798211]jenglish2003-10-061-115/+12
|
* Private functions should be either static or prefixed with 'Tk' (thanks GPS!)dkf2003-09-294-17/+17
|
* Fixed memory leak (bug 802435)chengyemao2003-09-201-11/+11
|
* Fixed a small mistake in previous checkin.pspjuth2003-09-181-5/+6
|
* Implementation of TIP#147, "Make Grid's Column/Row Configure Easier".pspjuth2003-09-181-110/+170
|
* * generic/tkImage.c: Stopped [image create] from generating andgp2003-09-171-4/+7
| | | | | * tests/image.test: image command name that would overwrite an existing command name. Thanks to Michael Schlenker. [Bug 808039].
* Reworked a part of grid's geometry computationspspjuth2003-09-161-20/+86
| | | | to handle some tricky cases better. [Bug #792387]
* * doc/wish.1: Implementation of TIPs 137/151.dgp2003-09-051-23/+43
| | | | | | | | | | | * generic/tkMain.c (Tk_MainEx): Added recognition of the -encoding * tests/main.test: command line option by Tk_MainEx() and thus by wish, and any other program built on Tk_MainEx(). [Patch 800139]. This is a ***POTENTIAL INCOMPATIBILITY*** only for those C programs that embed Tcl and Tk, build on Tk_MainEx(), and make use of Tk_MainEx's former ability to pass a leading "-encoding" option to interactive shell operations.
* Removed unused variable [Bug 664783]dkf2003-08-271-3/+2
|
* Use Tcl_Obj-based interfaces for working with user-supplied font maps.dkf2003-08-201-27/+24
|
* * generic/tkPanedWindow.c(PanedWindowWorldChanged):jenglish2003-08-191-2/+3
| | | | | Set window background from the -background resource. Fixes [BUG #791500 "PanedWindow refresh glitches on X"]
* Faster color data parsing code for the [$photo put] subcommand.dkf2003-08-151-21/+52
|