diff options
author | ericm <ericm@noemail.net> | 2000-05-17 22:23:25 (GMT) |
---|---|---|
committer | ericm <ericm@noemail.net> | 2000-05-17 22:23:25 (GMT) |
commit | 15685436d121b4c4d9493132f1fec5861fb9cd50 (patch) | |
tree | 75c653a34cdc708bfff02e1350a48dd04fe46cb9 /unix/tkUnixDefault.h | |
parent | b4382d4c3d29dfc624f6d65d0f9584ffccfb6048 (diff) | |
download | tk-15685436d121b4c4d9493132f1fec5861fb9cd50.zip tk-15685436d121b4c4d9493132f1fec5861fb9cd50.tar.gz tk-15685436d121b4c4d9493132f1fec5861fb9cd50.tar.bz2 |
* mac/tkMacDefault.h (DEF_ENTRY_READONLY_BG_COLOR,
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.
FossilOrigin-Name: d9e1274dcc5725b4ea72f2b214ee4e6763d688b9
Diffstat (limited to 'unix/tkUnixDefault.h')
-rw-r--r-- | unix/tkUnixDefault.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/tkUnixDefault.h b/unix/tkUnixDefault.h index 312e579..eb81ff8 100644 --- a/unix/tkUnixDefault.h +++ b/unix/tkUnixDefault.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixDefault.h,v 1.7 2000/05/17 21:17:22 ericm Exp $ + * RCS: @(#) $Id: tkUnixDefault.h,v 1.8 2000/05/17 22:23:26 ericm Exp $ */ #ifndef _TKUNIXDEFAULT @@ -153,6 +153,8 @@ #define DEF_ENTRY_INSERT_ON_TIME "600" #define DEF_ENTRY_INSERT_WIDTH "2" #define DEF_ENTRY_JUSTIFY "left" +#define DEF_ENTRY_READONLY_BG_COLOR NORMAL_BG +#define DEF_ENTRY_READONLY_BG_MONO WHITE #define DEF_ENTRY_RELIEF "sunken" #define DEF_ENTRY_SCROLL_COMMAND "" #define DEF_ENTRY_SELECT_COLOR SELECT_BG |