annotate src/EmacsShell.c @ 380:8626e4521993 r21-2-5

Import from CVS: tag r21-2-5
author cvs
date Mon, 13 Aug 2007 11:07:10 +0200
parents 54cc21c15cbb
children 6719134a07c2
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
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
27 #include <assert.h>
0
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 "EmacsShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "ExternalShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #if 0 /* Not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* The root_geometry_manager() method in Shell.c is fucked up with regard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 to the user-specified-position vs. program-specified-position and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 user-specified-size vs. program-specified-size flag. (It always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 sets program-specified whenever the program requests a change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 in its size or position, even when this came from direct user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 request.) So we provide external entry points to fix this after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 the program requested a size or position change. If it turns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 out that the user-specified-position flag needs to be set at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 *same* time that the geometry change request is made, then we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 will have to duplicate the entire root_geometry_manager() method;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 but I don't think there are any WM's that require this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 /* junk stolen from IntrinsicI.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
52 extern void _XtAllocError( String /* alloc_type */);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /* junk ungraciously copied from Shell.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 static void ComputeWMSizeHints(w, hints)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 WMShellWidget w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 XSizeHints *hints;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 long flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 hints->flags = flags = w->wm.size_hints.flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #define copy(field) hints->field = w->wm.size_hints.field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 if (flags & (USPosition | PPosition)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 copy(x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 copy(y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 if (flags & (USSize | PSize)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 copy(width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 copy(height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 if (flags & PMinSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 copy(min_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 copy(min_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 if (flags & PMaxSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 copy(max_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 copy(max_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 if (flags & PResizeInc) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 copy(width_inc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 copy(height_inc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 if (flags & PAspect) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 copy(min_aspect.x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 copy(min_aspect.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 copy(max_aspect.x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 copy(max_aspect.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #undef copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #define copy(field) hints->field = w->wm.field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 if (flags & PBaseSize) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 copy(base_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 copy(base_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 if (flags & PWinGravity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 copy(win_gravity);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #undef copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 static void _SetWMSizeHints(w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 WMShellWidget w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 XSizeHints *size_hints = XAllocSizeHints();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 if (size_hints == NULL) _XtAllocError("XAllocSizeHints");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 ComputeWMSizeHints(w, size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 XSetWMNormalHints(XtDisplay((Widget)w), XtWindow((Widget)w), size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 XFree((char*)size_hints);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /* end of junk ungraciously copied from Shell.c */
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 /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #if 0 /* Not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 EmacsShellSetSizeUserSpecified (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 WMShellWidget w = (WMShellWidget) gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 w->wm.size_hints.flags |= USSize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 w->wm.size_hints.flags &= ~PSize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 if (!w->shell.override_redirect && XtIsRealized (gw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 _SetWMSizeHints (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 EmacsShellSetPositionUserSpecified (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 WMShellWidget w = (WMShellWidget) gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 w->wm.size_hints.flags |= USPosition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 w->wm.size_hints.flags &= ~PPosition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 if (!w->shell.override_redirect && XtIsRealized (gw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 _SetWMSizeHints (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 EmacsShellSmashIconicHint (Widget shell, int iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
141 /* See comment in frame-x.c about this */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
142 WMShellWidget wmshell = (WMShellWidget) shell;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
143 assert (XtIsSubclass (shell, wmShellWidgetClass));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
144 /* old_state = (wmshell->wm.wm_hints.flags & StateHint
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
145 ? wmshell->wm.wm_hints.initial_state
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
146 : NormalState); */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 wmshell->wm.wm_hints.flags |= StateHint;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 74
diff changeset
148 wmshell->wm.wm_hints.initial_state = iconic_p ? IconicState : NormalState;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 EmacsShellUpdateSizeHints (Widget gw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 if (XtIsSubclass (gw, topLevelEmacsShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 TopLevelEmacsShellUpdateSizeHints (gw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 else if (XtIsSubclass (gw, externalShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 /* do what ??? Don't abort! */;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 else if (XtIsSubclass (gw, transientEmacsShellWidgetClass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 TransientEmacsShellUpdateSizeHints (gw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 }