summaryrefslogtreecommitdiffstats
path: root/doc/entry.n
Commit message (Collapse)AuthorAgeFilesLines
* Excess spacing in documentationjan.nijtmans2016-03-111-1/+1
|
* Fix [http://core.tcl.tk/tcl/info/426679ef7d|426679ef7d]: Having man.macros ↵jan.nijtmans2013-11-051-1/+1
|\ | | | | | | after .TH breaks rendering on OpenBSD and possibly others.
| * Fix [http://core.tcl.tk/tcl/info/426679ef7d|426679ef7d]: Having man.macros ↵jan.nijtmans2013-11-051-1/+1
| | | | | | | | after .TH breaks rendering on OpenBSD and possibly others.
* | Documentation tweaks to make index entries more informative.dkf2013-09-231-1/+1
| |
* | More small documentation improvements.dkf2011-07-181-38/+38
| |
* | Purge RCS Keywordsdgp2011-06-081-2/+0
|\ \ | |/
| * Purge RCS Keywords.dgp2011-06-081-2/+0
| |\
| | * Purge RCS Keywords.dgp2011-06-081-2/+0
| | |
| | * Backport of documentation fixesdkf2004-10-281-12/+9
| | |
* | | Fix [Bug 2118116]dkf2008-09-231-2/+4
| | |
* | | Minor doc updates (removing out of date changebars, improving typedef ↵dkf2008-06-301-1/+2
|/ / | | | | | | | | | | formatting, etc.)
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | Make documentation use the name that scripts use as much as possible.dkf2007-11-011-4/+2
| | | | | | | | [Bug 1640073]
* | More documentation improvementsdkf2007-10-301-4/+5
| |
* | Lots more GOOBE stuff. Now works with 'make html'!dkf2007-10-291-23/+29
| |
* | * doc/*.1: Revert doc changes that brokedgp2007-10-261-17/+9
| | | | | | | | | | * doc/*.3: `make html` so we can get the release * doc/*.n: out the door.
* | Lots of improvements to look and feel of manual pagesdkf2007-10-241-9/+17
| |
* | * unix/Makefile.in (install-doc): intentionally skip ttk_dialog.nhobbs2006-12-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | installation (not for public consumption) * doc/scrollbar.n, doc/button.n, doc/checkbutton.n: * doc/entry.n, doc/frame.n, doc/label.n, doc/labelframe.n: * doc/menu.n, doc/menubutton.n, doc/panedwindow.n: * doc/radiobutton.n, doc/scrollbar.n, doc/ttk_*: revamp ttk docs to use consist nroff format (not 100% consistent with classic widget docs). Add more man page cross-linking "SEE ALSO".
* | Purge old and inaccurate .VS/.VE macros.dkf2005-04-061-17/+1
| |
* | Assorted minor documentation fixesdkf2004-10-281-6/+3
| |
* | Doc patches [1010083] and [1010607] from Mikhail Kolesnitschenko.dkf2004-08-171-5/+5
| | | | | | | | Also some general fixes to menu.n and text.n
* | clean up usage of 'edition' as a verbhobbs2003-12-081-3/+3
|/
* * doc/entry.n:mdejong2003-02-191-3/+3
| | | | | | * doc/text.n: Update double and triple click docs to match implementation changes made on 2002-02-14.
* TP macro misplacementhobbs2003-02-091-2/+2
|
* Minor improvement to documentation for entry widgets.dkf2000-12-121-2/+7
|
* * doc/toplevel.n:ericm2000-08-251-10/+9
| | | | | | | | | | | | | | | | | | | * doc/spinbox.n: * doc/scrollbar.n: * doc/scale.n: * doc/menubutton.n: * doc/menu.n: * doc/listbox.n: * doc/entry.n: * doc/frame.n: * doc/message.n: * doc/checkbutton.n: * doc/radiobutton.n: * doc/button.n: * doc/label.n: * doc/canvas.n: * doc/text.n: Fixed Standard Options section to make best use of new tab settings in man.macros.
* * doc/bind.n:hobbs2000-05-231-2/+2
| | | | | | | * doc/canvas.n: * doc/entry.n: * doc/listbox.n: * doc/photo.n: doc fix-ups [Bug: 5396]
* * mac/tkMacDefault.h (DEF_ENTRY_READONLY_BG_COLOR,ericm2000-05-171-9/+15
| | | | | | | | | | | | | | | | | DEF_ENTRY_READONLY_BG_COLOR): * win/tkWinDefault.h (DEF_ENTRY_READONLY_BG_COLOR, DEF_ENTRY_READONLY_BG_COLOR): * unix/tkUnixDefault.h (DEF_ENTRY_READONLY_BG_COLOR, DEF_ENTRY_READONLY_BG_COLOR): Added default values for entry -readonlybackground option. * generic/tkEntry.c: Added -readonlybackground option, cleaned up excessive use of graphics contexts. * tests/entry.test: Added configuration test for -readonlybackground option. * doc/entry.n: Added documentation for -readonlybackground option.
* * library/entry.tcl: Adjusted Button-1 binding to set focus to theericm2000-05-141-11/+28
| | | | | | | | | | | | | | | | | | | | | | | | entry when it is readonly or normal. * doc/entry.n: Added documentation for readonly state, -disabledforeground, -disabledbackground. * tests/entry.test: Added tests for readonly state. * generic/tkEntry.c: Added support for "readonly" state, and redefined "disabled" state. A disabled entry will display its text in a dimmed color and possibly with a different background, and will be completely unusable (no selection, no editing). A readonly entry will look like a normal entry, but it will not be editable; selection is still allowed. [RFE: 4239]. To support the new disabled state properly, "-disabledforeground" and "-disabledbackground" options were added. *** THIS IS A BACKWARDS INCOMPATIBLE BEHAVIOR CHANGE *** * win/tkWinDefault.h: * mac/tkMacDefault.h: * unix/tkUnixDefault.h: Added DEF_ENTRY_DISABLED_FG, DEF_ENTRY_DISABLED_BG_COLOR, DEF_ENTRY_DISABLED_BG_MONO.
* * doc/CrtItemType.3: fixed docs for Tk_CreateItemType to reflecthobbs2000-03-021-16/+26
| | | | | | | changes made in 8.3.0 (but old style would still work as well). [Bug: 4252] * doc/entry.n: improved docs discussing caveats and gotchas when mixing textvar with widget validation
* * doc/canvas.n: added docs for items added by dash patch (-*dash*,hobbs1999-12-141-4/+99
| | | | | | | | | -state, -active*, -disabled*, -offset, essentially rewrote the man patch for completely updated 8.3 canvas widget. * doc/entry.n: added docs for entry widget validation * doc/event.n: added docs for -warp * doc/text.n: doc'ed new -state value 'hidden' * doc/GetDash.3: (new file) man page explaining Tk_GetDash
* Replaced SCCS strings, fixed binary filesstanton1998-09-141-1/+1
|
* Initial revisionrjohnson1998-04-011-0/+417