summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* updated READMEs with purlsuid381722001-07-051-9/+4
| | | FossilOrigin-Name: 42525a0e5c1d2396ab615902de9978747f2f9d46
* * 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] FossilOrigin-Name: 3734d49c9c1e7e95032d4a89c712872746b52fd7
* * 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. FossilOrigin-Name: 3e3fd403b34cc514397b340ab17f7368fe9409ae
* * 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. FossilOrigin-Name: 93c90324450dc4987b41f57753ee7622786063dd
* Added missing backslash in Motif File Selector code.dkf2001-07-032-2/+7
| | | FossilOrigin-Name: 227ace3f95ca2dff12175142c9f8f6e7e49563a1
* see changeshobbs2001-07-031-0/+25
| | | FossilOrigin-Name: 69a098c5255abeddddb18b095ee6a0cc700f5f21
* * 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. FossilOrigin-Name: 3991a01b3cdeede781f85772fe2dd2e2f00237f4
* * unix/tkUnixScale.c (TkpDisplayScale): corrected FMR when scalehobbs2001-07-031-2/+2
| | | | | | was deleted while calling its command. FossilOrigin-Name: 54a7832c554e62ad3dfd3967774ea75cb9a24ea3
* * 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. FossilOrigin-Name: 3f8a55343c45de15bfeb8794b4c28537b170b719
* * generic/tkImgGIF.c (Mgetc): corrected screwy use of ternaryhobbs2001-07-031-2/+3
| | | | | | operator and possible FMR. FossilOrigin-Name: cd61f88f766b6d619fc26a1fed396ff4ac95dae2
* * 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. FossilOrigin-Name: 7be9ab44bfbf57e0725d9de3c1ff0b307662a423
* * 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. FossilOrigin-Name: 3993717faaae94fc303c678c9c3637465ce2c0a4
* * tests/listbox.test: changed 'darkblue' to 'white' in a testhobbs2001-07-031-3/+3
| | | | | | because it isn't a portable color name. FossilOrigin-Name: a72cf27d838711ec442a51d4af9c674dc4042862
* * generic/tkEntry.c (DestroyEntry): used Tcl_EventuallyFreehobbs2001-07-022-4/+11
| | | | | | instead of ckfree for entryPtr to prevent FMRs. [Bug #413904] FossilOrigin-Name: 615fc8509e95ebe4ac83c04c558a7a03ffd37364
* removed unnecessary directoryhobbs2001-07-021-115/+0
| | | FossilOrigin-Name: 23082bfc0c09e8e4d9fb354a11690afcf424d56a
* * 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. FossilOrigin-Name: dbe847845b323099b04124b4b5f8975f6435644e
* * win/configure:mdejong2001-06-273-266/+83
| | | | | | | * win/configure.in: Revert cross compiling change accidently added during last checkin. FossilOrigin-Name: 9e4c1b23a4207c6ddbcba7d0ddf4b40a4f25ec73
* * 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. FossilOrigin-Name: 66c3f1b8daaa907900e141007409226e0b3a90a2
* * 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. FossilOrigin-Name: f747663faa5793c06e2207dacdd6773ff57f1e2e
* * win/configure: Regen.mdejong2001-06-264-33/+34
| | | | | | | * win/configure.in: Use RC_DEFINE flag from tcl.m4. * win/tcl.m4: Update from Tcl. FossilOrigin-Name: 2d319b6f1c8f6dd1b64b8cd4b648e21ac0f725b9
* * win/configure: Regen.mdejong2001-06-263-73/+41
| | | | | | * win/tcl.m4: Update from Tcl. FossilOrigin-Name: b7f81421962974e382f406aba2c3529fa97ecc9b
* * 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. FossilOrigin-Name: e3e493f97716ab52679c32d79dc0c08507a8e735
* * win/configure: Regen.mdejong2001-06-233-9/+27
| | | | | | | * win/configure.in: Add resource compiler fix from 8.3.3 to fix compiling with mingw. FossilOrigin-Name: e3cbbd52f6c593d02bb4c044fd5a6405f0ee5f68
* * win/configure: Regen.mdejong2001-06-233-2/+7
| | | | | | * win/tcl.m4: Fix silly typo in last checkin. FossilOrigin-Name: 4e8df3daa2594d4bf3cea06b1e3e931f98b8a5e0
* * 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. FossilOrigin-Name: 3b5982868ea872a09578ed4b2b40c3be4653583d
* * win/configure:mdejong2001-06-223-4/+9
| | | | | | * win/tcl.m4: Update From Tcl. FossilOrigin-Name: d8467c9a550ae7107d7e2bbaee2aa68476b61874
* * 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]. FossilOrigin-Name: 480300ff4bc617da809590a862c4fc90fa1f9c43
* Added braces to expressions.dkf2001-06-1418-138/+153
| | | FossilOrigin-Name: 486fbd3c546a027744d7834fc68070af4f182d25
* * 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. FossilOrigin-Name: 7379372dd47993f33f138d68c9130011e3bc1f14
* * 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] FossilOrigin-Name: 01778f794add7ed904027e2720663cb30030dac2
* * 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] FossilOrigin-Name: a28f6c2d4d33b7b9d1f08651766345ddb505fdfa
* * 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] FossilOrigin-Name: 0a94e34e9f35522faf20c96c321c2c998a26ba18
* win/tkWinKey.c (TkpSetKeycodeAndState): removed old debug infohobbs2001-05-302-9/+11
| | | FossilOrigin-Name: 22fe92614734ce2e630cdbaa6826a93f59991176
* 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] FossilOrigin-Name: 1832807b99bc1a5da1cd0ec94688656e4901cab6
* * unix/configure:mdejong2001-05-235-145/+157
| | | | | | | | * unix/tcl.m4: * win/configure: * win/tcl.m4: Sync from Tcl sources. FossilOrigin-Name: 32d7a7f3dfbfa173930b588a1772f96a10b8643e
* see ChangeLoghobbs2001-05-221-12/+20
| | | FossilOrigin-Name: 5d139fbbcea6e40b44d752641bbad32e3798db8e
* unix/tcl.m4: synced up wih Tcl tcl.m4. [Bug #419812]hobbs2001-05-221-2/+8
| | | FossilOrigin-Name: 0d5c588377b69bdb7d1f0117dcb73bf9b20a9ad3
* * 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. FossilOrigin-Name: 158efb47bd4b909149ff7d02159daddf59d0110a
* implement TIP11, -compound option for menubutton widgettmh2001-05-217-67/+368
| | | FossilOrigin-Name: 8942e4db3ce82fe98c533c9e2140d9814158d4bb
* Added documentation for console command. (Right source tree this time!)dkf2001-05-162-0/+146
| | | FossilOrigin-Name: f81062cea6e1f429d97f8f3a459e3b7d10c180d6
* * unix/configure: Regen.mdejong2001-04-255-160/+270
| | | | | | | | * unix/tcl.m4: Update from Tcl. * win/configure: Regen. * win/tcl.m4: Update from Tcl. FossilOrigin-Name: e47bf2563de61b092ab92ce7aaa5c21e399d26cb
* * unix/configure: Regen.mdejong2001-04-253-14/+19
| | | | | | | | * unix/configure.in: Use $@ in MAKE_LIB and MAKE_STUB_LIB commands instead of using a delayed subst variable. Replace instances of STUB_LIB_FILE with TK_STUB_LIB_FILE. FossilOrigin-Name: 31f47a2e5e83c620d55e3e53c6a02b14883ae693
* * unix/Makefile.in: Use TCL_STUB_LIB_FILE instead of STUB_LIB_FILE.mdejong2001-04-254-9/+11
| | | | | | | | * unix/configure: Regen. * unix/configure.in: Don't subst STUB_LIB_FILE, use TCL_STUB_LIB_FILE instead. FossilOrigin-Name: cb2018308ce38d5193f6ad4d533c4e1276233eef
* Better handling of when image creation nukes the main window so nowdkf2001-04-122-3/+13
| | | | | | does not crash on Linux. FossilOrigin-Name: 165d41635325ffd0a229c3dce74edff9fb4c8967
* * win/tkWinMenu.c (TkWinHandleMenuEvent): corrected reseting ofhobbs2001-04-042-2/+20
| | | | | | service mode to only occur when it was set. [Bug #220948] FossilOrigin-Name: 1e7f9798675d491c47f55c35f24fbf682757a87d
* Corrected typos.dgp2001-04-041-3/+3
| | | FossilOrigin-Name: 86c8dee63a85bcdef1b4e6fc64f46f8fc5b7dfee
* * tests/winClipboard.test: improved results for understanding whenhobbs2001-04-041-7/+19
| | | | | | tests fail. FossilOrigin-Name: 6d6d7503f0c2dfc1cb32b9b69b0f586e9fcef988
* * tests/winDialog.test: string totitle'd some results thathobbs2001-04-041-9/+9
| | | | | | expected [pwd] to return a capital drive letter. FossilOrigin-Name: 1cfbc9baca03619f97dcad92ebd4c67d283847cf
* win/tkWinDialog.c (GetFileNameA): initialize multi to 0.hobbs2001-04-041-2/+2
| | | FossilOrigin-Name: 720cdf479bd772ec60f24bb30737c07556918840
* * tests/cursor.test: changed tests to use 'heart' cursor becausehobbs2001-04-041-13/+13
| | | | | | 'arrow' on windows has a pre-skewed use count. FossilOrigin-Name: 15a04f11553964c6e533534cfae95ddc9ccce9ee