summaryrefslogtreecommitdiffstats
path: root/library
Commit message (Collapse)AuthorAgeFilesLines
...
* * library/entry.tcl:hobbs2001-12-273-241/+130
| | | | | | * library/spinbox.tcl: * library/text.tcl: added extra checks against bug #220269 and made spinbox reuse more of the entry procedure code.
* Added code to guess the correct default extension from whatever valuedkf2001-12-141-6/+27
| | | | | was selected in the filetypes option menu. Adapted from code by Chris Nelson submitted in Patch #492220.
* More widget demo improvements.dkf2001-11-301-13/+44
|
* Made tk_setPalette guess a reasonable default for the foreground colour.dkf2001-11-291-3/+11
|
* When a menu is torn off, a new "clone" menu is created which is an exactdrh2001-11-271-2/+4
| | | | | | | | copy of the original. The copy even includes the tearoff bar, though the tearoff bar is not displayed. But even though it wasn't displayed, the tearoff bar on the tearoff menu could be visited using keyboard traversal. This change makes it so that the (invisible) tearoff bar of tearoff menus is no longer visited on keyboard traversal.
* ** upport to 8.4 of mac code changes for 8.3.3 & various newdas2001-11-233-7/+6
| | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435660) see ChangeLog for details
* Some neatening up of the widget demo launcher, and a new validated entry demodkf2001-11-192-109/+256
|
* * library/menu.tcl: corrected menu traversal code on Unix tohobbs2001-11-161-11/+10
| | | | better handle entering cascades. [Patch #481219]
* stupid typodkf2001-11-151-2/+2
|
* tk_setPalette now works correctly under CDE, + an image demo updatedkf2001-11-152-17/+52
|
* Minor improvements to undo (demo,docs&bindings)dkf2001-11-152-4/+17
|
* added TIP#26 text widget undo/redo functionalityhobbs2001-11-132-5/+56
|
* fixed unix tk_chooseColor to allow full 0..255 range selection via mousehobbs2001-11-121-6/+8
|
* Yet more -compound showing off, prompted by Vince Darleydkf2001-11-121-1/+7
|
* More fancying up of the demo suitedkf2001-11-121-14/+29
|
* Minor fixes from wohnivec@iol.cz Thanks!dkf2001-11-054-8/+8
|
* Improvements to widget demo (integrates/demonstrates the new 8.4 widgets)dkf2001-10-303-14/+71
|
* More demo upgrades derived from 8.3.4 and using new featuresdkf2001-10-302-96/+119
|
* More demo upgrades derived from 8.3.4dkf2001-10-292-14/+28
|
* Improvements to the demo scripts, mostly up-ported from 8.3.4dkf2001-10-293-165/+185
|
* * library/console.tcl: removed transpose ability until the consolehobbs2001-10-191-5/+5
| | | | can get a proper rewrite of tag handling.
* * library/console.tcl (ConsoleOutput): fixed undefined widgethobbs2001-10-181-3/+4
| | | | argument.
* * library/xmfbox.tcl: fixed filtering in motif file dialog.hobbs2001-10-161-5/+9
| | | | [Patch #469670] (nelson)
* * library/console.tcl: added more smarts extracted from tkcon tohobbs2001-10-091-125/+566
| | | | the default console.
* Added labelframe widget. TIP#18.pspjuth2001-09-263-4/+89
|
* Fixed string/list confusion in directory browser, and a typo in ChangeLogdkf2001-09-172-15/+17
|
* Fix a problem in the Unix tk_getOpenFile dialog box. An error dialog box useddrh2001-09-121-1/+7
| | | | | to appear when you would point the file browser box at an empty directory and click on the canvas.
* * Corrected TIP 44 typodgp2001-08-271-2/+2
| | | | | that broke binding. Thanks to "Michal" for the fix. [Bug 455468]
* [#450020] Messages for czech languagebagnonm2001-08-241-0/+67
| | | | from http://web.telecom.cz/WoodPrint/cs.msg.gz
* * library/dialog.tcl (tk_dialog): changed dialog to show bar onhobbs2001-08-221-3/+4
| | | | | Windows as well and added some y padding between the buttons and the bar. [Patch #442835] (harrismh)
* Converted [glob [file join]] to [glob -directory] (Bug #223313)dkf2001-08-101-2/+2
| | | | | Also cleaned up a few space/tab issues in the ChangeLog which make a difference if you're using a highlighting editor like emacs...
* Corrections to problems introduced bydgp2001-08-092-8/+7
| | | | the TIP 44 changes. [Bug 449261]
* * TIP 44 changes specific to the Mac anddgp2001-08-064-8/+11
| | | | | | Windows platforms that were overlooked before: tkOpenDocument, tkConsoleExit, tkConsoleOutput, unsupported1 out of namespace :: . Thanks to Vince Darley for prompting another look.
* Correction to TIP 44 implementation.dgp2001-08-011-3/+3
|
* Merged changes from feature branch dgp-privates-into-namespace,dgp2001-08-0124-1886/+2207
| | | | | implementing TIP 44. All Tk commands and variables matching tk[A-Z]* are now in the ::tk namespace.
* 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.
* Added missing backslash in Motif File Selector code.dkf2001-07-031-2/+2
|
* * library/console.tcl:hobbs2001-07-035-16/+48
| | | | | | | | | | | | | | | | | | | | | * 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.
* Added braces to expressions.dkf2001-06-1417-138/+142
|
* * tests/safe.test: added note about correcting failures inhobbs2001-03-311-6/+3
| | | | | | safe.test. * library/tk.tcl: moved package require msgcat inside if case to not be used in safe interps.
* * library/bgerror.tcl (bgerror): allow focus into details windowhobbs2001-03-301-2/+3
| | | | for Windows C&P to work. [Bug #220929]
* * library/tk.tcl: put a catch around adding <hpBackTab> to thehobbs2001-03-301-2/+5
| | | | | <<PrevWindow>> virtual event as it doesn't seem to work on all HP systems. [Bug #411669]
* * library/tkfbox.tcl: fixed selecting directories and single fileshobbs2001-03-301-9/+15
| | | | with spaces using tk_getOpenFile -multiple 1. [Bug #411640]
* * library/msgs/de.msg: fixed translations. [Patch #403525]hobbs2001-03-301-3/+3
|
* * library/entry.tcl (tkEntryMouseSelect):mdejong2001-03-292-10/+7
| | | | | | | | | | * library/text.tcl (tkTextSelectTo): When the mouse is dragged with the button down, move the insertion cursor to the current mouse position. * tests/event.test: Add a series of tests for event generation. Add tests for selection, check the position of the insertion cursor.
* updated copyrighthobbs2000-11-021-3/+3
|
* threw catch around tk useinputmethods call for safe interpshobbs2000-10-311-3/+4
|
* simplified tk_library path normalization callhobbs2000-10-311-2/+2
|
* * tests/tk.test:hobbs2000-10-311-1/+5
| | | | | | | | * doc/tk.n: updated to reflect default on status of useinputmethods. * library/tk.tcl: tk useinputmethods is set to 1 by default. This enables Kanji and dead-char input by default. Intro'd in 1999-12-16 with default off to avoid some problems with older X servers that would slow down widget creation over time.
* * library/tkfbox.tcl (OkCmd): Applied patch from [Bug: 6365],ericm2000-10-191-4/+3
| | | | | which adds safety for directory names containing spaces or which are non-lists.