annotate src/EmacsShell.c @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 0293115a14e9
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 /* Emacs shell widget -- glue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Written by Ben Wing, May, 1994. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include <config.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 <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include <stdlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <X11/StringDefs.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "xintrinsicp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <X11/Shell.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include <X11/ShellP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include <X11/Vendor.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include <X11/VendorP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "EmacsShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "ExternalShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #if 0 /* Not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 /* The root_geometry_manager() method in Shell.c is fucked up with regard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 to the user-specified-position vs. program-specified-position and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 user-specified-size vs. program-specified-size flag. (It always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 sets program-specified whenever the program requests a change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 in its size or position, even when this came from direct user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 request.) So we provide external entry points to fix this after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 the program requested a size or position change. If it turns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 out that the user-specified-position flag needs to be set at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 *same* time that the geometry change request is made, then we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 will have to duplicate the entire root_geometry_manager() method;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 but I don't think there are any WM's that require this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 /* junk stolen from IntrinsicI.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 extern void _XtAllocError(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #if NeedFunctionPrototypes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 String /* alloc_type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 /* junk ungraciously copied from Shell.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 static void ComputeWMSizeHints(w, hints)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 WMShellWidget w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 XSizeHints *hints;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 long flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 hints->flags = flags = w->wm.size_hints.flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #define copy(field) hints->field = w->wm.size_hints.field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 if (flags & (USPosition | PPosition)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 copy(x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 copy(y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 if (flags & (USSize | PSize)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 copy(width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 copy(height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 if (flags & PMinSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 copy(min_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 copy(min_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 if (flags & PMaxSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 copy(max_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 copy(max_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 if (flags & PResizeInc) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 copy(width_inc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 copy(height_inc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 if (flags & PAspect) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 copy(min_aspect.x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 copy(min_aspect.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 copy(max_aspect.x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 copy(max_aspect.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #undef copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 #define copy(field) hints->field = w->wm.field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 if (flags & PBaseSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 copy(base_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 copy(base_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 if (flags & PWinGravity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 copy(win_gravity);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #undef copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 static void _SetWMSizeHints(w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 WMShellWidget w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 XSizeHints *size_hints = XAllocSizeHints();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 if (size_hints == NULL) _XtAllocError("XAllocSizeHints");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 ComputeWMSizeHints(w, size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 XSetWMNormalHints(XtDisplay((Widget)w), XtWindow((Widget)w), size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 XFree((char*)size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 /* end of junk ungraciously copied from Shell.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #if 0 /* Not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 EmacsShellSetSizeUserSpecified (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 WMShellWidget w = (WMShellWidget) gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 w->wm.size_hints.flags |= USSize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 w->wm.size_hints.flags &= ~PSize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 if (!w->shell.override_redirect && XtIsRealized (gw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 _SetWMSizeHints (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 EmacsShellSetPositionUserSpecified (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 WMShellWidget w = (WMShellWidget) gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 w->wm.size_hints.flags |= USPosition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 w->wm.size_hints.flags &= ~PPosition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 if (!w->shell.override_redirect && XtIsRealized (gw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 _SetWMSizeHints (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 EmacsShellSmashIconicHint (Widget shell, int iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 /* See comment in xfns.c about this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 WMShellWidget wmshell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 int old, new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 if (! XtIsSubclass (shell, wmShellWidgetClass)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 wmshell = (WMShellWidget) shell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 old = (wmshell->wm.wm_hints.flags & StateHint
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ? wmshell->wm.wm_hints.initial_state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 : NormalState);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 new = (iconic_p ? IconicState : NormalState);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 wmshell->wm.wm_hints.flags |= StateHint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 wmshell->wm.wm_hints.initial_state = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 EmacsShellUpdateSizeHints (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 if (XtIsSubclass (gw, topLevelEmacsShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 TopLevelEmacsShellUpdateSizeHints (gw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 else if (XtIsSubclass (gw, externalShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 /* do what ??? Don't abort! */;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 else if (XtIsSubclass (gw, transientEmacsShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 TransientEmacsShellUpdateSizeHints (gw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 }