1 /* The emacs frame widget public header file.
2 Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /* Emacs 19 face widget ported by Fred Pierresteguy */
27 #define XtNminibuffer "minibuffer"
28 #define XtCMinibuffer "Minibuffer"
29 #define XtNunsplittable "unsplittable"
30 #define XtCUnsplittable "Unsplittable"
31 #define XtNinternalBorderWidth "internalBorderWidth"
32 #define XtCInternalBorderWidth "InternalBorderWidth"
33 #define XtNinterline "interline"
34 #define XtCInterline "Interline"
37 #define XtNfont "font"
40 #define XtCFont "Font"
43 #define XtNforeground "foreground"
46 #define XtCForeground "Foreground"
49 #define XtNcursorColor "cursorColor"
50 #define XtCCursorColor "CursorColor"
51 #define XtNbarCursor "barCursor"
52 #define XtCBarCursor "BarCursor"
54 #define XtNvisualBell "visualBell"
55 #define XtCVisualBell "VisualBell"
56 #define XtCBellVolume "BellVolume"
57 #define XtNbellVolume "bellVolume"
59 #define XtNpointerBackground "pointerBackground"
60 #define XtNpointerColor "pointerColor"
62 #define XtNtextPointer "textPointer"
63 #define XtNspacePointer "spacePointer"
64 #define XtNmodeLinePointer "modePointer"
65 #define XtNgcPointer "gcPointer"
67 #define XtNemacsFrame "emacsFrame"
68 #define XtCEmacsFrame "EmacsFrame"
71 #define XtNgeometry "geometry"
74 #define XtCGeometry "Geometry"
77 #define XtNshowGrip "showGrip"
79 #ifndef XtNallowResize
80 #define XtNallowResize "allowResize"
82 #ifndef XtNresizeToPreferred
83 #define XtNresizeToPreferred "resizeToPreferred"
86 #define XtNinitialGeometry "initialGeometry"
87 #define XtCInitialGeometry "InitialGeometry"
91 typedef struct _EmacsFrameRec
*EmacsFrame
;
92 typedef struct _EmacsFrameClassRec
*EmacsFrameClass
;
94 extern WidgetClass emacsFrameClass
;
96 extern struct _DisplayContext
* display_context
;
98 /* Special entrypoints */
99 void EmacsFrameSetCharSize
P_ ((Widget
, int, int));
100 void widget_store_internal_border
P_ ((Widget widget
));
102 #endif /* _EmacsFrame_h */
104 /* arch-tag: 98be17cc-8878-4701-abfa-66f1c04e9cb7
105 (do not change this comment) */