(calendar-location-name, calendar-latitude)
[emacs.git] / src / widget.h
blobfb918f705bf23a7697df1bb853eb475745a538cb
1 /* The emacs frame widget public header file.
2 Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2008 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 3, or (at your option)
10 any later version.
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 */
24 #ifndef _EmacsFrame_h
25 #define _EmacsFrame_h
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"
36 #ifndef XtNfont
37 #define XtNfont "font"
38 #endif
39 #ifndef XtCFont
40 #define XtCFont "Font"
41 #endif
42 #ifndef XtNforeground
43 #define XtNforeground "foreground"
44 #endif
45 #ifndef XtCForeground
46 #define XtCForeground "Foreground"
47 #endif
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"
70 #ifndef XtNgeometry
71 #define XtNgeometry "geometry"
72 #endif
73 #ifndef XtCGeometry
74 #define XtCGeometry "Geometry"
75 #endif
76 #ifndef XtNshowGrip
77 #define XtNshowGrip "showGrip"
78 #endif
79 #ifndef XtNallowResize
80 #define XtNallowResize "allowResize"
81 #endif
82 #ifndef XtNresizeToPreferred
83 #define XtNresizeToPreferred "resizeToPreferred"
84 #endif
86 #define XtNinitialGeometry "initialGeometry"
87 #define XtCInitialGeometry "InitialGeometry"
89 /* structures
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) */