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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
|
/***************************************************************************
* COPYRIGHT NOTICE *
****************************************************************************
* panels is copyright (C) 1995 *
* Zeyd M. Ben-Halim *
* zmbenhal@netcom.com *
* Eric S. Raymond *
* esr@snark.thyrsus.com *
* *
* All praise to the original author, Warren Tucker. *
* *
* Permission is hereby granted to reproduce and distribute panels *
* by any means and for any fee, whether alone or as part of a *
* larger distribution, in source or in binary form, PROVIDED *
* this notice is included with any such distribution, and is not *
* removed from any of its header files. Mention of panels in any *
* applications linked with it is highly appreciated. *
* *
* panels comes AS IS with no warranty, implied or expressed. *
* *
***************************************************************************/
/* panel.c -- implementation of panels library */
#ifdef TRACE
#define PANEL_DEBUG
#endif
#include <stdlib.h>
#include "panel.h"
typedef struct panelcons
{
struct panelcons *above;
struct panel *pan;
}
PANELCONS;
#define STATIC static
STATIC PANEL *__bottom_panel = (PANEL *)0;
STATIC PANEL *__top_panel = (PANEL *)0;
STATIC PANEL __stdscr_pseudo_panel = { (WINDOW *)0 };
#ifdef PANEL_DEBUG
#define dBug(x) _tracef x
#else
#define dBug(x)
#endif
/*+-------------------------------------------------------------------------
dPanel(text,pan)
--------------------------------------------------------------------------*/
#ifdef PANEL_DEBUG
STATIC void
dPanel(char *text, PANEL *pan)
{
_tracef("%s id=%s b=%s a=%s y=%d x=%d",
text,pan->user,
(pan->below) ? pan->below->user : "--",
(pan->above) ? pan->above->user : "--",
pan->wstarty, pan->wstartx);
} /* end of dPanel */
#else
#define dPanel(text,pan)
#endif
/*+-------------------------------------------------------------------------
dStack(fmt,num,pan)
--------------------------------------------------------------------------*/
#ifdef PANEL_DEBUG
STATIC void
dStack(char *fmt, int num, PANEL *pan)
{
char s80[80];
sprintf(s80,fmt,num,pan);
_tracef("%s b=%s t=%s",s80,
(__bottom_panel) ? __bottom_panel->user : "--",
(__top_panel) ? __top_panel->user : "--");
if(pan)
_tracef("pan id=%s",pan->user);
pan = __bottom_panel;
while(pan)
{
dPanel("stk",pan);
pan = pan->above;
}
} /* end of dStack */
#else
#define dStack(fmt,num,pan)
#endif
/*+-------------------------------------------------------------------------
Wnoutrefresh(pan) - debugging hook for wnoutrefresh
--------------------------------------------------------------------------*/
#ifdef PANEL_DEBUG
STATIC void
Wnoutrefresh(PANEL *pan)
{
dPanel("wnoutrefresh",pan);
wnoutrefresh(pan->win);
} /* end of Wnoutrefresh */
#else
#define Wnoutrefresh(pan) wnoutrefresh((pan)->win)
#endif
/*+-------------------------------------------------------------------------
Touchpan(pan)
--------------------------------------------------------------------------*/
#ifdef PANEL_DEBUG
STATIC void
Touchpan(PANEL *pan)
{
dPanel("Touchpan",pan);
touchwin(pan->win);
} /* end of Touchpan */
#else
#define Touchpan(pan) touchwin((pan)->win)
#endif
/*+-------------------------------------------------------------------------
Touchline(pan,start,count)
--------------------------------------------------------------------------*/
#ifdef PANEL_DEBUG
STATIC void
Touchline(PANEL *pan, int start, int count)
{
char s80[80];
sprintf(s80,"Touchline s=%d c=%d",start,count);
dPanel(s80,pan);
touchline(pan->win,start,count);
} /* end of Touchline */
#else
#define Touchline(pan,start,count) touchline((pan)->win,start,count)
#endif
/*+-------------------------------------------------------------------------
__panels_overlapped(pan1,pan2) - check panel overlapped
--------------------------------------------------------------------------*/
STATIC int
__panels_overlapped(register PANEL *pan1, register PANEL *pan2)
{
if(!pan1 || !pan2)
return(0);
dBug(("__panels_overlapped %s %s",pan1->user,pan2->user));
if((pan1->wstarty >= pan2->wstarty) && (pan1->wstarty < pan2->wendy) &&
(pan1->wstartx >= pan2->wstartx) && (pan1->wstartx < pan2->wendx))
return(1);
if((pan1->wstarty >= pan1->wstarty) && (pan2->wstarty < pan1->wendy) &&
(pan1->wstartx >= pan1->wstartx) && (pan2->wstartx < pan1->wendx))
return(1);
dBug((" no"));
return(0);
} /* end of __panels_overlapped */
/*+-------------------------------------------------------------------------
__free_obscure(pan)
--------------------------------------------------------------------------*/
STATIC void
__free_obscure(PANEL *pan)
{
PANELCONS *tobs = pan->obscure; /* "this" one */
PANELCONS *nobs; /* "next" one */
while(tobs) {
nobs = tobs->above;
free((char *)tobs);
tobs = nobs;
}
pan->obscure = (PANELCONS *)0;
} /* end of __free_obscure */
/*+-------------------------------------------------------------------------
__override(pan,show)
--------------------------------------------------------------------------*/
STATIC void
__override(PANEL *pan, int show)
{
register y;
register PANEL *pan2;
PANELCONS *tobs = pan->obscure; /* "this" one */
dBug(("__override %s,%d",pan->user,show));
if(show == 1)
Touchpan(pan);
else if(!show) {
Touchpan(pan);
/*
Touchline(&__stdscr_pseudo_panel,pan->wendy,getmaxy(pan->win));
*/
Touchpan(&__stdscr_pseudo_panel);
} else if(show == -1) {
while(tobs && (tobs->pan != pan))
tobs = tobs->above;
}
while(tobs) {
if((pan2 = tobs->pan) != pan) {
dBug(("test obs pan=%s pan2=%s",pan->user,pan2->user));
for(y = pan->wstarty; y < pan->wendy; y++) {
if( (y >= pan2->wstarty) && (y < pan2->wendy) &&
((is_linetouched(pan->win,y - pan->wstarty) == 1) ||
(is_linetouched(stdscr,y) == 1)))
{
Touchline(pan2,y - pan2->wstarty,1);
}
}
}
tobs = tobs->above;
}
} /* end of __override */
/*+-------------------------------------------------------------------------
__calculate_obscure()
--------------------------------------------------------------------------*/
STATIC void
__calculate_obscure(void)
{
PANEL *pan;
register PANEL *pan2;
register PANELCONS *tobs; /* "this" one */
PANELCONS *lobs = (PANELCONS *)0; /* last one */
pan = __bottom_panel;
while(pan) {
if(pan->obscure)
__free_obscure(pan);
dBug(("--> __calculate_obscure %s",pan->user));
lobs = (PANELCONS *)0; /* last one */
pan2 = __bottom_panel;
while(pan2) {
if(__panels_overlapped(pan,pan2)) {
if(!(tobs = (PANELCONS *)malloc(sizeof(PANELCONS))))
return;
tobs->pan = pan2;
dPanel("obscured",pan2);
tobs->above = (PANELCONS *)0;
if(lobs)
lobs->above = tobs;
else
pan->obscure = tobs;
lobs = tobs;
}
pan2 = pan2->above;
}
__override(pan,1);
pan = pan->above;
}
} /* end of __calculate_obscure */
/*+-------------------------------------------------------------------------
__panel_is_linked(pan) - check to see if panel is in the stack
--------------------------------------------------------------------------*/
STATIC int
__panel_is_linked(PANEL *pan)
{
register PANEL *pan2 = __bottom_panel;
while(pan2) {
if(pan2 == pan)
return(1);
pan2 = pan2->above;
}
return(OK);
} /* end of __panel_is_linked */
/*+-------------------------------------------------------------------------
__panel_link_top(pan) - link panel into stack at top
--------------------------------------------------------------------------*/
STATIC void
__panel_link_top(PANEL *pan)
{
#ifdef PANEL_DEBUG
dStack("<lt%d>",1,pan);
if(__panel_is_linked(pan))
return;
#endif
pan->above = (PANEL *)0;
pan->below = (PANEL *)0;
if(__top_panel) {
__top_panel->above = pan;
pan->below = __top_panel;
}
__top_panel = pan;
if(!__bottom_panel)
__bottom_panel = pan;
__calculate_obscure();
dStack("<lt%d>",9,pan);
} /* end of __panel_link_top */
/*+-------------------------------------------------------------------------
__panel_link_bottom(pan) - link panel into stack at bottom
--------------------------------------------------------------------------*/
STATIC void
__panel_link_bottom(PANEL *pan)
{
#ifdef PANEL_DEBUG
dStack("<lb%d>",1,pan);
if(__panel_is_linked(pan))
return;
#endif
pan->above = (PANEL *)0;
pan->below = (PANEL *)0;
if(__bottom_panel) {
__bottom_panel->below = pan;
pan->above = __bottom_panel;
}
__bottom_panel = pan;
if(!__top_panel)
__top_panel = pan;
__calculate_obscure();
dStack("<lb%d>",9,pan);
} /* end of __panel_link_bottom */
/*+-------------------------------------------------------------------------
__panel_unlink(pan) - unlink panel from stack
--------------------------------------------------------------------------*/
STATIC void
__panel_unlink(PANEL *pan)
{
register PANEL *prev;
register PANEL *next;
#ifdef PANEL_DEBUG
dStack("<u%d>",1,pan);
if(!__panel_is_linked(pan))
return;
#endif
__override(pan,0);
__free_obscure(pan);
prev = pan->below;
next = pan->above;
if(prev) { /* if non-zero, we will not update the list head */
prev->above = next;
if(next)
next->below = prev;
}
else if(next)
next->below = prev;
if(pan == __bottom_panel)
__bottom_panel = next;
if(pan == __top_panel)
__top_panel = prev;
__calculate_obscure();
pan->above = (PANEL *)0;
pan->below = (PANEL *)0;
dStack("<u%d>",9,pan);
} /* end of __panel_unlink */
/*+-------------------------------------------------------------------------
panel_window(pan) - get window associated with panel
--------------------------------------------------------------------------*/
WINDOW *
panel_window(PANEL *pan)
{
return(pan->win);
} /* end of panel_window */
/*+-------------------------------------------------------------------------
update_panels() - wnoutrefresh windows in an orderly fashion
--------------------------------------------------------------------------*/
void
update_panels(void)
{
PANEL *pan;
dBug(("--> update_panels"));
pan = __bottom_panel;
while(pan) {
__override(pan,-1);
pan = pan->above;
}
if(is_wintouched(stdscr) || (stdscr->_flags & _HASMOVED))
Wnoutrefresh(&__stdscr_pseudo_panel);
if(__bottom_panel) {
for (pan = __bottom_panel; pan; pan = pan->above) {
if(is_wintouched(pan->win))
Wnoutrefresh(pan);
}
}
} /* end of update_panels */
/*+-------------------------------------------------------------------------
hide_panel(pan) - remove a panel from stack
--------------------------------------------------------------------------*/
int
hide_panel(register PANEL *pan)
{
if(!pan)
return(ERR);
dBug(("--> hide_panel %s",pan->user));
if(!__panel_is_linked(pan)) {
pan->above = (PANEL *)0;
pan->below = (PANEL *)0;
return(ERR);
}
__panel_unlink(pan);
return(OK);
} /* end of hide_panel */
/*+-------------------------------------------------------------------------
show_panel(pan) - place a panel on top of stack
may already be in stack
--------------------------------------------------------------------------*/
int
show_panel(register PANEL *pan)
{
if(!pan)
return(ERR);
if(pan == __top_panel)
return(OK);
dBug(("--> show_panel %s",pan->user));
if(__panel_is_linked(pan))
(void)hide_panel(pan);
__panel_link_top(pan);
return(OK);
} /* end of show_panel */
/*+-------------------------------------------------------------------------
top_panel(pan) - place a panel on top of stack
--------------------------------------------------------------------------*/
int
top_panel(register PANEL *pan)
{
return(show_panel(pan));
} /* end of top_panel */
/*+-------------------------------------------------------------------------
del_panel(pan) - remove a panel from stack, if in it, and free struct
--------------------------------------------------------------------------*/
int
del_panel(register PANEL *pan)
{
if(pan)
{
dBug(("--> del_panel %s",pan->user));
if(__panel_is_linked(pan))
(void)hide_panel(pan);
free((char *)pan);
return(OK);
}
return(ERR);
} /* end of del_panel */
/*+-------------------------------------------------------------------------
bottom_panel(pan) - place a panel on bottom of stack
may already be in stack
--------------------------------------------------------------------------*/
int
bottom_panel(register PANEL *pan)
{
if(!pan)
return(ERR);
if(pan == __bottom_panel)
return(OK);
dBug(("--> bottom_panel %s",pan->user));
if(__panel_is_linked(pan))
(void)hide_panel(pan);
__panel_link_bottom(pan);
return(OK);
} /* end of bottom_panel */
/*+-------------------------------------------------------------------------
new_panel(win) - create a panel and place on top of stack
--------------------------------------------------------------------------*/
PANEL *
new_panel(WINDOW *win)
{
PANEL *pan = (PANEL *)malloc(sizeof(PANEL));
if(!__stdscr_pseudo_panel.win) {
__stdscr_pseudo_panel.win = stdscr;
__stdscr_pseudo_panel.wstarty = 0;
__stdscr_pseudo_panel.wstartx = 0;
__stdscr_pseudo_panel.wendy = LINES;
__stdscr_pseudo_panel.wendx = COLS;
__stdscr_pseudo_panel.user = "stdscr";
__stdscr_pseudo_panel.obscure = (PANELCONS *)0;
}
if(pan) {
pan->win = win;
pan->above = (PANEL *)0;
pan->below = (PANEL *)0;
getbegyx(win, pan->wstarty, pan->wstartx);
pan->wendy = pan->wstarty + getmaxy(win);
pan->wendx = pan->wstartx + getmaxx(win);
#ifdef PANEL_DEBUG
pan->user = "new";
#else
pan->user = (char *)0;
#endif
pan->obscure = (PANELCONS *)0;
(void)show_panel(pan);
}
return(pan);
} /* end of new_panel */
/*+-------------------------------------------------------------------------
panel_above(pan)
--------------------------------------------------------------------------*/
PANEL *
panel_above(PANEL *pan)
{
if(!pan)
return(__bottom_panel);
else
return(pan->above);
} /* end of panel_above */
/*+-------------------------------------------------------------------------
panel_below(pan)
--------------------------------------------------------------------------*/
PANEL *
panel_below(PANEL *pan)
{
if(!pan)
return(__top_panel);
else
return(pan->below);
} /* end of panel_below */
/*+-------------------------------------------------------------------------
set_panel_userptr(pan,uptr)
--------------------------------------------------------------------------*/
int
set_panel_userptr(PANEL *pan, char *uptr)
{
if(!pan)
return(ERR);
pan->user = uptr;
return(OK);
} /* end of set_panel_userptr */
/*+-------------------------------------------------------------------------
panel_userptr(pan)
--------------------------------------------------------------------------*/
char *
panel_userptr(PANEL *pan)
{
if(!pan)
return((char *)0);
return(pan->user);
} /* end of panel_userptr */
/*+-------------------------------------------------------------------------
move_panel(pan,starty,startx)
--------------------------------------------------------------------------*/
int
move_panel(PANEL *pan, int starty, int startx)
{
WINDOW *win;
if(!pan)
return(ERR);
if(__panel_is_linked(pan))
__override(pan,0);
win = pan->win;
if(mvwin(win,starty,startx))
return(ERR);
getbegyx(win, pan->wstarty, pan->wstartx);
pan->wendy = pan->wstarty + getmaxy(win);
pan->wendx = pan->wstartx + getmaxx(win);
if(__panel_is_linked(pan))
__calculate_obscure();
return(OK);
} /* end of move_panel */
/*+-------------------------------------------------------------------------
replace_panel(pan,win)
--------------------------------------------------------------------------*/
int
replace_panel(PANEL *pan, WINDOW *win)
{
if(!pan)
return(ERR);
if(__panel_is_linked(pan))
__override(pan,0);
pan->win = win;
if(__panel_is_linked(pan))
__calculate_obscure();
return(OK);
} /* end of replace_panel */
/*+-------------------------------------------------------------------------
panel_hidden(pan)
--------------------------------------------------------------------------*/
int
panel_hidden(PANEL *pan)
{
if(!pan)
return(ERR);
return(__panel_is_linked(pan) ? ERR : OK);
} /* end of panel_hidden */
/* end of panel.c */
|