| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
as directed by the Tcl Style Guide.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* doc/menu.n:
* unix/mkLinks: Added documentation for [tk_menuSetFocus].
|
|
|
|
|
|
|
| |
* doc/text.n:
* doc/tkvars.n:
* unix/mkLinks: Added documentation for commands and variables
matching tk_text*.
|
|
|
|
|
|
|
|
| |
* generic/tkTextDisp.c:
* library/unsupported.tcl:
* tests/textDisp.test: Restored the global variables tk_textRedraw
and tk_textRelayout. Since they match tk_*, they should remain
publicly available until at least Tk 9.
|
|
|
|
|
|
|
|
|
|
| |
BRANCH dgp-privates-into-namespace:
* library/unsupported.tcl: New file for Tk's unsupported
interfaces. Contains [tk::unsupported::ExposePrivateCommand]
and [tk::unsupported::ExposePrivateVariable] that restore the
availability of an old public name of one of Tk's private
commands and variables, respectively, for those applications
and extensions that depend on the old names against advice.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
BRANCH dgp-privates-into-namespace: Feature branch to move all
of Tk's private commands and variable into the ::tk namespace
and its children.
* doc/tkvars.n: Documented private variable tkPriv renamed tk::Priv.
* generic/tkBind.c:
* generic/tkMenu.c:
* generic/tkTextDisp.c:
* library/bgerror.tcl:
* library/button.tcl:
* library/choosedir.tcl:
* library/clrpick.tcl:
* library/comdlg.tcl:
* library/console.tcl:
* library/dialog.tcl:
* library/entry.tcl:
* library/focus.tcl:
* library/listbox.tcl:
* library/menu.tcl:
* library/msgbox.tcl:
* library/optMenu.tcl:
* library/palette.tcl:
* library/scale.tcl:
* library/scrlbar.tcl:
* library/spinbox.tcl:
* library/tclIndex:
* library/tearoff.tcl:
* library/text.tcl:
* library/tk.tcl:
* library/tkfbox.tcl:
* library/xmfbox.tcl:
* mac/tkMacMenu.c:
* tests/clrpick.test:
* tests/filebox.test:
* tests/macMenu.test:
* tests/menu.test:
* tests/menuDraw.test:
* tests/msgbox.test:
* tests/text.test:
* tests/textDisp.test:
* tests/unixMenu.test:
* tests/winMenu.test:
* tests/xmfbox.test:
* unix/tkUnixDialog.c: All Tk commands matching ::tk[A-Z]* and
all Tk private variables in the global namespace were renamed to
live in the namespace ::tk or one of its children.
|
|
|
|
| |
of ranges for "photoName data -from" subcommand.
|
| |
|
|
|
|
| |
Changelog describing the merge of TIP #8.
|
|
|
|
|
| |
* win/tkWinWm.c:
* doc/wm.n: Applied patch #102833 (TIP #8).
|
|
|
|
|
| |
double type object to speed up canvas coord calculations.
[Patch #102471]
|
| |
|
|
|
|
|
| |
which also requires no documentation changes - the behaviour is now
what you would predict from existing docs (as opposed to a crash!)
|
| |
|
|
|
|
|
|
|
|
|
| |
I'm still not quite sure what exactly was going wrong in the bug, but
I suspect the problem might have actually been due to the deletion of
all images while in the midst of creating an image. The restriction
is pretty light when it comes to existing code, since it previously
caused a core dump due to an image typePtr field being set to random
garbage, an indication of over-eager use of free()...
|
| |
|
|
|
|
|
|
|
|
|
| |
TkClassProcs/TkSetClassProcs as Tk_ClassProcs/Tk_SetClassProcs,
adding a size field to Tk_ClassProcs to allow for future
expansion, and renaming the geometryProc to worldChangedProc,
which is more in keeping with the actual use of the callback.
See ChangeLog for details.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This only has effect when tclsh is run (not wish), and then Tk is
loaded in interactively.
|
| |
|
| |
|
|
|
|
|
|
|
| |
* win/tkWinDialog.c:
* win/tkWinScrlbr.c:
* win/tkWinWm.c: fixed up code for Win64 support. This mostly
remains in _WIN64 #ifdef's, until updated compilers are standard.
|
|
|
|
|
|
|
| |
* win/configure: checked in configure scripts so people doing
CVS checkouts aren't required to have autoconf. Changes to
configure.in in the future will require the corresponding
configure script to also be re-autoconf'ed and checked in.
|
|
|
|
| |
* win/makefile.vc: updated for Win64 compile support
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
tests (5.2, 5.5) to include -multiple option.
* win/tkWinDialog.c:
Removed CommDlgExtendedError() checks for color and choosedir
dialogs, and removed all except the explicit invalid filename
checks for the file dialogs.
|
| |
|
| |
|
|
|
|
| |
reliably assume what 'red' maps to.
|
|
|
|
|
|
| |
Tk_ChooseDirectoryObjCmd): created work-around for change in
NT5.0/98 that caused no initialdir setting to open the browser up
in the user's documents dir.
|
| |
|
|
|
|
|
|
|
|
| |
CommDlgExtendedError() switches; this was formerly treated as an
error, but it actually is not, since it just means the user hit
cancel or closed the dialog. (GetFileNameW): Added better smarts
such that -multiple is not considered a valid option for
tk_getSaveFile.
|