-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindow.cc
More file actions
131 lines (101 loc) · 3.29 KB
/
window.cc
File metadata and controls
131 lines (101 loc) · 3.29 KB
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
//#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[11][20]={"white", "black","royal blue", "red", "green", "blue", "cyan", "yellow", "magenta", "orange", "brown"};
cmap=DefaultColormap(d,DefaultScreen(d));
for(int i=0; i < 11; ++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(2500);
XSelectInput(d,w,ExposureMask);
XFlush(d);
XEvent event;
XNextEvent(d,&event); //Hang until the window is ready.
XSelectInput(d,w,0);
}
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]);
//set default font
Font f = XLoadFont(d, "6x13");
// Font f = XLoadFont(d, "-*-helvetica-bold-r-normal--*-240-*-*-*-*-*");
ostringstream name;
name << "-*-helvetica-bold-r-*-*-*-240-" << width/5 << "-" << height/5 << "-*-*-*-*";
XFontStruct * fStruct = XLoadQueryFont(d, name.str().c_str());
if (fStruct) { //font was found, replace default
f = fStruct->fid;
}
XTextItem ti;
ti.chars = const_cast<char*>(msg.c_str());
ti.nchars = msg.length();
ti.delta = 0;
// ti.font = f->fid;
ti.font = f;
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;
}