annotate src/EmacsFrameP.h @ 44:8d2a9b52c682 r19-15prefinal

Import from CVS: tag r19-15prefinal
author cvs
date Mon, 13 Aug 2007 08:55:10 +0200
parents 376386a54a3c
children 3d6bfa290dbd
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.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 * 1: frames without minibuffers
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 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Pixel top_toolbar_shadow_pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Pixel bottom_toolbar_shadow_pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Pixel background_toolbar_pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Pixmap top_toolbar_shadow_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Pixmap bottom_toolbar_shadow_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Dimension toolbar_shadow_thickness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 unsigned char scrollbar_placement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 int interline; /* skips between lines */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 XFontStruct* font; /* font */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 Pixel foreground_pixel; /* foreground */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Pixel cursor_color; /* text cursor color */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Boolean bar_cursor; /* 1 if bar, 0 if block */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Boolean visual_bell; /* flash instead of beep */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 int bell_volume; /* how loud is beep */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Boolean menubar_p; /* initially show a menubar? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Boolean initially_unmapped; /* inhibit initial window mapping */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Boolean use_backing_store; /* backing store for menubar & ew? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Dimension preferred_width; /* if non-zero, preferred size for */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Dimension preferred_height; /* QueryGeometry() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 /* private state */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 } EmacsFramePart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 typedef struct _EmacsFrameRec { /* full instance record */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 CorePart core;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 XmPrimitivePart primitive;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 EmacsFramePart emacs_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 } EmacsFrameRec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 typedef struct { /* new fields for EmacsFrame class */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 int dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 } EmacsFrameClassPart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 typedef struct _EmacsFrameClassRec { /* full class record declaration */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 CoreClassPart core_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 #ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 XmPrimitiveClassPart primitive_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 EmacsFrameClassPart emacs_frame_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 } EmacsFrameClassRec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 extern EmacsFrameClassRec emacsFrameClassRec; /* class pointer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #endif /* _EmacsFrameP_h */