annotate src/EmacsFrameP.h @ 215:1f0dabaa0855 r20-4b6

Import from CVS: tag r20-4b6
author cvs
date Mon, 13 Aug 2007 10:07:35 +0200
parents 3d6bfa290dbd
children 0e522484dd2a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Private header for the Emacs frame widget.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993-1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #ifndef _EmacsFrameP_h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #define _EmacsFrameP_h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "xintrinsicp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include <X11/CoreP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "xmprimitivep.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "EmacsFrame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 typedef struct {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 struct frame* frame; /* the *emacs* frame object */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 /* Resources that can't be done from lisp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 char* geometry; /* geometry spec of this frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 Boolean iconic; /* whether this frame is iconic */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 /* The rest of this is crap and should be deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Boolean minibuffer; /* 0: normal frames with minibuffers.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 0
diff changeset
45 * 1: frames without minibuffers
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 * 2: minibuffer only. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Boolean unsplittable; /* frame can only have one window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 int internal_border_width; /* internal borders */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 int scrollbar_width; /* width of frame vertical sb's */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 int scrollbar_height; /* height of frame horizontal sb's */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 int top_toolbar_height; /* height of top toolbar */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 int bottom_toolbar_height; /* height of bottom toolbar */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 int left_toolbar_width; /* width of left toolbar */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 int right_toolbar_width; /* width of right toolbar */
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 185
diff changeset
56 int top_toolbar_border_width; /* border width */
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 185
diff changeset
57 int bottom_toolbar_border_width; /* ... of bottom toolbar */
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 185
diff changeset
58 int left_toolbar_border_width; /* ... of left toolbar */
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 185
diff changeset
59 int right_toolbar_border_width; /* ... of right toolbar */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Pixel top_toolbar_shadow_pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Pixel bottom_toolbar_shadow_pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Pixel background_toolbar_pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Pixmap top_toolbar_shadow_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Pixmap bottom_toolbar_shadow_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Dimension toolbar_shadow_thickness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 unsigned char scrollbar_placement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 int interline; /* skips between lines */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 XFontStruct* font; /* font */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Pixel foreground_pixel; /* foreground */
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 185
diff changeset
71 Pixel background_pixel; /* background */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Pixel cursor_color; /* text cursor color */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Boolean bar_cursor; /* 1 if bar, 0 if block */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Boolean visual_bell; /* flash instead of beep */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 int bell_volume; /* how loud is beep */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Boolean menubar_p; /* initially show a menubar? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Boolean initially_unmapped; /* inhibit initial window mapping */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Boolean use_backing_store; /* backing store for menubar & ew? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Dimension preferred_width; /* if non-zero, preferred size for */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Dimension preferred_height; /* QueryGeometry() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 /* private state */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 } EmacsFramePart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 typedef struct _EmacsFrameRec { /* full instance record */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 CorePart core;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 XmPrimitivePart primitive;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 EmacsFramePart emacs_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 } EmacsFrameRec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 typedef struct { /* new fields for EmacsFrame class */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 int dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 } EmacsFrameClassPart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 typedef struct _EmacsFrameClassRec { /* full class record declaration */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 CoreClassPart core_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 XmPrimitiveClassPart primitive_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 EmacsFrameClassPart emacs_frame_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 } EmacsFrameClassRec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 extern EmacsFrameClassRec emacsFrameClassRec; /* class pointer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #endif /* _EmacsFrameP_h */