summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merged changes from feature branch dgp-privates-into-namespace,dgp2001-08-0144-2163/+2679
| | | | | implementing TIP 44. All Tk commands and variables matching tk[A-Z]* are now in the ::tk namespace.
* * generic/default.h: Include tkWinDefault.hmdejong2001-07-242-2/+8
| | | | when built with Cygwin or Mingw.
* The new tk_chooseDirectory dialog box implementation was sometimes givingdrh2001-07-191-1/+2
| | | | | an error like this: can't read "data(list)": no such element in array. The problem is a race condition. This patch should fix the problem.
* The code for generating postscript of a bitmap image was apparently neverdrh2001-07-141-46/+140
| | | | | | completed. The beginnings of the code was there but it generated diagnostic messages rather than proper postscript. This change fixes the problem.
* * unix/Makefile.in: Add AR and STLIB_LD variables.mdejong2001-07-117-151/+204
| | | | | | | | | * unix/configure: * unix/configure.in: Use STLIB_LD when defining MAKE_LIB and MAKE_STUB_LIB. Subst STLIB_LD, RANLIB, and AR. * unix/tcl.m4: Update from Tcl. * win/configure: Regen. * win/tcl.m4: Update from Tcl.
* * win/configure: Regen.mdejong2001-07-063-16/+35
| | | | * win/tcl.m4: Update from Tcl.
* * win/Makefile.in: Subst DEPARG directly insteadmdejong2001-07-065-38/+57
| | | | | | | | of relying on a variable. This will make Cygwin build faster since an extra exec will be avoided. * win/configure: Regen. * win/configure.in: Subst DEPARG. * win/tcl.m4: Update from Tcl.
* updated README with purlshobbs2001-07-053-10/+17
|
* updated README with purlsuid381722001-07-051-5/+3
|
* updated READMEs with purlsuid381722001-07-051-9/+4
|
* * tests/canvas.test:hobbs2001-07-043-14/+35
| | | | | | * generic/tkCanvPoly.c (PolygonToArea): Added patch that respects the polygon difference of including points in the polygon even when fill is empty. [Bug #226357]
* * win/Makefile.in: Remove PATHTYPE variable.mdejong2001-07-045-64/+73
| | | | | | * win/configure: Regen. * win/configure.in: Don't subst PATHTYPE. * win/tcl.m4: Update from Tcl.
* * win/Makefile.in: Don't use VPSEP, instead just use :mdejong2001-07-044-8/+11
| | | | | | in the VPATH. * win/configure: Regen. * win/configure.in: Don't subst VPSEP.
* Added missing backslash in Motif File Selector code.dkf2001-07-032-2/+7
|
* see changeshobbs2001-07-031-0/+25
|
* * generic/tkEntry.c: corrected missing Tcl_Release that causedhobbs2001-07-032-28/+52
| | | | | | font not freed complaints when trying valid cleanup calls. * generic/tkListbox.c: made use of Tcl_Preserve/Tcl_Release to prevent FMR errors in Display functions.
* * unix/tkUnixScale.c (TkpDisplayScale): corrected FMR when scalehobbs2001-07-031-2/+2
| | | | was deleted while calling its command.
* * generic/tkCanvArc.c:hobbs2001-07-037-279/+266
| | | | | | | | | | | * generic/tkCanvBmap.c: * generic/tkCanvLine.c: * generic/tkCanvPoly.c: * generic/tkCanvText.c: * generic/tkCanvWind.c: * generic/tkRectOval.c: corrected argument handling in Create<Item> functions that could lead to ABRs or FMRs and corrected names of argc/argv to objc/objv.
* * generic/tkImgGIF.c (Mgetc): corrected screwy use of ternaryhobbs2001-07-031-2/+3
| | | | operator and possible FMR.
* * generic/tkWindow.c (Tk_DestroyWindow): changed to usehobbs2001-07-031-7/+7
| | | | | Tcl_EventuallyFree instead of ckfree so that widgets that have references to a tkwin can use them.
* * library/console.tcl:hobbs2001-07-0310-45/+278
| | | | | | | | | | | | | | | | | | | | | * library/entry.tcl: * library/spinbox.tcl: * library/text.tcl: * library/tk.tcl: added private ::tk::GetSelection command to handle requesting selection. This is to support requesting UTF8_STRING before generic STRING on Unix. Changed Text, Spinbox, Entry and Console to use this command. * tests/select.test: * generic/tkSelect.c (Tk_CreateSelHandler, Tk_DeleteSelHandler): on Unix, a UTF8_STRING handler will be created when the user requests a STRING handler (in addition to the STRING handler). This provides implicit support for the new UTF8_STRING selection target. * unix/tkUnixSelect.c (TkSelEventProc, ConvertSelection): Added support for UTF8_STRING target. [RFE #418653, Patch #433283] * generic/tkInt.h: added utf8Atom to TkDisplay structure.
* * tests/listbox.test: changed 'darkblue' to 'white' in a testhobbs2001-07-031-3/+3
| | | | because it isn't a portable color name.
* * generic/tkEntry.c (DestroyEntry): used Tcl_EventuallyFreehobbs2001-07-022-4/+11
| | | | instead of ckfree for entryPtr to prevent FMRs. [Bug #413904]
* removed unnecessary directoryhobbs2001-07-021-115/+0
|
* * unix/Makefile.in:mdejong2001-06-273-2/+29
| | | | | | * win/Makefile.in: Add `make shell` target. This target will set the proper env vars before invoking wish from the build directory.
* * win/configure:mdejong2001-06-273-266/+83
| | | | | * win/configure.in: Revert cross compiling change accidently added during last checkin.
* * unix/configure: Regen.mdejong2001-06-265-7/+15
| | | | | | | * unix/configure.in: Fix last checkin by removing export since that only works in bash. * win/configure: Regen. * win/configure.in: Ditto.
* * unix/configure: Regen.mdejong2001-06-265-258/+488
| | | | | | | | * unix/configure.in: Set CFLAGS to "" if the user did not set CFLAGS in the env. This keeps AC_PROG_CC from adding "-g -O2" to the CFLAGS by default. * win/configure: Regen. * win/configure.in: Ditto.
* * win/configure: Regen.mdejong2001-06-264-33/+34
| | | | | * win/configure.in: Use RC_DEFINE flag from tcl.m4. * win/tcl.m4: Update from Tcl.
* * win/configure: Regen.mdejong2001-06-263-73/+41
| | | | * win/tcl.m4: Update from Tcl.
* * win/configure: Regen.mdejong2001-06-234-3/+17
| | | | | | | * win/tcl.m4 (SC_CONFIG_CFLAGS): Link to the imm32 library when building with mingw gcc. * win/tkWinX.c: Include the imm.h header to fix compiling with mingw gcc.
* * win/configure: Regen.mdejong2001-06-233-9/+27
| | | | | * win/configure.in: Add resource compiler fix from 8.3.3 to fix compiling with mingw.
* * win/configure: Regen.mdejong2001-06-233-2/+7
| | | | * win/tcl.m4: Fix silly typo in last checkin.
* * unix/Makefile.in: Set CFLAGS to @CFLAGS@ and @CFLAGS_DEFAULT@.mdejong2001-06-229-133/+165
| | | | | | | | | | | | | | | | | | Set LDFLAGS to @LDFLAGS@ and @LDFLAGS_DEFAULT@. Add LDFLAGS_DEBUG and LDFLAGS_OPTIMIZE to match the way CFLAGS_DEFAULT works. Use new LDFLAGS variable in the Makefile instead of @LDFLAGS@. * unix/configure: Regen. * unix/configure.in: Don't set CFLAGS to CFLAGS_DEFAULT, instead subst CFLAGS_DEFAULT into the Makefile. Add AC_SUBST for CFLAGS_DEBUG, CFLAGS_OPTIMIZE, LDFLAGS_DEFAULT, LDFLAGS_DEBUG, and LDFLAGS_OPTIMIZE. Remove unused LD_FLAGS subst. * unix/tcl.m4: Update from Tcl. * win/Makefile.in: Set CFLAGS to @CFLAGS@ and @CFLAGS_DEFAULT@. Set LDFLAGS to @LDFLAGS@ and @LDFLAGS_DEFAULT@. * win/configure: Regen. * win/configure.in: Don't set CFLAGS or LDFLAGS, instead subst CFLAGS_DEFAULT and LDFLAGS_DEFAULT into the Makefile. * win/tcl.m4: Update from Tcl.
* * win/configure:mdejong2001-06-223-4/+9
| | | | * win/tcl.m4: Update From Tcl.
* * doc/colors.n: Corrected bogus documentation with respect toericm2001-06-222-13/+19
| | | | | several shades of blue, all of which were listed as RGB 0 0 0. [Bug #432104].
* Added braces to expressions.dkf2001-06-1418-138/+153
|
* * win/configure: Regen.mdejong2001-06-063-44/+72
| | | | | * win/configure.in: Handle the --prefix option correctly it should default to /usr/local like the unix version.
* * doc/selection.n:hobbs2001-06-043-3/+19
| | | | | | * doc/clipboard.n: added SEE ALSOs to cross-reference selection and clipboard, with extra note for clipboard command in selection docs. [Patch #422256]
* * unix/tkUnixFont.c: Corrected support for iso10646 (X11 Unicode)hobbs2001-06-042-8/+224
| | | | | | | | | fonts on Unix. This adds a ucs-2be (UCS-2 Big Endian) encoding in Tk on Unix that is used for those fonts (X11 requires big-endianness). (welch) [Patch #406411; Bug #220890 #220899] This differs from the 8.3.3 patch by not adding ucs-2be in the preferred encodingList (seems works fine without). Added alias for jisx0201* fonts to jis0201 encoding. [Bug #414033]
* * win/tkWinX.c: moved the initialization of tkPlatformId fromhobbs2001-05-301-10/+11
| | | | | TkWinXInit to TkWinGetPlatformId because static builds could call it before it was initialized. [Bug #427278]
* win/tkWinKey.c (TkpSetKeycodeAndState): removed old debug infohobbs2001-05-302-9/+11
|
* Upgraded frame to use the newer TK_OPTIONpspjuth2001-05-284-142/+260
| | | | | style when processing configuration options. Some cleanup of bad comments and bad code. [part of patch #420861]
* * unix/configure:mdejong2001-05-235-145/+157
| | | | | | * unix/tcl.m4: * win/configure: * win/tcl.m4: Sync from Tcl sources.
* see ChangeLoghobbs2001-05-221-12/+20
|
* unix/tcl.m4: synced up wih Tcl tcl.m4. [Bug #419812]hobbs2001-05-221-2/+8
|
* * doc/TkInitStubs.3:hobbs2001-05-223-11/+11
| | | | | | * generic/tk.h: * generic/tkStubLib.c: CONST'ified Tk_InitStubs to match CONST changes to Tcl_PkgRequireEx.
* implement TIP11, -compound option for menubutton widgettmh2001-05-217-67/+368
|
* Added documentation for console command. (Right source tree this time!)dkf2001-05-162-0/+146
|
* * unix/configure: Regen.mdejong2001-04-255-160/+270
| | | | | | * unix/tcl.m4: Update from Tcl. * win/configure: Regen. * win/tcl.m4: Update from Tcl.