-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwarning.c
281 lines (237 loc) · 7.05 KB
/
warning.c
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#include <config.h>
#include "xwrits.h"
#include <math.h>
#include <assert.h>
#include <X11/Xatom.h>
static int clock_displaying = 0;
static struct timeval this_warn_time;
static void
pop_up_hand(Hand *h)
{
assert(h && !h->is_icon);
set_slideshow(h, ocurrent->slideshow, 0);
set_slideshow(h->icon, ocurrent->icon_slideshow, 0);
h->clock = ocurrent->clock;
hand_map_raised(h);
XFlush(h->port->display);
}
static int
switch_options(Options *opt, const struct timeval *option_switch_time,
const struct timeval *now)
{
Hand *h;
Alarm *a;
int i;
ocurrent = opt;
for (i = 0; i < nports; i++) {
set_all_slideshows(ports[i]->hands, opt->slideshow);
set_all_slideshows(ports[i]->icon_hands, opt->icon_slideshow);
}
if (opt->multiply) {
a = new_alarm(A_MULTIPLY);
xwADDTIME(a->timer, *now, opt->multiply_delay);
schedule(a);
} else
unschedule(A_MULTIPLY);
if (opt->clock && !clock_displaying) {
draw_all_clocks(now);
a = new_alarm(A_CLOCK);
xwADDTIME(a->timer, *now, clock_tick);
schedule(a);
clock_displaying = 1;
} else if (!opt->clock && clock_displaying) {
unschedule(A_CLOCK);
erase_all_clocks();
clock_displaying = 0;
}
for (i = 0; i < nports; i++) {
for (h = ports[i]->hands; h; h = h->next)
if ((opt->never_iconify && !h->mapped) ||
(!opt->appear_iconified && h->icon->mapped))
hand_map_raised(h);
if (opt->beep && ports[i]->master == ports[i])
XBell(ports[i]->display, 0);
XFlush(ports[i]->display);
}
if (opt->next) {
a = new_alarm(A_NEXT_OPTIONS);
xwADDTIME(a->timer, *option_switch_time, opt->next_delay);
schedule(a);
}
if (opt->lock)
return TRAN_LOCK;
else
return 0;
}
static void
schedule_warn_idle(Alarm *a)
{
set_fraction_time(&a->timer, ocurrent->break_time, 0.3);
if (xwTIMEGT(last_key_time, this_warn_time))
xwADDTIME(a->timer, a->timer, last_key_time);
else
xwADDTIME(a->timer, a->timer, this_warn_time);
schedule(a);
}
static int
warn_alarm_loop(Alarm *a, const struct timeval *now)
{
switch (a->action) {
case A_MULTIPLY:
if (active_hands() < ocurrent->max_hands * nports)
pop_up_hand(new_hand(NEW_HAND_RANDOM_PORT, NEW_HAND_RANDOM, NEW_HAND_RANDOM));
xwADDTIME(a->timer, a->timer, ocurrent->multiply_delay);
schedule(a);
break;
case A_NEXT_OPTIONS:
return switch_options(ocurrent->next, now, now);
case A_IDLE_CHECK:
/* Take a real rest if idle time completes */
return (a->data1 == (void *) 0 ? TRAN_REST : TRAN_AWAKE);
}
return 0;
}
static int
check_raise_window(Hand *h)
{
Port *port = h->port;
Window root, parent, *children = 0;
unsigned nchildren;
unsigned i;
int hx, hy, ox, oy;
int hwidth, hheight, owidth, oheight;
unsigned border, depth;
Hand *trav;
int bad_overlap;
/* find our geometry */
XGetGeometry(port->display, h->root_child, &root, &hx, &hy,
(unsigned *)&hwidth, (unsigned *)&hheight, &border, &depth);
/* find our position in the stacking order */
if (!XQueryTree(port->display, port->root_window, &root, &parent,
&children, &nchildren)) {
if (children) XFree(children);
return 0;
}
for (i = 0; i < nchildren; i++)
if (children[i] == h->root_child)
break;
/* examine higher windows in the stacking order */
bad_overlap = 0;
for (i++; i < nchildren && !bad_overlap; i++) {
/* overlap by other hands is OK */
for (trav = port->hands; trav; trav = trav->next)
if (children[i] == trav->root_child)
goto overlap_ok;
/* check to see that this window actually overlaps us */
XGetGeometry(port->display, children[i], &root, &ox, &oy,
(unsigned *)&owidth, (unsigned *)&oheight, &border, &depth);
if (ox > hx + hwidth || oy > hy + hheight
|| ox + owidth < hx || oy + oheight < hy)
goto overlap_ok;
/* check to see if it belongs to another xwrits process */
if (check_xwrits_window(port, children[i]))
goto overlap_ok;
/* if we get here, we found an illegal overlap */
bad_overlap = 1;
overlap_ok: ;
}
if (children)
XFree(children);
return bad_overlap;
}
static int
warn_x_loop(XEvent *e, const struct timeval *now)
{
Alarm *a;
Hand *h;
switch (e->type) {
case MapNotify: {
Port *port = find_port(e->xunmap.display, e->xunmap.window);
h = window_to_hand(port, e->xunmap.window, 1);
if (h && h->is_icon && ocurrent->never_iconify)
hand_map_raised(h->icon);
break;
}
case Xw_DeleteWindow:
/* Check for window manager deleting last xwrits window */
if (active_hands() == 0)
return TRAN_CANCEL;
break;
case ButtonPress:
/* OK; we can rest now. */
/* 10.Aug.1999 - treat the mouse click as a keypress */
last_key_time = *now;
/* 18.Apr.2001 - explicitly inform peers */
notify_peers_rest();
return TRAN_REST;
case Xw_TakeBreak:
/* informed that a peer is resting */
last_key_time = *now;
return TRAN_REST;
case KeyPress:
case MotionNotify:
last_key_time = *now;
if ((a = grab_alarm_data(A_IDLE_CHECK, (void *) 0, (void *) 0)))
schedule_warn_idle(a);
if ((a = grab_alarm_data(A_IDLE_CHECK, (void *) 1, (void *) 0))) {
xwADDTIME(a->timer, last_key_time, idle_time);
schedule(a);
}
break;
case VisibilityNotify: {
Port *port = find_port(e->xvisibility.display, e->xvisibility.window);
h = window_to_hand(port, e->xvisibility.window, 0);
if (h && h->obscured && ocurrent->top)
if (check_raise_window(h))
XRaiseWindow(port->display, h->w);
break;
}
}
return 0;
}
int
warn(int was_lock, Options *onormal)
{
struct timeval option_switch_time;
int i, val;
clock_displaying = 0;
clock_zero_time = first_warn_time;
/* find correct options based on elapsed time since first_warn_time */
xwGETTIME(this_warn_time);
ocurrent = onormal;
option_switch_time = first_warn_time;
while (ocurrent->next) {
struct timeval next;
xwADDTIME(next, option_switch_time, ocurrent->next_delay);
if (xwTIMEGT(next, this_warn_time))
break;
option_switch_time = next;
ocurrent = ocurrent->next;
}
/* switch to those options */
/* This will always set_slideshows: good -- later set_slideshows will start
from scratch. */
val = switch_options(ocurrent, &option_switch_time, &this_warn_time);
/* lock now if we should */
if (val == TRAN_LOCK && !was_lock)
goto done;
for (i = 0; i < nports; i++)
pop_up_hand(find_one_hand(ports[i], 1));
/* 10.Jul.2006 -- always do warn-time idle checking, even if not check_idle
(Bernhard Reiter) */
{
Alarm *a = new_alarm_data(A_IDLE_CHECK, (void *) 0, (void *) 0);
schedule_warn_idle(a);
if (check_idle) {
a = new_alarm_data(A_IDLE_CHECK, (void *) 1, (void *) 0);
xwADDTIME(a->timer, last_key_time, idle_time);
schedule(a);
}
}
val = loopmaster(warn_alarm_loop, warn_x_loop);
done:
unschedule(A_FLASH | A_MULTIPLY | A_CLOCK | A_NEXT_OPTIONS | A_IDLE_CHECK);
erase_all_clocks();
assert(val == TRAN_CANCEL || val == TRAN_REST || val == TRAN_LOCK || val == TRAN_AWAKE);
return val;
}