1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
/* Copyright 1989 GROUPE BULL -- See license conditions in file COPYRIGHT
* Copyright 1989 Massachusetts Institute of Technology
*/
/*****************************************************\
* *
* BULL WINDOW MANAGER for X11 . *
* *
* MODULE defining the Plug Wob Class *
* *
\*****************************************************/
/* include */
#include "EXTERN.h"
#include "gwm.h"
#include "wl_atom.h"
#include "wl_list.h"
#include "wl_fsm.h"
#include "wl_pixmap.h"
#include "wl_cursor.h"
#include "wl_plug.h"
#ifdef SHAPE /* compile with -I/usr/include/X11 AND
-I/usr/include/X11/extensions to work on
machines having shapes.h in either place */
#include <shape.h>
#endif /* SHAPE */
/* local constants */
/* external */
extern Wob NewWob();
extern WOOL_METHOD WLMenu[];
extern Plug PlugOpen();
extern PlugClose(), PlugEventHandler(), ReconfigurePlug();
WOB_METHOD PlugClass[] = {
0, /* METHODS_ARRAY */
WobEval,
WobPrint,
WobRelease,
WobExecute,
WobSet,
WobGetCValue,
(WOB_METHOD) PlugOpen,
PlugClose,
PlugEventHandler,
(WOB_METHOD) wool_undefined_method_1,
WobGetDimensions,
(WOB_METHOD) wool_undefined_method_2,
(WOB_METHOD) wool_undefined_method_2,
ReconfigurePlug,
(WOB_METHOD) wool_undefined_method_2,
(WOB_METHOD) wool_undefined_method_1,
(WOB_METHOD) wool_undefined_method_1,
(WOB_METHOD) wool_undefined_method_1,
(WOB_METHOD) wool_undefined_method_1,
(WOB_METHOD) wool_undefined_method_1
};
/* routines */
/*
* Set up an icon that must be mapped onto a bar.
*/
Plug
PlugOpen(plug)
Plug plug;
{
Pixmap mask;
check_window_size(plug);
plug -> hook =
XCreateSimpleWindow(dpy, plug -> parent -> hook,
plug -> box.x, plug -> box.y,
plug -> box.width, plug -> box.height,
plug -> box.borderwidth,
plug -> box.borderpixel, plug -> box.background);
if (plug -> parent -> type == ScreenClass)
plug -> status |= TopLevelXWindowStatus;
WobRecordHook(plug);
plug -> curstate = (int) WOOL_send(WOOL_open, plug -> fsm, (plug -> fsm));
plug -> input_mask = WobMask
| (plug -> graphic_mask =
((unsigned int) WOOL_send(WOOL_open,
plug -> graphic,
(plug -> graphic, plug))))
| ((WOOL_Fsm) plug -> fsm) -> mask;
XSelectInput(dpy, plug -> hook, plug -> input_mask);
if (plug -> cursor != NIL)
XDefineCursor(dpy, plug -> hook,
((WOOL_Cursor) plug -> cursor) -> cursor);
if (plug -> bordertile != NIL)
XSetWindowBorderPixmap(dpy, plug -> hook,
((WOOL_Pixmap) plug -> bordertile) -> pixmap);
#ifdef SHAPE
/* if the plug is made of a non-rectangular (shaped) pixmap, sets its
* shape to it...
*/
if (plug -> graphic -> type == WLPixmap
&& (mask = ((WOOL_Pixmap) (plug -> graphic))->mask)) {
XShapeCombineMask(dpy, plug -> hook, ShapeBounding, 0, 0,
mask, ShapeSet);
}
#endif /* SHAPE */
return plug;
}
Plug
NewPlug(bar, wl_plug)
Bar bar;
WOOL_Plug wl_plug;
{
Plug plug;
WOOL_OBJECT graphic;
/* if plug = (), then it is a space and we return NULL */
if (wl_plug == (WOOL_Plug) NIL)
return NULL;
plug = (Plug) NewWob(sizeof(struct _Plug));
wl_plug = (WOOL_Plug) wool_type_or_evaluate(wl_plug, WLPlug);
plug -> type = PlugClass;
plug -> parent = (Wob) bar;
graphic = wl_plug -> graphic;
if (graphic -> type == WLAtom || graphic -> type == WLList)
graphic = WOOL_send(WOOL_eval, graphic, (graphic));
/* first, set the box info */
plug -> box.borderwidth = wl_plug -> borderwidth;
plug -> box.borderpixel = wl_plug -> borderpixel;
plug -> box.background = wl_plug -> background;
increase_reference(plug -> property = (WOOL_OBJECT) wl_plug -> property);
increase_reference(plug -> bordertile =
wool_type_or_evaluate(wl_plug -> bordertile, WLPixmap));
increase_reference(plug -> fsm =
wool_type_or_evaluate(wl_plug -> fsm, WLFsm));
increase_reference(plug -> menu =
wool_type_or_evaluate(wl_plug -> menu, WLMenu));
increase_reference(plug -> cursor =
wool_type_or_evaluate(wl_plug -> cursor, WLCursor));
increase_reference(plug -> graphic = graphic);
increase_reference(plug -> tile = (graphic -> type == WLPixmap
? graphic : NIL));
return plug;
}
PlugClose(wob)
Plug wob;
{
decrease_reference(wob -> graphic);
WobRelease(wob);
}
/*
* Set here the dimensions of a plug
*/
UpdatePlugGeometry(plug)
Plug plug;
{
WOOL_send(WOOL_get_dimensions, plug -> graphic,
(plug -> graphic, &(plug -> box)));
}
PlugEventHandler(plug, evt)
Plug plug;
XEvent *evt;
{
switch (evt -> type) {
case Expose:
SetTarget(plug);
WOOL_send(WOOL_redraw, plug -> graphic,
(plug -> graphic, plug));
break;
default:
WLFsm_action(plug -> fsm, plug, evt);
}
}
ReconfigurePlug(plug, culprit)
Plug plug;
Wob culprit;
{
int width, height;
Pixmap shape;
int dirty = 0;
if (culprit == (Wob) plug -> parent) {
XMoveWindow(dpy, plug -> hook, plug -> box.x, plug -> box.y);
} else if (culprit == (Wob) plug -> graphic) {
width = plug -> box.width;
height = plug -> box.height;
shape = plug->box.shape;
UpdatePlugGeometry(plug);
if ((plug -> box.width != width) || (plug -> box.height != height)) {
XResizeWindow(dpy, plug -> hook,
plug -> box.width, plug -> box.height);
dirty = 1;
}
if (plug -> box.shape != shape) {
dirty = 1;
}
if (dirty)
WOOL_send(WOOL_reconfigure, plug -> parent,
(plug -> parent, plug));
}
WOOL_send(WOOL_redraw, plug -> graphic, (plug -> graphic, plug));
}
set_plug_bitmap(plug, wl_pixmap)
Plug plug;
WOOL_OBJECT wl_pixmap;
{
Pixmap mask;
unsigned int graphic_mask;
int was_shaped = 0;
if (wl_pixmap -> type == WLAtom || wl_pixmap -> type == WLList)
return;
if (plug -> graphic -> type == WLPixmap
&& (((WOOL_Pixmap) (plug -> graphic))->mask))
was_shaped = 1;
decrease_reference(plug -> graphic);
increase_reference(plug -> graphic = wl_pixmap);
graphic_mask = ((unsigned int) WOOL_send(WOOL_open, plug -> graphic,
(plug -> graphic, plug)));
if (graphic_mask != plug -> graphic_mask) {
plug -> input_mask &= ~plug -> graphic_mask;
plug -> input_mask |= graphic_mask;
XSelectInput(dpy, plug -> hook, plug -> input_mask);
}
#ifdef SHAPE
/* if the plug is made of a non-rectangular (shaped) pixmap, sets its
* shape to it...
*/
if (plug -> graphic -> type == WLPixmap
&& (mask = ((WOOL_Pixmap) (plug -> graphic))->mask)) {
XShapeCombineMask(dpy, plug -> hook, ShapeBounding, 0, 0,
mask, ShapeSet);
}
else if (was_shaped) { /* Was shaped but is no more */
XShapeCombineMask(dpy, plug -> hook, ShapeBounding, 0, 0,
None, ShapeSet);
}
#endif /* SHAPE */
ReconfigurePlug(plug, plug -> graphic);
decrease_reference(plug -> tile);
increase_reference(plug -> tile = (wl_pixmap -> type == WLPixmap
? wl_pixmap : NIL));
}
|