Blame


1 f5e234d6 2018-05-18 omar.polo /* mymenu -- simple dmenu alternative */
2 f5e234d6 2018-05-18 omar.polo
3 f5e234d6 2018-05-18 omar.polo /* Copyright (C) 2018 Omar Polo <omar.polo@europecom.net>
4 f5e234d6 2018-05-18 omar.polo *
5 f5e234d6 2018-05-18 omar.polo * This program is free software: you can redistribute it and/or modify
6 f5e234d6 2018-05-18 omar.polo * it under the terms of the GNU General Public License as published by
7 f5e234d6 2018-05-18 omar.polo * the Free Software Foundation, either version 3 of the License, or
8 f5e234d6 2018-05-18 omar.polo * (at your option) any later version.
9 f5e234d6 2018-05-18 omar.polo *
10 f5e234d6 2018-05-18 omar.polo * This program is distributed in the hope that it will be useful,
11 f5e234d6 2018-05-18 omar.polo * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 f5e234d6 2018-05-18 omar.polo * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 f5e234d6 2018-05-18 omar.polo * GNU General Public License for more details.
14 f5e234d6 2018-05-18 omar.polo *
15 f5e234d6 2018-05-18 omar.polo * You should have received a copy of the GNU General Public License
16 f5e234d6 2018-05-18 omar.polo * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 f5e234d6 2018-05-18 omar.polo */
18 f5e234d6 2018-05-18 omar.polo
19 f5e234d6 2018-05-18 omar.polo #include <stdio.h>
20 f5e234d6 2018-05-18 omar.polo #include <stdlib.h>
21 f5e234d6 2018-05-18 omar.polo #include <string.h> // strdup, strnlen, ...
22 f5e234d6 2018-05-18 omar.polo #include <ctype.h> // isalnum
23 f5e234d6 2018-05-18 omar.polo #include <locale.h> // setlocale
24 f5e234d6 2018-05-18 omar.polo #include <unistd.h>
25 f5e234d6 2018-05-18 omar.polo #include <sysexits.h>
26 f5e234d6 2018-05-18 omar.polo #include <stdbool.h>
27 f5e234d6 2018-05-18 omar.polo #include <limits.h>
28 f5e234d6 2018-05-18 omar.polo #include <errno.h>
29 f5e234d6 2018-05-18 omar.polo
30 f5e234d6 2018-05-18 omar.polo #include <X11/Xlib.h>
31 f5e234d6 2018-05-18 omar.polo #include <X11/Xutil.h> // XLookupString
32 f5e234d6 2018-05-18 omar.polo #include <X11/Xresource.h>
33 f5e234d6 2018-05-18 omar.polo #include <X11/Xcms.h> // colors
34 347d23da 2018-05-19 omar.polo #include <X11/keysym.h>
35 f5e234d6 2018-05-18 omar.polo
36 f5e234d6 2018-05-18 omar.polo #ifdef USE_XINERAMA
37 f5e234d6 2018-05-18 omar.polo # include <X11/extensions/Xinerama.h>
38 f5e234d6 2018-05-18 omar.polo #endif
39 f5e234d6 2018-05-18 omar.polo
40 f5e234d6 2018-05-18 omar.polo #define nil NULL
41 347d23da 2018-05-19 omar.polo #define resname "MyMenu"
42 347d23da 2018-05-19 omar.polo #define resclass "mymenu"
43 f5e234d6 2018-05-18 omar.polo
44 f5e234d6 2018-05-18 omar.polo #define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
45 f5e234d6 2018-05-18 omar.polo #define MAX(a, b) ((a) > (b) ? (a) : (b))
46 f5e234d6 2018-05-18 omar.polo #define OVERLAP(a,b,c,d) (((a)==(c) && (b)==(d)) || MIN((a)+(b), (c)+(d)) - MAX((a), (c)) > 0)
47 f5e234d6 2018-05-18 omar.polo #define INTERSECT(x,y,w,h,x1,y1,w1,h1) (OVERLAP((x),(w),(x1),(w1)) && OVERLAP((y),(h),(y1),(h1)))
48 f5e234d6 2018-05-18 omar.polo
49 f5e234d6 2018-05-18 omar.polo #define update_completions(cs, text, lines) { \
50 f5e234d6 2018-05-18 omar.polo compl_delete(cs); \
51 f5e234d6 2018-05-18 omar.polo cs = filter(text, lines); \
52 f5e234d6 2018-05-18 omar.polo }
53 f5e234d6 2018-05-18 omar.polo
54 f5e234d6 2018-05-18 omar.polo // TODO: dynamic?
55 95b27a5e 2018-05-19 omar.polo #define INITIAL_ITEMS 64
56 f5e234d6 2018-05-18 omar.polo
57 f5e234d6 2018-05-18 omar.polo #define TODO(s) { \
58 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "TODO! " s "\n"); \
59 f5e234d6 2018-05-18 omar.polo }
60 f5e234d6 2018-05-18 omar.polo
61 f5e234d6 2018-05-18 omar.polo #define cannot_allocate_memory { \
62 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Could not allocate memory\n"); \
63 f5e234d6 2018-05-18 omar.polo exit(EX_UNAVAILABLE); \
64 f5e234d6 2018-05-18 omar.polo }
65 f5e234d6 2018-05-18 omar.polo
66 f5e234d6 2018-05-18 omar.polo #define check_allocation(a) { \
67 f5e234d6 2018-05-18 omar.polo if (a == nil) \
68 f5e234d6 2018-05-18 omar.polo cannot_allocate_memory; \
69 f5e234d6 2018-05-18 omar.polo }
70 f5e234d6 2018-05-18 omar.polo
71 f5e234d6 2018-05-18 omar.polo enum state {LOOPING, OK, ERR};
72 f5e234d6 2018-05-18 omar.polo
73 f5e234d6 2018-05-18 omar.polo struct rendering {
74 f5e234d6 2018-05-18 omar.polo Display *d;
75 f5e234d6 2018-05-18 omar.polo Window w;
76 f5e234d6 2018-05-18 omar.polo GC prompt;
77 f5e234d6 2018-05-18 omar.polo GC prompt_bg;
78 f5e234d6 2018-05-18 omar.polo GC completion;
79 f5e234d6 2018-05-18 omar.polo GC completion_bg;
80 f5e234d6 2018-05-18 omar.polo GC completion_highlighted;
81 f5e234d6 2018-05-18 omar.polo GC completion_highlighted_bg;
82 f5e234d6 2018-05-18 omar.polo int width;
83 f5e234d6 2018-05-18 omar.polo int height;
84 347d23da 2018-05-19 omar.polo XFontSet *font;
85 36a15a9f 2018-05-19 omar.polo bool horizontal_layout;
86 f5e234d6 2018-05-18 omar.polo };
87 f5e234d6 2018-05-18 omar.polo
88 f5e234d6 2018-05-18 omar.polo struct completions {
89 f5e234d6 2018-05-18 omar.polo char *completion;
90 f5e234d6 2018-05-18 omar.polo bool selected;
91 f5e234d6 2018-05-18 omar.polo struct completions *next;
92 f5e234d6 2018-05-18 omar.polo };
93 f5e234d6 2018-05-18 omar.polo
94 f5e234d6 2018-05-18 omar.polo struct completions *compl_new() {
95 f5e234d6 2018-05-18 omar.polo struct completions *c = malloc(sizeof(struct completions));
96 f5e234d6 2018-05-18 omar.polo
97 f5e234d6 2018-05-18 omar.polo if (c == nil)
98 f5e234d6 2018-05-18 omar.polo return c;
99 f5e234d6 2018-05-18 omar.polo
100 f5e234d6 2018-05-18 omar.polo c->completion = nil;
101 f5e234d6 2018-05-18 omar.polo c->selected = false;
102 f5e234d6 2018-05-18 omar.polo c->next = nil;
103 f5e234d6 2018-05-18 omar.polo return c;
104 f5e234d6 2018-05-18 omar.polo }
105 f5e234d6 2018-05-18 omar.polo
106 f5e234d6 2018-05-18 omar.polo void compl_delete(struct completions *c) {
107 f5e234d6 2018-05-18 omar.polo free(c);
108 f5e234d6 2018-05-18 omar.polo }
109 f5e234d6 2018-05-18 omar.polo
110 347d23da 2018-05-19 omar.polo struct completions *compl_select_next(struct completions *c, bool n) {
111 347d23da 2018-05-19 omar.polo if (c == nil)
112 347d23da 2018-05-19 omar.polo return nil;
113 347d23da 2018-05-19 omar.polo if (n) {
114 347d23da 2018-05-19 omar.polo c->selected = true;
115 347d23da 2018-05-19 omar.polo return c;
116 347d23da 2018-05-19 omar.polo }
117 347d23da 2018-05-19 omar.polo
118 347d23da 2018-05-19 omar.polo struct completions *orig = c;
119 347d23da 2018-05-19 omar.polo while (c != nil) {
120 347d23da 2018-05-19 omar.polo if (c->selected) {
121 347d23da 2018-05-19 omar.polo c->selected = false;
122 347d23da 2018-05-19 omar.polo if (c->next != nil) {
123 347d23da 2018-05-19 omar.polo // the current one is selected and the next one exists
124 347d23da 2018-05-19 omar.polo c->next->selected = true;
125 347d23da 2018-05-19 omar.polo return c->next;
126 347d23da 2018-05-19 omar.polo } else {
127 347d23da 2018-05-19 omar.polo // the current one is selected and the next one is nill,
128 347d23da 2018-05-19 omar.polo // select the first one
129 347d23da 2018-05-19 omar.polo orig->selected = true;
130 347d23da 2018-05-19 omar.polo return orig;
131 347d23da 2018-05-19 omar.polo }
132 347d23da 2018-05-19 omar.polo }
133 347d23da 2018-05-19 omar.polo c = c->next;
134 347d23da 2018-05-19 omar.polo }
135 347d23da 2018-05-19 omar.polo return nil;
136 347d23da 2018-05-19 omar.polo }
137 347d23da 2018-05-19 omar.polo
138 347d23da 2018-05-19 omar.polo struct completions *compl_select_prev(struct completions *c, bool n) {
139 347d23da 2018-05-19 omar.polo if (c == nil)
140 347d23da 2018-05-19 omar.polo return nil;
141 347d23da 2018-05-19 omar.polo
142 347d23da 2018-05-19 omar.polo struct completions *cc = c;
143 347d23da 2018-05-19 omar.polo
144 347d23da 2018-05-19 omar.polo if (n) // select the last one
145 347d23da 2018-05-19 omar.polo while (cc != nil) {
146 347d23da 2018-05-19 omar.polo if (cc->next == nil) {
147 347d23da 2018-05-19 omar.polo cc->selected = true;
148 347d23da 2018-05-19 omar.polo return cc;
149 347d23da 2018-05-19 omar.polo }
150 347d23da 2018-05-19 omar.polo cc = cc->next;
151 347d23da 2018-05-19 omar.polo }
152 347d23da 2018-05-19 omar.polo else // select the previous one
153 347d23da 2018-05-19 omar.polo while (cc != nil) {
154 347d23da 2018-05-19 omar.polo if (cc->next != nil && cc->next->selected) {
155 347d23da 2018-05-19 omar.polo cc->next->selected = false;
156 347d23da 2018-05-19 omar.polo cc->selected = true;
157 347d23da 2018-05-19 omar.polo return cc;
158 347d23da 2018-05-19 omar.polo }
159 347d23da 2018-05-19 omar.polo cc = cc->next;
160 347d23da 2018-05-19 omar.polo }
161 347d23da 2018-05-19 omar.polo
162 347d23da 2018-05-19 omar.polo return nil;
163 347d23da 2018-05-19 omar.polo }
164 347d23da 2018-05-19 omar.polo
165 f5e234d6 2018-05-18 omar.polo struct completions *filter(char *text, char **lines) {
166 f5e234d6 2018-05-18 omar.polo int i = 0;
167 f5e234d6 2018-05-18 omar.polo struct completions *root = compl_new();
168 f5e234d6 2018-05-18 omar.polo struct completions *c = root;
169 f5e234d6 2018-05-18 omar.polo
170 f5e234d6 2018-05-18 omar.polo for (;;) {
171 f5e234d6 2018-05-18 omar.polo char *l = lines[i];
172 f5e234d6 2018-05-18 omar.polo if (l == nil)
173 f5e234d6 2018-05-18 omar.polo break;
174 f5e234d6 2018-05-18 omar.polo
175 f5e234d6 2018-05-18 omar.polo if (strstr(l, text) != nil) {
176 f5e234d6 2018-05-18 omar.polo c->next = compl_new();
177 f5e234d6 2018-05-18 omar.polo c = c->next;
178 f5e234d6 2018-05-18 omar.polo c->completion = l;
179 f5e234d6 2018-05-18 omar.polo }
180 f5e234d6 2018-05-18 omar.polo
181 f5e234d6 2018-05-18 omar.polo ++i;
182 f5e234d6 2018-05-18 omar.polo }
183 f5e234d6 2018-05-18 omar.polo
184 f5e234d6 2018-05-18 omar.polo struct completions *r = root->next;
185 f5e234d6 2018-05-18 omar.polo compl_delete(root);
186 f5e234d6 2018-05-18 omar.polo return r;
187 f5e234d6 2018-05-18 omar.polo }
188 f5e234d6 2018-05-18 omar.polo
189 f5e234d6 2018-05-18 omar.polo // push the character c at the end of the string pointed by p
190 f5e234d6 2018-05-18 omar.polo int pushc(char **p, int maxlen, char c) {
191 f5e234d6 2018-05-18 omar.polo int len = strnlen(*p, maxlen);
192 f5e234d6 2018-05-18 omar.polo
193 f5e234d6 2018-05-18 omar.polo if (!(len < maxlen -2)) {
194 f5e234d6 2018-05-18 omar.polo maxlen += maxlen >> 1;
195 f5e234d6 2018-05-18 omar.polo char *newptr = realloc(*p, maxlen);
196 f5e234d6 2018-05-18 omar.polo if (newptr == nil) { // bad!
197 f5e234d6 2018-05-18 omar.polo return -1;
198 f5e234d6 2018-05-18 omar.polo }
199 f5e234d6 2018-05-18 omar.polo *p = newptr;
200 f5e234d6 2018-05-18 omar.polo }
201 f5e234d6 2018-05-18 omar.polo
202 f5e234d6 2018-05-18 omar.polo (*p)[len] = c;
203 f5e234d6 2018-05-18 omar.polo (*p)[len+1] = '\0';
204 f5e234d6 2018-05-18 omar.polo return maxlen;
205 f5e234d6 2018-05-18 omar.polo }
206 f5e234d6 2018-05-18 omar.polo
207 347d23da 2018-05-19 omar.polo int utf8strnlen(char *s, int maxlen) {
208 347d23da 2018-05-19 omar.polo int len = 0;
209 347d23da 2018-05-19 omar.polo while (*s && maxlen > 0) {
210 347d23da 2018-05-19 omar.polo len += (*s++ & 0xc0) != 0x80;
211 347d23da 2018-05-19 omar.polo maxlen--;
212 347d23da 2018-05-19 omar.polo }
213 347d23da 2018-05-19 omar.polo return len;
214 347d23da 2018-05-19 omar.polo }
215 347d23da 2018-05-19 omar.polo
216 347d23da 2018-05-19 omar.polo // remove the last *glyph* from the *utf8* string!
217 347d23da 2018-05-19 omar.polo // this is different from just setting the last byte to 0 (in some
218 347d23da 2018-05-19 omar.polo // cases ofc). The actual implementation is quite inefficient because
219 347d23da 2018-05-19 omar.polo // it remove the last char until the number of glyphs doesn't change
220 f5e234d6 2018-05-18 omar.polo void popc(char *p, int maxlen) {
221 f5e234d6 2018-05-18 omar.polo int len = strnlen(p, maxlen);
222 347d23da 2018-05-19 omar.polo
223 347d23da 2018-05-19 omar.polo if (len == 0)
224 347d23da 2018-05-19 omar.polo return;
225 347d23da 2018-05-19 omar.polo
226 347d23da 2018-05-19 omar.polo int ulen = utf8strnlen(p, maxlen);
227 347d23da 2018-05-19 omar.polo while (len > 0 && utf8strnlen(p, maxlen) == ulen) {
228 347d23da 2018-05-19 omar.polo len--;
229 347d23da 2018-05-19 omar.polo p[len] = 0;
230 347d23da 2018-05-19 omar.polo }
231 f5e234d6 2018-05-18 omar.polo }
232 f5e234d6 2018-05-18 omar.polo
233 f5e234d6 2018-05-18 omar.polo // read an arbitrary long line from stdin and return a pointer to it
234 f5e234d6 2018-05-18 omar.polo // TODO: resize the allocated memory to exactly fit the string once
235 f5e234d6 2018-05-18 omar.polo // read?
236 f5e234d6 2018-05-18 omar.polo char *readline(bool *eof) {
237 f5e234d6 2018-05-18 omar.polo int maxlen = 8;
238 f5e234d6 2018-05-18 omar.polo char *str = calloc(maxlen, sizeof(char));
239 f5e234d6 2018-05-18 omar.polo if (str == nil) {
240 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Cannot allocate memory!\n");
241 f5e234d6 2018-05-18 omar.polo exit(EX_UNAVAILABLE);
242 f5e234d6 2018-05-18 omar.polo }
243 f5e234d6 2018-05-18 omar.polo
244 f5e234d6 2018-05-18 omar.polo int c;
245 f5e234d6 2018-05-18 omar.polo while((c = getchar()) != EOF) {
246 f5e234d6 2018-05-18 omar.polo if (c == '\n')
247 f5e234d6 2018-05-18 omar.polo return str;
248 f5e234d6 2018-05-18 omar.polo else
249 f5e234d6 2018-05-18 omar.polo maxlen = pushc(&str, maxlen, c);
250 f5e234d6 2018-05-18 omar.polo
251 f5e234d6 2018-05-18 omar.polo if (maxlen == -1) {
252 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Cannot allocate memory!\n");
253 f5e234d6 2018-05-18 omar.polo exit(EX_UNAVAILABLE);
254 f5e234d6 2018-05-18 omar.polo }
255 f5e234d6 2018-05-18 omar.polo }
256 f5e234d6 2018-05-18 omar.polo *eof = true;
257 f5e234d6 2018-05-18 omar.polo return str;
258 f5e234d6 2018-05-18 omar.polo }
259 f5e234d6 2018-05-18 omar.polo
260 95b27a5e 2018-05-19 omar.polo int readlines (char ***lns, int items) {
261 f5e234d6 2018-05-18 omar.polo bool finished = false;
262 f5e234d6 2018-05-18 omar.polo int n = 0;
263 95b27a5e 2018-05-19 omar.polo char **lines = *lns;
264 95b27a5e 2018-05-19 omar.polo while (true) {
265 f5e234d6 2018-05-18 omar.polo lines[n] = readline(&finished);
266 f5e234d6 2018-05-18 omar.polo
267 f5e234d6 2018-05-18 omar.polo if (strlen(lines[n]) == 0 || lines[n][0] == '\n')
268 f5e234d6 2018-05-18 omar.polo --n; // forget about this line
269 f5e234d6 2018-05-18 omar.polo
270 f5e234d6 2018-05-18 omar.polo if (finished)
271 f5e234d6 2018-05-18 omar.polo break;
272 f5e234d6 2018-05-18 omar.polo
273 f5e234d6 2018-05-18 omar.polo ++n;
274 95b27a5e 2018-05-19 omar.polo
275 95b27a5e 2018-05-19 omar.polo if (n == items - 1) {
276 95b27a5e 2018-05-19 omar.polo items += items >>1;
277 95b27a5e 2018-05-19 omar.polo char **l = realloc(lines, sizeof(char*) * items);
278 95b27a5e 2018-05-19 omar.polo check_allocation(l);
279 95b27a5e 2018-05-19 omar.polo *lns = l;
280 95b27a5e 2018-05-19 omar.polo lines = l;
281 95b27a5e 2018-05-19 omar.polo }
282 f5e234d6 2018-05-18 omar.polo }
283 95b27a5e 2018-05-19 omar.polo
284 f5e234d6 2018-05-18 omar.polo n++;
285 f5e234d6 2018-05-18 omar.polo lines[n] = nil;
286 95b27a5e 2018-05-19 omar.polo return items;
287 f5e234d6 2018-05-18 omar.polo }
288 f5e234d6 2018-05-18 omar.polo
289 f5e234d6 2018-05-18 omar.polo // |------------------|----------------------------------------------|
290 f5e234d6 2018-05-18 omar.polo // | 20 char text | completion | completion | completion | compl |
291 f5e234d6 2018-05-18 omar.polo // |------------------|----------------------------------------------|
292 36a15a9f 2018-05-19 omar.polo void draw_horizontally(struct rendering *r, char *text, struct completions *cs) {
293 f5e234d6 2018-05-18 omar.polo // TODO: make these dynamic?
294 f5e234d6 2018-05-18 omar.polo int prompt_width = 20; // char
295 f5e234d6 2018-05-18 omar.polo int padding = 10;
296 347d23da 2018-05-19 omar.polo /* int start_at = XTextWidth(r->font, " ", 1) * prompt_width + padding; */
297 f5e234d6 2018-05-18 omar.polo
298 347d23da 2018-05-19 omar.polo XRectangle rect;
299 347d23da 2018-05-19 omar.polo int start_at = XmbTextExtents(*r->font, " ", 1, nil, &rect);
300 347d23da 2018-05-19 omar.polo start_at = start_at * prompt_width + padding;
301 347d23da 2018-05-19 omar.polo
302 347d23da 2018-05-19 omar.polo int texty = (rect.height + r->height) >>1;
303 347d23da 2018-05-19 omar.polo
304 f5e234d6 2018-05-18 omar.polo XFillRectangle(r->d, r->w, r->prompt_bg, 0, 0, start_at, r->height);
305 f5e234d6 2018-05-18 omar.polo
306 f5e234d6 2018-05-18 omar.polo int text_len = strlen(text);
307 f5e234d6 2018-05-18 omar.polo if (text_len > prompt_width)
308 f5e234d6 2018-05-18 omar.polo text = text + (text_len - prompt_width);
309 347d23da 2018-05-19 omar.polo /* XDrawString(r->d, r->w, r->prompt, padding, texty, text, MIN(text_len, prompt_width)); */
310 347d23da 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, r->prompt, padding, texty, text, MIN(text_len, prompt_width));
311 f5e234d6 2018-05-18 omar.polo
312 f5e234d6 2018-05-18 omar.polo XFillRectangle(r->d, r->w, r->completion_bg, start_at, 0, r->width, r->height);
313 f5e234d6 2018-05-18 omar.polo
314 f5e234d6 2018-05-18 omar.polo while (cs != nil) {
315 f5e234d6 2018-05-18 omar.polo GC g = cs->selected ? r->completion_highlighted : r->completion;
316 f5e234d6 2018-05-18 omar.polo GC h = cs->selected ? r->completion_highlighted_bg : r->completion_bg;
317 f5e234d6 2018-05-18 omar.polo
318 f5e234d6 2018-05-18 omar.polo int len = strlen(cs->completion);
319 347d23da 2018-05-19 omar.polo /* int text_width = XTextWidth(r->font, cs->completion, len); */
320 347d23da 2018-05-19 omar.polo int text_width = XmbTextExtents(*r->font, cs->completion, len, nil, nil);
321 f5e234d6 2018-05-18 omar.polo
322 f5e234d6 2018-05-18 omar.polo XFillRectangle(r->d, r->w, h, start_at, 0, text_width + padding*2, r->height);
323 f5e234d6 2018-05-18 omar.polo
324 347d23da 2018-05-19 omar.polo /* XDrawString(r->d, r->w, g, start_at + padding, texty, cs->completion, len); */
325 347d23da 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, g, start_at + padding, texty, cs->completion, len);
326 347d23da 2018-05-19 omar.polo
327 f5e234d6 2018-05-18 omar.polo start_at += text_width + padding * 2;
328 f5e234d6 2018-05-18 omar.polo
329 0ee198aa 2018-05-19 omar.polo if (start_at > r->width)
330 0ee198aa 2018-05-19 omar.polo break; // don't draw completion if the space isn't enough
331 0ee198aa 2018-05-19 omar.polo
332 f5e234d6 2018-05-18 omar.polo cs = cs->next;
333 f5e234d6 2018-05-18 omar.polo }
334 f5e234d6 2018-05-18 omar.polo
335 f5e234d6 2018-05-18 omar.polo XFlush(r->d);
336 f5e234d6 2018-05-18 omar.polo }
337 36a15a9f 2018-05-19 omar.polo
338 36a15a9f 2018-05-19 omar.polo // |-----------------------------------------------------------------|
339 36a15a9f 2018-05-19 omar.polo // | prompt |
340 36a15a9f 2018-05-19 omar.polo // |-----------------------------------------------------------------|
341 36a15a9f 2018-05-19 omar.polo // | completion |
342 36a15a9f 2018-05-19 omar.polo // |-----------------------------------------------------------------|
343 36a15a9f 2018-05-19 omar.polo // | completion |
344 36a15a9f 2018-05-19 omar.polo // |-----------------------------------------------------------------|
345 36a15a9f 2018-05-19 omar.polo // TODO: dunno why but in the call to Xutf8DrawString, by logic,
346 36a15a9f 2018-05-19 omar.polo // should be padding and not padding*2, but the text doesn't seem to
347 36a15a9f 2018-05-19 omar.polo // be vertically centered otherwise....
348 36a15a9f 2018-05-19 omar.polo void draw_vertically(struct rendering *r, char *text, struct completions *cs) {
349 36a15a9f 2018-05-19 omar.polo int padding = 10; // TODO make this dynamic
350 f5e234d6 2018-05-18 omar.polo
351 36a15a9f 2018-05-19 omar.polo XRectangle rect;
352 36a15a9f 2018-05-19 omar.polo XmbTextExtents(*r->font, "fjpgl", 5, &rect, nil);
353 36a15a9f 2018-05-19 omar.polo int start_at = rect.height + padding*2;
354 36a15a9f 2018-05-19 omar.polo
355 36a15a9f 2018-05-19 omar.polo XFillRectangle(r->d, r->w, r->completion_bg, 0, 0, r->width, r->height);
356 36a15a9f 2018-05-19 omar.polo XFillRectangle(r->d, r->w, r->prompt_bg, 0, 0, r->width, start_at);
357 36a15a9f 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, r->prompt, padding, padding*2, text, strlen(text));
358 36a15a9f 2018-05-19 omar.polo
359 36a15a9f 2018-05-19 omar.polo while (cs != nil) {
360 36a15a9f 2018-05-19 omar.polo GC g = cs->selected ? r->completion_highlighted : r->completion;
361 36a15a9f 2018-05-19 omar.polo GC h = cs->selected ? r->completion_highlighted_bg : r->completion_bg;
362 36a15a9f 2018-05-19 omar.polo
363 36a15a9f 2018-05-19 omar.polo int len = strlen(cs->completion);
364 36a15a9f 2018-05-19 omar.polo XmbTextExtents(*r->font, cs->completion, len, &rect, nil);
365 36a15a9f 2018-05-19 omar.polo XFillRectangle(r->d, r->w, h, 0, start_at, r->width, rect.height + padding*2);
366 36a15a9f 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, g, padding, start_at + padding*2, cs->completion, len);
367 36a15a9f 2018-05-19 omar.polo
368 36a15a9f 2018-05-19 omar.polo start_at += rect.height + padding *2;
369 0ee198aa 2018-05-19 omar.polo
370 0ee198aa 2018-05-19 omar.polo if (start_at > r->height)
371 0ee198aa 2018-05-19 omar.polo break; // don't draw completion if the space isn't enough
372 0ee198aa 2018-05-19 omar.polo
373 36a15a9f 2018-05-19 omar.polo cs = cs->next;
374 36a15a9f 2018-05-19 omar.polo }
375 36a15a9f 2018-05-19 omar.polo
376 36a15a9f 2018-05-19 omar.polo XFlush(r->d);
377 36a15a9f 2018-05-19 omar.polo }
378 36a15a9f 2018-05-19 omar.polo
379 36a15a9f 2018-05-19 omar.polo void draw(struct rendering *r, char *text, struct completions *cs) {
380 36a15a9f 2018-05-19 omar.polo if (r->horizontal_layout)
381 36a15a9f 2018-05-19 omar.polo draw_horizontally(r, text, cs);
382 36a15a9f 2018-05-19 omar.polo else
383 36a15a9f 2018-05-19 omar.polo draw_vertically(r, text, cs);
384 36a15a9f 2018-05-19 omar.polo }
385 36a15a9f 2018-05-19 omar.polo
386 f5e234d6 2018-05-18 omar.polo /* Set some WM stuff */
387 f5e234d6 2018-05-18 omar.polo void set_win_atoms_hints(Display *d, Window w, int width, int height) {
388 f5e234d6 2018-05-18 omar.polo Atom type;
389 f5e234d6 2018-05-18 omar.polo type = XInternAtom(d, "_NET_WM_WINDOW_TYPE_DOCK", false);
390 f5e234d6 2018-05-18 omar.polo XChangeProperty(
391 f5e234d6 2018-05-18 omar.polo d,
392 f5e234d6 2018-05-18 omar.polo w,
393 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "_NET_WM_WINDOW_TYPE", false),
394 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "ATOM", false),
395 f5e234d6 2018-05-18 omar.polo 32,
396 f5e234d6 2018-05-18 omar.polo PropModeReplace,
397 f5e234d6 2018-05-18 omar.polo (unsigned char *)&type,
398 f5e234d6 2018-05-18 omar.polo 1
399 f5e234d6 2018-05-18 omar.polo );
400 f5e234d6 2018-05-18 omar.polo
401 f5e234d6 2018-05-18 omar.polo /* some window managers honor this properties */
402 f5e234d6 2018-05-18 omar.polo type = XInternAtom(d, "_NET_WM_STATE_ABOVE", false);
403 f5e234d6 2018-05-18 omar.polo XChangeProperty(d,
404 f5e234d6 2018-05-18 omar.polo w,
405 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "_NET_WM_STATE", false),
406 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "ATOM", false),
407 f5e234d6 2018-05-18 omar.polo 32,
408 f5e234d6 2018-05-18 omar.polo PropModeReplace,
409 f5e234d6 2018-05-18 omar.polo (unsigned char *)&type,
410 f5e234d6 2018-05-18 omar.polo 1
411 f5e234d6 2018-05-18 omar.polo );
412 f5e234d6 2018-05-18 omar.polo
413 f5e234d6 2018-05-18 omar.polo type = XInternAtom(d, "_NET_WM_STATE_FOCUSED", false);
414 f5e234d6 2018-05-18 omar.polo XChangeProperty(d,
415 f5e234d6 2018-05-18 omar.polo w,
416 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "_NET_WM_STATE", false),
417 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "ATOM", false),
418 f5e234d6 2018-05-18 omar.polo 32,
419 f5e234d6 2018-05-18 omar.polo PropModeAppend,
420 f5e234d6 2018-05-18 omar.polo (unsigned char *)&type,
421 f5e234d6 2018-05-18 omar.polo 1
422 f5e234d6 2018-05-18 omar.polo );
423 f5e234d6 2018-05-18 omar.polo
424 f5e234d6 2018-05-18 omar.polo // setting window hints
425 f5e234d6 2018-05-18 omar.polo XClassHint *class_hint = XAllocClassHint();
426 f5e234d6 2018-05-18 omar.polo if (class_hint == nil) {
427 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Could not allocate memory for class hint\n");
428 f5e234d6 2018-05-18 omar.polo exit(EX_UNAVAILABLE);
429 f5e234d6 2018-05-18 omar.polo }
430 f5e234d6 2018-05-18 omar.polo class_hint->res_name = "mymenu";
431 f5e234d6 2018-05-18 omar.polo class_hint->res_class = "mymenu";
432 f5e234d6 2018-05-18 omar.polo XSetClassHint(d, w, class_hint);
433 f5e234d6 2018-05-18 omar.polo XFree(class_hint);
434 f5e234d6 2018-05-18 omar.polo
435 f5e234d6 2018-05-18 omar.polo XSizeHints *size_hint = XAllocSizeHints();
436 f5e234d6 2018-05-18 omar.polo if (size_hint == nil) {
437 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Could not allocate memory for size hint\n");
438 f5e234d6 2018-05-18 omar.polo exit(EX_UNAVAILABLE);
439 f5e234d6 2018-05-18 omar.polo }
440 f5e234d6 2018-05-18 omar.polo size_hint->min_width = width;
441 f5e234d6 2018-05-18 omar.polo size_hint->base_width = width;
442 f5e234d6 2018-05-18 omar.polo size_hint->min_height = height;
443 f5e234d6 2018-05-18 omar.polo size_hint->base_height = height;
444 f5e234d6 2018-05-18 omar.polo
445 f5e234d6 2018-05-18 omar.polo XFlush(d);
446 f5e234d6 2018-05-18 omar.polo }
447 f5e234d6 2018-05-18 omar.polo
448 f5e234d6 2018-05-18 omar.polo void get_wh(Display *d, Window *w, int *width, int *height) {
449 f5e234d6 2018-05-18 omar.polo XWindowAttributes win_attr;
450 f5e234d6 2018-05-18 omar.polo XGetWindowAttributes(d, *w, &win_attr);
451 f5e234d6 2018-05-18 omar.polo *height = win_attr.height;
452 f5e234d6 2018-05-18 omar.polo *width = win_attr.width;
453 f5e234d6 2018-05-18 omar.polo }
454 f5e234d6 2018-05-18 omar.polo
455 f5e234d6 2018-05-18 omar.polo // I know this may seem a little hackish BUT is the only way I managed
456 f5e234d6 2018-05-18 omar.polo // to actually grab that goddam keyboard. Only one call to
457 f5e234d6 2018-05-18 omar.polo // XGrabKeyboard does not always end up with the keyboard grabbed!
458 f5e234d6 2018-05-18 omar.polo int take_keyboard(Display *d, Window w) {
459 686e9237 2018-05-18 omar.polo int i;
460 686e9237 2018-05-18 omar.polo for (i = 0; i < 100; i++) {
461 686e9237 2018-05-18 omar.polo if (XGrabKeyboard(d, w, True, GrabModeAsync, GrabModeAsync, CurrentTime) == GrabSuccess)
462 686e9237 2018-05-18 omar.polo return 1;
463 686e9237 2018-05-18 omar.polo usleep(1000);
464 686e9237 2018-05-18 omar.polo }
465 686e9237 2018-05-18 omar.polo return 0;
466 f5e234d6 2018-05-18 omar.polo }
467 f5e234d6 2018-05-18 omar.polo
468 f5e234d6 2018-05-18 omar.polo void release_keyboard(Display *d) {
469 686e9237 2018-05-18 omar.polo XUngrabKeyboard(d, CurrentTime);
470 f5e234d6 2018-05-18 omar.polo }
471 f5e234d6 2018-05-18 omar.polo
472 f5e234d6 2018-05-18 omar.polo int parse_integer(const char *str, int default_value, int max) {
473 f5e234d6 2018-05-18 omar.polo int len = strlen(str);
474 f5e234d6 2018-05-18 omar.polo if (len > 0 && str[len-1] == '%') {
475 f5e234d6 2018-05-18 omar.polo char *cpy = strdup(str);
476 f5e234d6 2018-05-18 omar.polo check_allocation(cpy);
477 f5e234d6 2018-05-18 omar.polo cpy[len-1] = '\0';
478 f5e234d6 2018-05-18 omar.polo int val = parse_integer(cpy, default_value, max);
479 f5e234d6 2018-05-18 omar.polo free(cpy);
480 f5e234d6 2018-05-18 omar.polo return val * max / 100;
481 f5e234d6 2018-05-18 omar.polo }
482 f5e234d6 2018-05-18 omar.polo
483 f5e234d6 2018-05-18 omar.polo errno = 0;
484 f5e234d6 2018-05-18 omar.polo char *ep;
485 f5e234d6 2018-05-18 omar.polo long lval = strtol(str, &ep, 10);
486 f5e234d6 2018-05-18 omar.polo if (str[0] == '\0' || *ep != '\0') { // NaN
487 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "'%s' is not a valid number! Using %d as default.\n", str, default_value);
488 f5e234d6 2018-05-18 omar.polo return default_value;
489 f5e234d6 2018-05-18 omar.polo }
490 f5e234d6 2018-05-18 omar.polo if ((errno == ERANGE && (lval == LONG_MAX || lval == LONG_MIN)) ||
491 f5e234d6 2018-05-18 omar.polo (lval > INT_MAX || lval < INT_MIN)) {
492 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "%s out of range! Using %d as default.\n", str, default_value);
493 f5e234d6 2018-05-18 omar.polo return default_value;
494 f5e234d6 2018-05-18 omar.polo }
495 f5e234d6 2018-05-18 omar.polo return lval;
496 f5e234d6 2018-05-18 omar.polo }
497 f5e234d6 2018-05-18 omar.polo
498 f5e234d6 2018-05-18 omar.polo int parse_int_with_middle(const char *str, int default_value, int max, int self) {
499 f5e234d6 2018-05-18 omar.polo if (!strcmp(str, "middle")) {
500 f5e234d6 2018-05-18 omar.polo return (max - self)/2;
501 f5e234d6 2018-05-18 omar.polo }
502 f5e234d6 2018-05-18 omar.polo return parse_integer(str, default_value, max);
503 f5e234d6 2018-05-18 omar.polo }
504 f5e234d6 2018-05-18 omar.polo
505 f5e234d6 2018-05-18 omar.polo int main() {
506 95b27a5e 2018-05-19 omar.polo /* char *lines[INITIAL_ITEMS] = {0}; */
507 95b27a5e 2018-05-19 omar.polo char **lines = calloc(INITIAL_ITEMS, sizeof(char*));
508 95b27a5e 2018-05-19 omar.polo readlines(&lines, INITIAL_ITEMS);
509 f5e234d6 2018-05-18 omar.polo
510 f5e234d6 2018-05-18 omar.polo setlocale(LC_ALL, getenv("LANG"));
511 f5e234d6 2018-05-18 omar.polo
512 f5e234d6 2018-05-18 omar.polo enum state status = LOOPING;
513 f5e234d6 2018-05-18 omar.polo
514 f5e234d6 2018-05-18 omar.polo // where the monitor start (used only with xinerama)
515 f5e234d6 2018-05-18 omar.polo int offset_x = 0;
516 f5e234d6 2018-05-18 omar.polo int offset_y = 0;
517 f5e234d6 2018-05-18 omar.polo
518 f5e234d6 2018-05-18 omar.polo // width and height of the window
519 f5e234d6 2018-05-18 omar.polo int width = 400;
520 f5e234d6 2018-05-18 omar.polo int height = 20;
521 f5e234d6 2018-05-18 omar.polo
522 f5e234d6 2018-05-18 omar.polo // position on the screen
523 f5e234d6 2018-05-18 omar.polo int x = 0;
524 f5e234d6 2018-05-18 omar.polo int y = 0;
525 f5e234d6 2018-05-18 omar.polo
526 f5e234d6 2018-05-18 omar.polo char *fontname = strdup("fixed");
527 f5e234d6 2018-05-18 omar.polo check_allocation(fontname);
528 f5e234d6 2018-05-18 omar.polo
529 f5e234d6 2018-05-18 omar.polo int textlen = 10;
530 f5e234d6 2018-05-18 omar.polo char *text = malloc(textlen * sizeof(char));
531 f5e234d6 2018-05-18 omar.polo check_allocation(text);
532 f5e234d6 2018-05-18 omar.polo
533 f5e234d6 2018-05-18 omar.polo struct completions *cs = filter(text, lines);
534 f5e234d6 2018-05-18 omar.polo bool nothing_selected = true;
535 f5e234d6 2018-05-18 omar.polo
536 f5e234d6 2018-05-18 omar.polo // start talking to xorg
537 f5e234d6 2018-05-18 omar.polo Display *d = XOpenDisplay(nil);
538 f5e234d6 2018-05-18 omar.polo if (d == nil) {
539 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Could not open display!\n");
540 f5e234d6 2018-05-18 omar.polo return EX_UNAVAILABLE;
541 f5e234d6 2018-05-18 omar.polo }
542 f5e234d6 2018-05-18 omar.polo
543 f5e234d6 2018-05-18 omar.polo // get display size
544 f5e234d6 2018-05-18 omar.polo // XXX: is getting the default root window dimension correct?
545 f5e234d6 2018-05-18 omar.polo XWindowAttributes xwa;
546 f5e234d6 2018-05-18 omar.polo XGetWindowAttributes(d, DefaultRootWindow(d), &xwa);
547 f5e234d6 2018-05-18 omar.polo int d_width = xwa.width;
548 f5e234d6 2018-05-18 omar.polo int d_height = xwa.height;
549 f5e234d6 2018-05-18 omar.polo
550 f5e234d6 2018-05-18 omar.polo #ifdef USE_XINERAMA
551 f5e234d6 2018-05-18 omar.polo // TODO: this bit still needs to be improved
552 f5e234d6 2018-05-18 omar.polo if (XineramaIsActive(d)) {
553 f5e234d6 2018-05-18 omar.polo int monitors;
554 f5e234d6 2018-05-18 omar.polo XineramaScreenInfo *info = XineramaQueryScreens(d, &monitors);
555 f5e234d6 2018-05-18 omar.polo if (info)
556 f5e234d6 2018-05-18 omar.polo for (int i = 0; i < monitors; ++i) {
557 f5e234d6 2018-05-18 omar.polo if (INTERSECT(x, y, 1, 1, info[i].x_org, info[i].y_org, info[i].width, info[i].height)) {
558 f5e234d6 2018-05-18 omar.polo offset_x = info[x].x_org;
559 f5e234d6 2018-05-18 omar.polo offset_y = info[y].y_org;
560 f5e234d6 2018-05-18 omar.polo d_width = info[i].width;
561 f5e234d6 2018-05-18 omar.polo d_height = info[i].height;
562 f5e234d6 2018-05-18 omar.polo }
563 f5e234d6 2018-05-18 omar.polo }
564 f5e234d6 2018-05-18 omar.polo XFree(info);
565 f5e234d6 2018-05-18 omar.polo }
566 f5e234d6 2018-05-18 omar.polo #endif
567 f5e234d6 2018-05-18 omar.polo
568 f5e234d6 2018-05-18 omar.polo /* fprintf(stderr, "offset_x:\t%d\n" */
569 f5e234d6 2018-05-18 omar.polo /* "offset_y:\t%d\n" */
570 f5e234d6 2018-05-18 omar.polo /* "d_width:\t%d\n" */
571 f5e234d6 2018-05-18 omar.polo /* "d_height:\t%d\n" */
572 f5e234d6 2018-05-18 omar.polo /* , offset_x, offset_y, d_width, d_height); */
573 f5e234d6 2018-05-18 omar.polo
574 f5e234d6 2018-05-18 omar.polo Colormap cmap = DefaultColormap(d, DefaultScreen(d));
575 f5e234d6 2018-05-18 omar.polo XColor p_fg, p_bg,
576 f5e234d6 2018-05-18 omar.polo compl_fg, compl_bg,
577 f5e234d6 2018-05-18 omar.polo compl_highlighted_fg, compl_highlighted_bg;
578 f5e234d6 2018-05-18 omar.polo
579 36a15a9f 2018-05-19 omar.polo bool horizontal_layout = true;
580 36a15a9f 2018-05-19 omar.polo
581 f5e234d6 2018-05-18 omar.polo // read resource
582 f5e234d6 2018-05-18 omar.polo XrmInitialize();
583 f5e234d6 2018-05-18 omar.polo char *xrm = XResourceManagerString(d);
584 347d23da 2018-05-19 omar.polo XrmDatabase xdb = nil;
585 f5e234d6 2018-05-18 omar.polo if (xrm != nil) {
586 347d23da 2018-05-19 omar.polo xdb = XrmGetStringDatabase(xrm);
587 f5e234d6 2018-05-18 omar.polo XrmValue value;
588 f5e234d6 2018-05-18 omar.polo char *datatype[20];
589 f5e234d6 2018-05-18 omar.polo
590 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.font", "*", datatype, &value) == true) {
591 f5e234d6 2018-05-18 omar.polo fontname = strdup(value.addr);
592 f5e234d6 2018-05-18 omar.polo check_allocation(fontname);
593 f5e234d6 2018-05-18 omar.polo }
594 f5e234d6 2018-05-18 omar.polo else
595 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no font defined, using %s\n", fontname);
596 36a15a9f 2018-05-19 omar.polo
597 36a15a9f 2018-05-19 omar.polo if (XrmGetResource(xdb, "MyMenu.layout", "*", datatype, &value) == true) {
598 36a15a9f 2018-05-19 omar.polo char *v = strdup(value.addr);
599 36a15a9f 2018-05-19 omar.polo check_allocation(v);
600 36a15a9f 2018-05-19 omar.polo horizontal_layout = !strcmp(v, "horizontal");
601 36a15a9f 2018-05-19 omar.polo free(v);
602 36a15a9f 2018-05-19 omar.polo }
603 36a15a9f 2018-05-19 omar.polo else
604 36a15a9f 2018-05-19 omar.polo fprintf(stderr, "no layout defined, using horizontal\n");
605 f5e234d6 2018-05-18 omar.polo
606 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.width", "*", datatype, &value) == true)
607 f5e234d6 2018-05-18 omar.polo width = parse_integer(value.addr, width, d_width);
608 f5e234d6 2018-05-18 omar.polo else
609 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no width defined, using %d\n", width);
610 f5e234d6 2018-05-18 omar.polo
611 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.height", "*", datatype, &value) == true)
612 f5e234d6 2018-05-18 omar.polo height = parse_integer(value.addr, height, d_height);
613 f5e234d6 2018-05-18 omar.polo else
614 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no height defined, using %d\n", height);
615 f5e234d6 2018-05-18 omar.polo
616 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.x", "*", datatype, &value) == true)
617 f5e234d6 2018-05-18 omar.polo x = parse_int_with_middle(value.addr, x, d_width, width);
618 f5e234d6 2018-05-18 omar.polo else
619 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no x defined, using %d\n", width);
620 f5e234d6 2018-05-18 omar.polo
621 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.y", "*", datatype, &value) == true)
622 f5e234d6 2018-05-18 omar.polo y = parse_int_with_middle(value.addr, y, d_height, height);
623 f5e234d6 2018-05-18 omar.polo else
624 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no y defined, using %d\n", height);
625 f5e234d6 2018-05-18 omar.polo
626 f5e234d6 2018-05-18 omar.polo XColor tmp;
627 f5e234d6 2018-05-18 omar.polo // TODO: tmp needs to be free'd after every allocation?
628 f5e234d6 2018-05-18 omar.polo
629 f5e234d6 2018-05-18 omar.polo // prompt
630 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.prompt.foreground", "*", datatype, &value) == true)
631 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &p_fg, &tmp);
632 f5e234d6 2018-05-18 omar.polo else
633 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &p_fg, &tmp);
634 f5e234d6 2018-05-18 omar.polo
635 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.prompt.background", "*", datatype, &value) == true)
636 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &p_bg, &tmp);
637 f5e234d6 2018-05-18 omar.polo else
638 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &p_bg, &tmp);
639 f5e234d6 2018-05-18 omar.polo
640 f5e234d6 2018-05-18 omar.polo // completion
641 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion.foreground", "*", datatype, &value) == true)
642 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_fg, &tmp);
643 f5e234d6 2018-05-18 omar.polo else
644 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_fg, &tmp);
645 f5e234d6 2018-05-18 omar.polo
646 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion.background", "*", datatype, &value) == true)
647 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_bg, &tmp);
648 f5e234d6 2018-05-18 omar.polo else
649 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_bg, &tmp);
650 f5e234d6 2018-05-18 omar.polo
651 f5e234d6 2018-05-18 omar.polo // completion highlighted
652 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion_highlighted.foreground", "*", datatype, &value) == true)
653 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_highlighted_fg, &tmp);
654 f5e234d6 2018-05-18 omar.polo else
655 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_highlighted_fg, &tmp);
656 f5e234d6 2018-05-18 omar.polo
657 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion_highlighted.background", "*", datatype, &value) == true)
658 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_highlighted_bg, &tmp);
659 f5e234d6 2018-05-18 omar.polo else
660 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_highlighted_bg, &tmp);
661 f5e234d6 2018-05-18 omar.polo } else {
662 f5e234d6 2018-05-18 omar.polo XColor tmp;
663 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &p_fg, &tmp);
664 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &p_bg, &tmp);
665 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_fg, &tmp);
666 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_bg, &tmp);
667 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_highlighted_fg, &tmp);
668 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_highlighted_bg, &tmp);
669 f5e234d6 2018-05-18 omar.polo }
670 f5e234d6 2018-05-18 omar.polo
671 f5e234d6 2018-05-18 omar.polo // load the font
672 347d23da 2018-05-19 omar.polo /* XFontStruct *font = XLoadQueryFont(d, fontname); */
673 347d23da 2018-05-19 omar.polo /* if (font == nil) { */
674 347d23da 2018-05-19 omar.polo /* fprintf(stderr, "Unable to load %s font\n", fontname); */
675 347d23da 2018-05-19 omar.polo /* font = XLoadQueryFont(d, "fixed"); */
676 347d23da 2018-05-19 omar.polo /* } */
677 347d23da 2018-05-19 omar.polo // load the font
678 347d23da 2018-05-19 omar.polo char **missing_charset_list;
679 347d23da 2018-05-19 omar.polo int missing_charset_count;
680 347d23da 2018-05-19 omar.polo XFontSet font = XCreateFontSet(d, fontname, &missing_charset_list, &missing_charset_count, nil);
681 f5e234d6 2018-05-18 omar.polo if (font == nil) {
682 347d23da 2018-05-19 omar.polo fprintf(stderr, "Unable to load the font(s) %s\n", fontname);
683 347d23da 2018-05-19 omar.polo return EX_UNAVAILABLE;
684 f5e234d6 2018-05-18 omar.polo }
685 f5e234d6 2018-05-18 omar.polo
686 f5e234d6 2018-05-18 omar.polo // create the window
687 f5e234d6 2018-05-18 omar.polo XSetWindowAttributes attr;
688 f5e234d6 2018-05-18 omar.polo
689 f5e234d6 2018-05-18 omar.polo Window w = XCreateWindow(d, // display
690 f5e234d6 2018-05-18 omar.polo DefaultRootWindow(d), // parent
691 f5e234d6 2018-05-18 omar.polo x + offset_x, y + offset_y, // x y
692 f5e234d6 2018-05-18 omar.polo width, height, // w h
693 f5e234d6 2018-05-18 omar.polo 0, // border width
694 f5e234d6 2018-05-18 omar.polo DefaultDepth(d, DefaultScreen(d)), // depth
695 f5e234d6 2018-05-18 omar.polo InputOutput, // class
696 f5e234d6 2018-05-18 omar.polo DefaultVisual(d, DefaultScreen(d)), // visual
697 f5e234d6 2018-05-18 omar.polo 0, // value mask
698 f5e234d6 2018-05-18 omar.polo &attr);
699 f5e234d6 2018-05-18 omar.polo
700 f5e234d6 2018-05-18 omar.polo set_win_atoms_hints(d, w, width, height);
701 f5e234d6 2018-05-18 omar.polo
702 f5e234d6 2018-05-18 omar.polo // we want some events
703 f5e234d6 2018-05-18 omar.polo XSelectInput(d, w, StructureNotifyMask | KeyPressMask | KeyReleaseMask | KeymapStateMask);
704 f5e234d6 2018-05-18 omar.polo
705 f5e234d6 2018-05-18 omar.polo // make the window appear on the screen
706 f5e234d6 2018-05-18 omar.polo XMapWindow(d, w);
707 f5e234d6 2018-05-18 omar.polo
708 f5e234d6 2018-05-18 omar.polo // wait for the MapNotify event (i.e. the event "window rendered")
709 f5e234d6 2018-05-18 omar.polo for (;;) {
710 f5e234d6 2018-05-18 omar.polo XEvent e;
711 f5e234d6 2018-05-18 omar.polo XNextEvent(d, &e);
712 f5e234d6 2018-05-18 omar.polo if (e.type == MapNotify)
713 f5e234d6 2018-05-18 omar.polo break;
714 f5e234d6 2018-05-18 omar.polo }
715 f5e234d6 2018-05-18 omar.polo
716 f5e234d6 2018-05-18 omar.polo // get the *real* width & height after the window was rendered
717 f5e234d6 2018-05-18 omar.polo get_wh(d, &w, &width, &height);
718 f5e234d6 2018-05-18 omar.polo
719 f5e234d6 2018-05-18 omar.polo // grab keyboard
720 f5e234d6 2018-05-18 omar.polo take_keyboard(d, w);
721 f5e234d6 2018-05-18 omar.polo
722 f5e234d6 2018-05-18 omar.polo // Create some graphics contexts
723 f5e234d6 2018-05-18 omar.polo XGCValues values;
724 347d23da 2018-05-19 omar.polo /* values.font = font->fid; */
725 f5e234d6 2018-05-18 omar.polo
726 f5e234d6 2018-05-18 omar.polo struct rendering r = {
727 f5e234d6 2018-05-18 omar.polo .d = d,
728 f5e234d6 2018-05-18 omar.polo .w = w,
729 347d23da 2018-05-19 omar.polo .prompt = XCreateGC(d, w, 0, &values),
730 347d23da 2018-05-19 omar.polo .prompt_bg = XCreateGC(d, w, 0, &values),
731 347d23da 2018-05-19 omar.polo .completion = XCreateGC(d, w, 0, &values),
732 347d23da 2018-05-19 omar.polo .completion_bg = XCreateGC(d, w, 0, &values),
733 347d23da 2018-05-19 omar.polo .completion_highlighted = XCreateGC(d, w, 0, &values),
734 347d23da 2018-05-19 omar.polo .completion_highlighted_bg = XCreateGC(d, w, 0, &values),
735 347d23da 2018-05-19 omar.polo /* .prompt = XCreateGC(d, w, GCFont, &values), */
736 347d23da 2018-05-19 omar.polo /* .prompt_bg = XCreateGC(d, w, GCFont, &values), */
737 347d23da 2018-05-19 omar.polo /* .completion = XCreateGC(d, w, GCFont, &values), */
738 347d23da 2018-05-19 omar.polo /* .completion_bg = XCreateGC(d, w, GCFont, &values), */
739 347d23da 2018-05-19 omar.polo /* .completion_highlighted = XCreateGC(d, w, GCFont, &values), */
740 347d23da 2018-05-19 omar.polo /* .completion_highlighted_bg = XCreateGC(d, w, GCFont, &values), */
741 f5e234d6 2018-05-18 omar.polo .width = width,
742 f5e234d6 2018-05-18 omar.polo .height = height,
743 36a15a9f 2018-05-19 omar.polo .font = &font,
744 36a15a9f 2018-05-19 omar.polo .horizontal_layout = horizontal_layout
745 f5e234d6 2018-05-18 omar.polo };
746 f5e234d6 2018-05-18 omar.polo
747 f5e234d6 2018-05-18 omar.polo // load the colors in our GCs
748 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.prompt, p_fg.pixel);
749 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.prompt_bg, p_bg.pixel);
750 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion, compl_fg.pixel);
751 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion_bg, compl_bg.pixel);
752 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion_highlighted, compl_highlighted_fg.pixel);
753 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion_highlighted_bg, compl_highlighted_bg.pixel);
754 347d23da 2018-05-19 omar.polo
755 347d23da 2018-05-19 omar.polo // open the X input method
756 347d23da 2018-05-19 omar.polo XIM xim = XOpenIM(d, xdb, resname, resclass);
757 347d23da 2018-05-19 omar.polo check_allocation(xim);
758 f5e234d6 2018-05-18 omar.polo
759 347d23da 2018-05-19 omar.polo XIMStyles *xis = nil;
760 347d23da 2018-05-19 omar.polo if (XGetIMValues(xim, XNQueryInputStyle, &xis, NULL) || !xis) {
761 347d23da 2018-05-19 omar.polo fprintf(stderr, "Input Styles could not be retrieved\n");
762 347d23da 2018-05-19 omar.polo return EX_UNAVAILABLE;
763 347d23da 2018-05-19 omar.polo }
764 347d23da 2018-05-19 omar.polo
765 347d23da 2018-05-19 omar.polo XIMStyle bestMatchStyle = 0;
766 347d23da 2018-05-19 omar.polo for (int i = 0; i < xis->count_styles; ++i) {
767 347d23da 2018-05-19 omar.polo XIMStyle ts = xis->supported_styles[i];
768 347d23da 2018-05-19 omar.polo if (ts == (XIMPreeditNothing | XIMStatusNothing)) {
769 347d23da 2018-05-19 omar.polo bestMatchStyle = ts;
770 347d23da 2018-05-19 omar.polo break;
771 347d23da 2018-05-19 omar.polo }
772 347d23da 2018-05-19 omar.polo }
773 347d23da 2018-05-19 omar.polo XFree(xis);
774 347d23da 2018-05-19 omar.polo
775 347d23da 2018-05-19 omar.polo if (!bestMatchStyle) {
776 347d23da 2018-05-19 omar.polo fprintf(stderr, "No matching input style could be determined\n");
777 347d23da 2018-05-19 omar.polo }
778 347d23da 2018-05-19 omar.polo
779 347d23da 2018-05-19 omar.polo XIC xic = XCreateIC(xim, XNInputStyle, bestMatchStyle, XNClientWindow, w, XNFocusWindow, w, NULL);
780 347d23da 2018-05-19 omar.polo check_allocation(xic);
781 347d23da 2018-05-19 omar.polo
782 f5e234d6 2018-05-18 omar.polo // draw the window for the first time
783 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
784 f5e234d6 2018-05-18 omar.polo
785 f5e234d6 2018-05-18 omar.polo // main loop
786 f5e234d6 2018-05-18 omar.polo while (status == LOOPING) {
787 f5e234d6 2018-05-18 omar.polo XEvent e;
788 f5e234d6 2018-05-18 omar.polo XNextEvent(d, &e);
789 f5e234d6 2018-05-18 omar.polo
790 347d23da 2018-05-19 omar.polo if (XFilterEvent(&e, w))
791 347d23da 2018-05-19 omar.polo continue;
792 347d23da 2018-05-19 omar.polo
793 f5e234d6 2018-05-18 omar.polo switch (e.type) {
794 f5e234d6 2018-05-18 omar.polo case KeymapNotify:
795 f5e234d6 2018-05-18 omar.polo XRefreshKeyboardMapping(&e.xmapping);
796 f5e234d6 2018-05-18 omar.polo break;
797 f5e234d6 2018-05-18 omar.polo
798 f5e234d6 2018-05-18 omar.polo case KeyRelease: break; // ignore this
799 f5e234d6 2018-05-18 omar.polo
800 347d23da 2018-05-19 omar.polo case KeyPress: {
801 347d23da 2018-05-19 omar.polo XKeyPressedEvent *ev = (XKeyPressedEvent*)&e;
802 f5e234d6 2018-05-18 omar.polo
803 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_Tab)) {
804 347d23da 2018-05-19 omar.polo bool shift = (ev->state & ShiftMask);
805 347d23da 2018-05-19 omar.polo struct completions *n = shift ? compl_select_prev(cs, nothing_selected)
806 347d23da 2018-05-19 omar.polo : compl_select_next(cs, nothing_selected);
807 347d23da 2018-05-19 omar.polo if (n != nil) {
808 347d23da 2018-05-19 omar.polo nothing_selected = false;
809 347d23da 2018-05-19 omar.polo free(text);
810 347d23da 2018-05-19 omar.polo text = strdup(n->completion);
811 347d23da 2018-05-19 omar.polo if (text == nil) {
812 347d23da 2018-05-19 omar.polo fprintf(stderr, "Memory allocation error!\n");
813 347d23da 2018-05-19 omar.polo status = ERR;
814 347d23da 2018-05-19 omar.polo break;
815 f5e234d6 2018-05-18 omar.polo }
816 347d23da 2018-05-19 omar.polo textlen = strlen(text);
817 f5e234d6 2018-05-18 omar.polo }
818 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
819 f5e234d6 2018-05-18 omar.polo break;
820 f5e234d6 2018-05-18 omar.polo }
821 f5e234d6 2018-05-18 omar.polo
822 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_BackSpace)) {
823 f5e234d6 2018-05-18 omar.polo nothing_selected = true;
824 f5e234d6 2018-05-18 omar.polo popc(text, textlen);
825 f5e234d6 2018-05-18 omar.polo update_completions(cs, text, lines);
826 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
827 f5e234d6 2018-05-18 omar.polo break;
828 347d23da 2018-05-19 omar.polo }
829 f5e234d6 2018-05-18 omar.polo
830 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_Return)) {
831 347d23da 2018-05-19 omar.polo status = OK;
832 347d23da 2018-05-19 omar.polo break;
833 347d23da 2018-05-19 omar.polo }
834 f5e234d6 2018-05-18 omar.polo
835 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_Escape)) {
836 347d23da 2018-05-19 omar.polo status = ERR;
837 347d23da 2018-05-19 omar.polo break;
838 347d23da 2018-05-19 omar.polo }
839 f5e234d6 2018-05-18 omar.polo
840 347d23da 2018-05-19 omar.polo // try to read what the user pressed
841 347d23da 2018-05-19 omar.polo int symbol = 0;
842 347d23da 2018-05-19 omar.polo Status s = 0;
843 347d23da 2018-05-19 omar.polo Xutf8LookupString(xic, ev, (char*)&symbol, 4, 0, &s);
844 347d23da 2018-05-19 omar.polo
845 347d23da 2018-05-19 omar.polo if (s == XBufferOverflow) {
846 347d23da 2018-05-19 omar.polo // should not happen since there are no utf-8 characters
847 347d23da 2018-05-19 omar.polo // larger than 24bits, but is something to be aware of when
848 347d23da 2018-05-19 omar.polo // used to directly write to a string buffer
849 347d23da 2018-05-19 omar.polo fprintf(stderr, "Buffer overflow when trying to create keyboard symbol map.\n");
850 347d23da 2018-05-19 omar.polo break;
851 347d23da 2018-05-19 omar.polo }
852 347d23da 2018-05-19 omar.polo char *str = (char*)&symbol;
853 347d23da 2018-05-19 omar.polo
854 347d23da 2018-05-19 omar.polo if (ev->state & ControlMask) {
855 347d23da 2018-05-19 omar.polo // check for some key bindings
856 347d23da 2018-05-19 omar.polo if (!strcmp(str, "")) { // C-u
857 f5e234d6 2018-05-18 omar.polo nothing_selected = true;
858 347d23da 2018-05-19 omar.polo for (int i = 0; i < textlen; ++i)
859 347d23da 2018-05-19 omar.polo text[i] = 0;
860 f5e234d6 2018-05-18 omar.polo update_completions(cs, text, lines);
861 f5e234d6 2018-05-18 omar.polo }
862 347d23da 2018-05-19 omar.polo if (!strcmp(str, "")) { // C-h
863 347d23da 2018-05-19 omar.polo nothing_selected = true;
864 347d23da 2018-05-19 omar.polo popc(text, textlen);
865 347d23da 2018-05-19 omar.polo update_completions(cs, text, lines);
866 347d23da 2018-05-19 omar.polo }
867 347d23da 2018-05-19 omar.polo if (!strcmp(str, "")) { // C-w
868 347d23da 2018-05-19 omar.polo nothing_selected = true;
869 347d23da 2018-05-19 omar.polo
870 347d23da 2018-05-19 omar.polo // `textlen` is the length of the allocated string, not the
871 347d23da 2018-05-19 omar.polo // length of the ACTUAL string
872 347d23da 2018-05-19 omar.polo int p = strlen(text) - 1;
873 347d23da 2018-05-19 omar.polo if (p >= 0) { // delete the current char
874 347d23da 2018-05-19 omar.polo text[p] = 0;
875 347d23da 2018-05-19 omar.polo p--;
876 347d23da 2018-05-19 omar.polo }
877 347d23da 2018-05-19 omar.polo while (p >= 0 && isalnum(text[p])) {
878 347d23da 2018-05-19 omar.polo text[p] = 0;
879 347d23da 2018-05-19 omar.polo p--;
880 347d23da 2018-05-19 omar.polo }
881 347d23da 2018-05-19 omar.polo // erase also trailing white space
882 347d23da 2018-05-19 omar.polo while (p >= 0 && isspace(text[p])) {
883 347d23da 2018-05-19 omar.polo text[p] = 0;
884 347d23da 2018-05-19 omar.polo p--;
885 347d23da 2018-05-19 omar.polo }
886 347d23da 2018-05-19 omar.polo update_completions(cs, text, lines);
887 347d23da 2018-05-19 omar.polo }
888 347d23da 2018-05-19 omar.polo if (!strcmp(str, "\r")) { // C-m
889 347d23da 2018-05-19 omar.polo status = OK;
890 347d23da 2018-05-19 omar.polo }
891 347d23da 2018-05-19 omar.polo draw(&r, text, cs);
892 f5e234d6 2018-05-18 omar.polo break;
893 f5e234d6 2018-05-18 omar.polo }
894 f5e234d6 2018-05-18 omar.polo
895 347d23da 2018-05-19 omar.polo int str_len = strlen(str);
896 347d23da 2018-05-19 omar.polo for (int i = 0; i < str_len; ++i) {
897 347d23da 2018-05-19 omar.polo textlen = pushc(&text, textlen, str[i]);
898 347d23da 2018-05-19 omar.polo if (textlen == -1) {
899 347d23da 2018-05-19 omar.polo fprintf(stderr, "Memory allocation error\n");
900 347d23da 2018-05-19 omar.polo status = ERR;
901 347d23da 2018-05-19 omar.polo break;
902 347d23da 2018-05-19 omar.polo }
903 347d23da 2018-05-19 omar.polo nothing_selected = true;
904 347d23da 2018-05-19 omar.polo update_completions(cs, text, lines);
905 347d23da 2018-05-19 omar.polo }
906 347d23da 2018-05-19 omar.polo
907 347d23da 2018-05-19 omar.polo }
908 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
909 f5e234d6 2018-05-18 omar.polo break;
910 f5e234d6 2018-05-18 omar.polo
911 f5e234d6 2018-05-18 omar.polo default:
912 347d23da 2018-05-19 omar.polo fprintf(stderr, "Unknown event %d\n", e.type);
913 f5e234d6 2018-05-18 omar.polo }
914 f5e234d6 2018-05-18 omar.polo }
915 f5e234d6 2018-05-18 omar.polo
916 f5e234d6 2018-05-18 omar.polo release_keyboard(d);
917 f5e234d6 2018-05-18 omar.polo
918 f5e234d6 2018-05-18 omar.polo if (status == OK)
919 f5e234d6 2018-05-18 omar.polo printf("%s\n", text);
920 f5e234d6 2018-05-18 omar.polo
921 f5e234d6 2018-05-18 omar.polo free(fontname);
922 f5e234d6 2018-05-18 omar.polo free(text);
923 95b27a5e 2018-05-19 omar.polo free(lines);
924 f5e234d6 2018-05-18 omar.polo compl_delete(cs);
925 f5e234d6 2018-05-18 omar.polo
926 f5e234d6 2018-05-18 omar.polo /* XDestroyWindow(d, w); */
927 f5e234d6 2018-05-18 omar.polo XCloseDisplay(d);
928 f5e234d6 2018-05-18 omar.polo
929 f5e234d6 2018-05-18 omar.polo return status == OK ? 0 : 1;
930 f5e234d6 2018-05-18 omar.polo }