diff options
author | pspjuth <pspjuth@noemail.net> | 2001-09-26 21:36:19 (GMT) |
---|---|---|
committer | pspjuth <pspjuth@noemail.net> | 2001-09-26 21:36:19 (GMT) |
commit | 1aa939a00ef0115ae661c40c6c065aa69919e7f1 (patch) | |
tree | 20c06e6412fd77d17f1141ae292692607300a6da /mac | |
parent | cdcaab8e0bb54c25bb282ab3c1185b895f5b0edc (diff) | |
download | tk-1aa939a00ef0115ae661c40c6c065aa69919e7f1.zip tk-1aa939a00ef0115ae661c40c6c065aa69919e7f1.tar.gz tk-1aa939a00ef0115ae661c40c6c065aa69919e7f1.tar.bz2 |
Added labelframe widget. TIP#18.
FossilOrigin-Name: bc61e5ede90133d12d784a905cdf7b2ffb5aef5f
Diffstat (limited to 'mac')
-rw-r--r-- | mac/tkMacDefault.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/mac/tkMacDefault.h b/mac/tkMacDefault.h index 5358a0f..aaa5082 100644 --- a/mac/tkMacDefault.h +++ b/mac/tkMacDefault.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: tkMacDefault.h,v 1.9 2000/07/28 16:34:55 ericm Exp $ + * RCS: @(#) $Id: tkMacDefault.h,v 1.10 2001/09/26 21:36:19 pspjuth Exp $ */ #ifndef _TKMACDEFAULT @@ -190,13 +190,26 @@ #define DEF_FRAME_HIGHLIGHT_BG NORMAL_BG #define DEF_FRAME_HIGHLIGHT BLACK #define DEF_FRAME_HIGHLIGHT_WIDTH "0" +#define DEF_FRAME_PADX "0" +#define DEF_FRAME_PADY "0" #define DEF_FRAME_RELIEF "flat" #define DEF_FRAME_TAKE_FOCUS "0" -#define DEF_FRAME_USE "" #define DEF_FRAME_VISUAL "" #define DEF_FRAME_WIDTH "0" /* + * Defaults for labelframes: + */ + +#define DEF_LABELFRAME_BORDER_WIDTH "2" +#define DEF_LABELFRAME_CLASS "Labelframe" +#define DEF_LABELFRAME_RELIEF "groove" +#define DEF_LABELFRAME_FG "systemButtonText" +#define DEF_LABELFRAME_FONT "system" +#define DEF_LABELFRAME_TEXT "" +#define DEF_LABELFRAME_LABELANCHOR "nw" + +/* * Defaults for listboxes: */ @@ -472,5 +485,6 @@ #define DEF_TOPLEVEL_CLASS "Toplevel" #define DEF_TOPLEVEL_MENU "" #define DEF_TOPLEVEL_SCREEN "" +#define DEF_TOPLEVEL_USE "" #endif /* _TKMACDEFAULT */ |