-
Notifications
You must be signed in to change notification settings - Fork 0
/
window.cc
109 lines (90 loc) · 2.96 KB
/
window.cc
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
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <iostream>
#include <cstdlib>
#include <string>
#include <sstream>
#include <unistd.h>
#include "window.h"
using namespace std;
Xwindow::Xwindow(int width, int height): width(width), height(height) {
d = XOpenDisplay(NULL);
if (d == NULL) {
cerr << "Cannot open display" << endl;
exit(1);
}
s = DefaultScreen(d);
w = XCreateSimpleWindow(d, RootWindow(d, s), 10, 10, width, height, 1,
BlackPixel(d, s), WhitePixel(d, s));
XSelectInput(d, w, ExposureMask | KeyPressMask);
XMapRaised(d, w);
Pixmap pix = XCreatePixmap(d,w,width,
height,DefaultDepth(d,DefaultScreen(d)));
gc = XCreateGC(d, pix, 0,(XGCValues *)0);
XFlush(d);
XFlush(d);
// Set up colours.
XColor xcolour;
Colormap cmap;
char color_vals[10][10]={"white", "black", "red", "green", "blue", "cyan", "yellow", "magenta", "orange", "brown"};
cmap=DefaultColormap(d,DefaultScreen(d));
for(int i=0; i < 10; ++i) {
if (!XParseColor(d,cmap,color_vals[i],&xcolour)) {
cerr << "Bad colour: " << color_vals[i] << endl;
}
if (!XAllocColor(d,cmap,&xcolour)) {
cerr << "Bad colour: " << color_vals[i] << endl;
}
colours[i]=xcolour.pixel;
}
XSetForeground(d,gc,colours[Black]);
// Make window non-resizeable.
XSizeHints hints;
hints.flags = (USPosition | PSize | PMinSize | PMaxSize );
hints.height = hints.base_height = hints.min_height = hints.max_height = height;
hints.width = hints.base_width = hints.min_width = hints.max_width = width;
XSetNormalHints(d, w, &hints);
XSynchronize(d,True);
usleep(1000);
}
Xwindow::~Xwindow() {
XFreeGC(d, gc);
XCloseDisplay(d);
}
void Xwindow::fillRectangle(int x, int y, int width, int height, int colour) {
XSetForeground(d, gc, colours[colour]);
XFillRectangle(d, w, gc, x, y, width, height);
XSetForeground(d, gc, colours[Black]);
}
void Xwindow::drawString(int x, int y, string msg, int colour) {
XSetForeground(d, gc, colours[colour]);
Font f = XLoadFont(d, "6x13");
XTextItem ti;
ti.chars = const_cast<char*>(msg.c_str());
ti.nchars = msg.length();
ti.delta = 0;
ti.font = f;
XDrawText(d, w, gc, x, y, &ti, 1);
XSetForeground(d, gc, colours[Black]);
XFlush(d);
}
void Xwindow::drawBigString(int x, int y, string msg, int colour) {
XSetForeground(d, gc, colours[colour]);
// Font f = XLoadFont(d, "-*-helvetica-bold-r-normal--*-240-*-*-*-*-*");
ostringstream name;
name << "-*-helvetica-bold-r-*-*-*-240-" << width/5 << "-" << height/5 << "-*-*-*-*";
XFontStruct * f = XLoadQueryFont(d, name.str().c_str());
XTextItem ti;
ti.chars = const_cast<char*>(msg.c_str());
ti.nchars = msg.length();
ti.delta = 0;
ti.font = f->fid;
XDrawText(d, w, gc, x, y, &ti, 1);
XSetForeground(d, gc, colours[Black]);
XFlush(d);
}
void Xwindow::showAvailableFonts() {
int count;
char** fnts = XListFonts(d, "*", 10000, &count);
for (int i = 0; i < count; ++i) cout << fnts[i] << endl;
}