summaryrefslogtreecommitdiffstats
path: root/doc/button.n
Commit message (Collapse)AuthorAgeFilesLines
* 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-15/+15
| |
* | 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-19/+8
| | |
| * | Backported documentation fixes from HEADpatthoyts2008-05-111-3/+5
| | |
* | | * doc/tk_mac.n (new file): Description of OSX-specific functionalitydkf2011-03-021-0/+8
| | | | | | | | | | | | | | | in Tk, contributed by Kevin Walzer. * doc/button.n, doc/font.n, doc/menu.n: Noted which parts of these commands are intentionally not fully supported on OSX.
* | | Fix [Bug 2118116]dkf2008-09-231-2/+4
| | |
* | | Minor doc updates (removing out of date changebars, improving typedef ↵dkf2008-06-301-5/+3
| | | | | | | | | | | | | | | | | | formatting, etc.)
* | | Note negative widths for buttonpatthoyts2008-05-111-3/+5
| | |
* | | Minor clarification of the button flash command (1926223)patthoyts2008-04-201-4/+4
|/ /
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | Make documentation use the name that scripts use as much as possible.dkf2007-11-011-2/+2
| | | | | | | | [Bug 1640073]
* | Lots more GOOBE stuff. Now works with 'make html'!dkf2007-10-291-9/+11
| |
* | Assorted documentation improvements.dkf2007-08-281-2/+18
| |
* | * 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-7/+1
| |
* | Assorted minor documentation fixesdkf2004-10-281-2/+1
| |
* | Doc patches [1010083] and [1010607] from Mikhail Kolesnitschenko.dkf2004-08-171-2/+1
| | | | | | | | Also some general fixes to menu.n and text.n
* | Standardize the -compound option to everywhere it ought to be. [Bug 712588]dkf2004-08-161-18/+9
|/
* * doc/toplevel.n:ericm2000-08-251-10/+10
| | | | | | | | | | | | | | | | | | | * 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/SetOptions.3: Added information about TK_OPTION_NULL_OK withericm2000-05-171-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TK_OPTION_RELIEF. * win/tkWinButton.c: Removed bits about TK_RELIEF_LINK. * tests/button.test: Added tests for -overrelief; removed tests for -relief link. * mac/tkMacButton.c: Removed bits about TK_RELIEF_LINK. * generic/tkOldConfig.c: Removed bits about TK_RELIEF_LINK. * generic/tkConfig.c: Removed bits about TK_RELIEF_LINK; added support for TK_OPTION_NULL_OK for TK_OPTION_RELIEF. * library/button.tcl: Added binding support for -overrelief. * generic/tk3d.c (Tk_GetRelief): Added branch for TK_RELIEF_NULL. * generic/tkButton.c: Added -overrelief option; removed Enter/Leave EventProc masks and handlers. * generic/tk.h: Added TK_RELIEF_NULL definition, removed TK_RELIEF_LINK. * mac/tkMacDefault.h (DEF_BUTTON_OVER_RELIEF): * win/tkWinDefault.h (DEF_BUTTON_OVER_RELIEF): * unix/tkUnixDefault.h (DEF_BUTTON_OVER_RELIEF): Added default value for the -overrelief option.
* * unix/tkUnixButton.c (TkpDisplayButton, TkpComputeButtonGeometry):ericm2000-05-131-7/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | * mac/tkMacButton.c (TkpDisplayButton, TkpComputeButtonGeometry): * win/tkWinButton.c (TkpDisplayButton, TkpComputeButtonGeometry): Added code for drawing compound buttons. * tests/button.test: Added configuration tests for -repeatdelay, -repeatinterval, -compound. * library/button.tcl: Added support for -repeatedelay, -repeatinterval options. * generic/tkOldConfig.c: Changed handling of link relief so that proper error messages are used. * generic/tkButton.h: Added -compound, -repeatdelay, -repeatinterval options. * generic/tkButton.c: Added event watchers for enter/leave events, for link relief support. * generic/tk3d.c: Changed handling of link relief so that proper error messages are used. * generic/tk.h: Changed values of TK_OPTION_LINK_OK/TK_CONFIG_LINK_OK for link relief support.
* * doc/button.n: Added documentation for link relief.ericm2000-05-101-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tests/button.test: Added tests for link relief for buttons. * generic/tk.h (TK_CONFIG_LINK_OK): Added definition of TK_RELIEF_LINK, TK_OPTION_LINK_OK and TK_CONFIG_LINK_OK. [RFE: 4348] * generic/tk3d.c: Added support for link relief. [RFE: 4348] * mac/tkMacButton.c (TkpDisplayButton): * unix/tkUnixButton.c (TkpDisplayButton): Added support for link relief. [RFE: 4348] * generic/tkOldConfig.c (Tk_ConfigureWidget): * generic/tkConfig.c (DoObjConfig): Added understanding of link relief, which is allowed only for widgets that have TK_OPTION_LINK_OK or TK_CONFIG_LINK_OK set for the "-relief" option. [RFE: 4348] * generic/tkButton.c: Added TK_OPTION_LINK_OK to "-relief" option for buttons. [RFE: 4348] * win/tkWinWm.c (EX_TRANSIENT_STYLE): Removed WS_EX_TOOLWINDOW style bit, so that transient windows have full-size titlebars (like the tk_getOpenFile dialog). * win/tkWinMenu.c (GetMenuSeparatorGeometry): Tweaked height requested for separator bars to be (linespace - (2*descent)) instead of just (linespace); this makes the separator occupy a more correct amount of vertical space. [Bug: 5303].
* Replaced SCCS strings, fixed binary filesstanton1998-09-141-1/+1
|
* Initial revisionrjohnson1998-04-011-0/+176