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