forked from erkyrath/glkterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtw_blnk.c
55 lines (45 loc) · 1.4 KB
/
gtw_blnk.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
/* gtw_blnk.c: The blank window type
for GlkTerm, curses.h implementation of the Glk API.
Designed by Andrew Plotkin <[email protected]>
http://www.eblong.com/zarf/glk/index.html
*/
#include "gtoption.h"
#include <stdio.h>
#include <stdlib.h>
#include <curses.h>
#include "glk.h"
#include "glkterm.h"
#include "gtw_blnk.h"
/* This code is just as simple as you think. A blank window is filled with
':' characters on the screen, except for the corners, which are marked
with slashes just so you can see where they are. */
window_blank_t *win_blank_create(window_t *win)
{
window_blank_t *dwin = (window_blank_t *)malloc(sizeof(window_blank_t));
dwin->owner = win;
return dwin;
}
void win_blank_destroy(window_blank_t *dwin)
{
dwin->owner = NULL;
free(dwin);
}
void win_blank_rearrange(window_t *win, grect_t *box)
{
window_blank_t *dwin = win->data;
dwin->owner->bbox = *box;
}
void win_blank_redraw(window_t *win)
{
int jx, ix;
window_blank_t *dwin = win->data;
for (jx=win->bbox.top; jx<win->bbox.bottom; jx++) {
move(jx, win->bbox.left);
for (ix=win->bbox.left; ix<win->bbox.right; ix++)
addch(':');
}
mvaddch(win->bbox.top, win->bbox.left, '/');
mvaddch(win->bbox.top, win->bbox.right-1, '\\');
mvaddch(win->bbox.bottom-1, win->bbox.left, '\\');
mvaddch(win->bbox.bottom-1, win->bbox.right-1, '/');
}