Mercurial > emacs
annotate src/widget.h @ 13904:d9bf85b9c19e
(dired-local-variables-file): Use convert-standard-filename.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 01 Jan 1996 23:32:07 +0000 |
| parents | 097322f7b8ad |
| children | ee40177f6c68 |
| rev | line source |
|---|---|
| 5626 | 1 /* The emacs frame widget public header file. |
| 2 Copyright (C) 1993 Free Software Foundation, Inc. | |
| 3 | |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
| 8 the Free Software Foundation; either version 2, or (at your option) | |
| 9 any later version. | |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
| 20 /* Emacs 19 face widget ported by Fred Pierresteguy */ | |
| 21 | |
| 22 #ifndef _EmacsFrame_h | |
| 23 #define _EmacsFrame_h | |
| 24 | |
| 25 #define XtNminibuffer "minibuffer" | |
| 26 #define XtCMinibuffer "Minibuffer" | |
| 27 #define XtNunsplittable "unsplittable" | |
| 28 #define XtCUnsplittable "Unsplittable" | |
| 29 #define XtNinternalBorderWidth "internalBorderWidth" | |
| 30 #define XtCInternalBorderWidth "InternalBorderWidth" | |
| 31 #define XtNinterline "interline" | |
| 32 #define XtCInterline "Interline" | |
| 33 | |
| 34 #ifndef XtNfont | |
| 35 #define XtNfont "font" | |
| 36 #endif | |
| 37 #ifndef XtCFont | |
| 38 #define XtCFont "Font" | |
| 39 #endif | |
| 40 #ifndef XtNforeground | |
| 41 #define XtNforeground "foreground" | |
| 42 #endif | |
| 43 #ifndef XtCForeground | |
| 44 #define XtCForeground "Foreground" | |
| 45 #endif | |
| 46 | |
| 47 #define XtNcursorColor "cursorColor" | |
| 48 #define XtCCursorColor "CursorColor" | |
| 49 #define XtNbarCursor "barCursor" | |
| 50 #define XtCBarCursor "BarCursor" | |
| 51 | |
| 52 #define XtNvisualBell "visualBell" | |
| 53 #define XtCVisualBell "VisualBell" | |
| 54 #define XtCBellVolume "BellVolume" | |
| 55 #define XtNbellVolume "bellVolume" | |
| 56 | |
| 57 #define XtNpointerBackground "pointerBackground" | |
| 58 #define XtNpointerColor "pointerColor" | |
| 59 | |
| 60 #define XtNtextPointer "textPointer" | |
| 61 #define XtNspacePointer "spacePointer" | |
| 62 #define XtNmodeLinePointer "modePointer" | |
| 63 #define XtNgcPointer "gcPointer" | |
| 64 | |
| 65 #define XtNemacsFrame "emacsFrame" | |
| 66 #define XtCEmacsFrame "EmacsFrame" | |
| 67 | |
| 68 #ifndef XtNgeometry | |
| 69 #define XtNgeometry "geometry" | |
| 70 #endif | |
| 71 #ifndef XtCGeometry | |
| 72 #define XtCGeometry "Geometry" | |
| 73 #endif | |
|
9229
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
74 #ifndef XtNshowGrip |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
75 #define XtNshowGrip "showGrip" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
76 #endif |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
77 #ifndef XtNallowResize |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
78 #define XtNallowResize "allowResize" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
79 #endif |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
80 #ifndef XtNresizeToPreferred |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
81 #define XtNresizeToPreferred "resizeToPreferred" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
82 #endif |
| 5626 | 83 |
| 84 #define XtNinitialGeometry "initialGeometry" | |
| 85 #define XtCInitialGeometry "InitialGeometry" | |
| 86 | |
| 87 /* structures | |
| 88 */ | |
| 89 typedef struct _EmacsFrameRec *EmacsFrame; | |
| 90 typedef struct _EmacsFrameClassRec *EmacsFrameClass; | |
| 91 | |
| 92 extern WidgetClass emacsFrameClass; | |
| 93 | |
| 94 extern struct _DisplayContext* display_context; | |
| 95 | |
| 96 /* Special entrypoints */ | |
| 5705 | 97 void EmacsFrameSetCharSize (); |
| 5626 | 98 |
| 99 #endif /* _EmacsFrame_h */ |
