| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
** changes for 8.4, some already backported to 8.3.4 (patch #435660)
see ChangeLog for details
|
| |
|
|
|
|
| |
(TextGetText): more efficient string size calculation (darley)
|
|
|
|
| |
improved speed. (callewaert, darley)
|
| |
|
| |
|
|
|
|
| |
basic XIM input on Unix. [Patch #412727] (fabian)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
TkpScanWindowId to handle situation where types Window and int
do not have the same number of bits. CONST-ified too.
|
|
|
|
|
| |
return type of Tcl_DStringAppend() from (char *) to (CONST char *).
[TIP 27]
|
|
|
|
| |
Only -padx/y supports asymmetry. [Bug #462348]
|
|
|
|
| |
* generic/tkEntry.c (GetSpinboxElement): fixed unreachable returns.
|
| |
|
|
|
|
| |
Window* instead of int*.
|
| |
|
|
|
|
|
|
| |
argument passed to Tcl_GetStringFromObj() from size_t to int.
Incorrect type broke [pack] and [grid] on systems where
sizeof(size_t) != sizeof(int). [Bugs 462375, 462342, 462338]
|
|
|
|
|
|
|
|
|
| |
* generic/tkImgPPM.c:
* generic/tkImgPhoto.c:
* generic/tkMenu.c: Applied patch [461578], provided by Vincent
Darley. This fixes several memory leaks in the image code. They
happen if there are errors during the initialization of the
channel the image is supposed to be read from.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
evaluation of widgets.
* generic/tkButton.c (ButtonCreate):
* generic/tkFrame.c (CreateFrame):
* generic/tkMenubutton.c (Tk_MenubuttonObjCmd):
* generic/tkPlace.c (Tk_PlaceObjCmd):
* generic/tkScale.c (Tk_ScaleObjCmd):
* generic/tkMessage.c (Tk_MessageObjCmd):
* generic/tkEntry.c (Tk_EntryObjCmd, Tk_SpinboxObjCmd):
* generic/tkSquare.c (SquareObjCmd): redid the handling of
optionTables in widgets to allow them to be imported into other
namespaces. [Bug #456632]
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
was failing to include the last character of the selection. The
"selection get" mechanism returned the right answer (so all the tests
were passing) but the widget did not display correctly. This
delta fixes the problem.
|
| |
|
| |
|
|
|
|
|
| |
CVS snapshots from the 8.4a3 release. This does not necessarily
mean there will be an 8.4a4 release. [Bug 448938].
|
|
|
|
|
|
| |
Windows platforms that were overlooked before: tkOpenDocument,
tkConsoleExit, tkConsoleOutput, unsupported1 out of namespace :: .
Thanks to Vince Darley for prompting another look.
|
|
|
|
|
| |
implementing TIP 44. All Tk commands and variables matching
tk[A-Z]* are now in the ::tk namespace.
|
|
|
|
| |
when built with Cygwin or Mingw.
|
|
|
|
|
|
| |
completed. The beginnings of the code was there but it generated
diagnostic messages rather than proper postscript. This change fixes
the problem.
|
|
|
|
|
|
| |
* generic/tkCanvPoly.c (PolygonToArea): Added patch that respects
the polygon difference of including points in the polygon even
when fill is empty. [Bug #226357]
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
| |
operator and possible FMR.
|
|
|
|
|
| |
Tcl_EventuallyFree instead of ckfree so that widgets that have
references to a tkwin can use them.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
| |
instead of ckfree for entryPtr to prevent FMRs. [Bug #413904]
|
|
|
|
|
| |
style when processing configuration options. Some cleanup of
bad comments and bad code. [part of patch #420861]
|
|
|
|
|
|
| |
* generic/tk.h:
* generic/tkStubLib.c: CONST'ified Tk_InitStubs to match CONST
changes to Tcl_PkgRequireEx.
|
| |
|
|
|
|
| |
does not crash on Linux.
|
|
|
|
| |
before calling associated menu entry command. [Bug #220821]
|
|
|
|
|
|
|
| |
scrollbar update
* generic/tkListbox.c (DestroyListbox, ListboxEventProc):
corrected listbox to make proper use of Tcl_EventuallyFree and
protect against unusual listbox deletion.
|
|
|
|
|
|
|
| |
activity
* generic/tkEntry.c (DestroyEntry, EntryEventProc): fixed the
entry widget to survive deletion while processing scrollbar
updates and validation.
|
|
|
|
|
| |
* generic/tkCanvas.c (DestroyCanvas, CanvasEventProc): fixed the
canvas to survive deletion during event processing. [Bug #228024]
|
|
|
|
|
| |
values for $imageName put when -format and -to are used.
[Bug #232741]
|