annotate src/EmacsShell.c @ 396:6719134a07c2 r21-2-13

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