blob: 83f3e1b40105dafe831779d26198cbe93bb7a018 (
plain)
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
|
#include <u.h>
#include "x11-inc.h"
#include <libc.h>
#include <draw.h>
#include <memdraw.h>
#include "x11-memdraw.h"
void
drawtopwindow(void)
{
XMapRaised(_x.display, _x.drawable);
XFlush(_x.display);
XSetInputFocus(_x.display, _x.drawable, RevertToPointerRoot,
CurrentTime);
XFlush(_x.display);
}
void
drawresizewindow(Rectangle r)
{
// XConfigureRequestEvent e;
XWindowChanges e;
int value_mask;
memset(&e, 0, sizeof e);
value_mask = CWWidth|CWHeight;
// e.x = r.min.x;
// e.y = r.min.y;
e.width = Dx(r);
e.height = Dy(r);
XConfigureWindow(_x.display, _x.drawable, value_mask, &e);
}
|