annotate src/EmacsShell.c @ 22:8fc7fe29b841 r19-15b94

Import from CVS: tag r19-15b94
author cvs
date Mon, 13 Aug 2007 08:50:29 +0200
parents 0293115a14e9
children 131b0175ea99
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
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
54 extern void _XtAllocError( String /* alloc_type */);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 /* junk ungraciously copied from Shell.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 static void ComputeWMSizeHints(w, hints)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 WMShellWidget w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 XSizeHints *hints;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 long flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 hints->flags = flags = w->wm.size_hints.flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #define copy(field) hints->field = w->wm.size_hints.field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 if (flags & (USPosition | PPosition)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 copy(x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 copy(y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 if (flags & (USSize | PSize)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 copy(width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 copy(height);
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 & PMinSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 copy(min_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 copy(min_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 & PMaxSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 copy(max_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 copy(max_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 & PResizeInc) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 copy(width_inc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 copy(height_inc);
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 & PAspect) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 copy(min_aspect.x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 copy(min_aspect.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 copy(max_aspect.x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 copy(max_aspect.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #undef copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #define copy(field) hints->field = w->wm.field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 if (flags & PBaseSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 copy(base_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 copy(base_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 if (flags & PWinGravity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 copy(win_gravity);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #undef copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 static void _SetWMSizeHints(w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 WMShellWidget w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 XSizeHints *size_hints = XAllocSizeHints();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 if (size_hints == NULL) _XtAllocError("XAllocSizeHints");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 ComputeWMSizeHints(w, size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 XSetWMNormalHints(XtDisplay((Widget)w), XtWindow((Widget)w), size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 XFree((char*)size_hints);
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 /* end of junk ungraciously copied from Shell.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #if 0 /* Not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 EmacsShellSetSizeUserSpecified (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 WMShellWidget w = (WMShellWidget) gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 w->wm.size_hints.flags |= USSize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 w->wm.size_hints.flags &= ~PSize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 if (!w->shell.override_redirect && XtIsRealized (gw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 _SetWMSizeHints (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 EmacsShellSetPositionUserSpecified (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 WMShellWidget w = (WMShellWidget) gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 w->wm.size_hints.flags |= USPosition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 w->wm.size_hints.flags &= ~PPosition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 if (!w->shell.override_redirect && XtIsRealized (gw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 _SetWMSizeHints (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 EmacsShellSmashIconicHint (Widget shell, int iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 /* See comment in xfns.c about this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 WMShellWidget wmshell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 int old, new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 if (! XtIsSubclass (shell, wmShellWidgetClass)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 wmshell = (WMShellWidget) shell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 old = (wmshell->wm.wm_hints.flags & StateHint
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 ? wmshell->wm.wm_hints.initial_state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 : NormalState);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 new = (iconic_p ? IconicState : NormalState);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 wmshell->wm.wm_hints.flags |= StateHint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 wmshell->wm.wm_hints.initial_state = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 EmacsShellUpdateSizeHints (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 if (XtIsSubclass (gw, topLevelEmacsShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 TopLevelEmacsShellUpdateSizeHints (gw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 else if (XtIsSubclass (gw, externalShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 /* do what ??? Don't abort! */;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 else if (XtIsSubclass (gw, transientEmacsShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 TransientEmacsShellUpdateSizeHints (gw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 }