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 6da98882 2018-05-20 omar.polo if (strlen(lines[n]) == 0 || lines[n][0] == '\n') {
268 6da98882 2018-05-20 omar.polo free(lines[n]);
269 f5e234d6 2018-05-18 omar.polo --n; // forget about this line
270 6da98882 2018-05-20 omar.polo }
271 f5e234d6 2018-05-18 omar.polo
272 f5e234d6 2018-05-18 omar.polo if (finished)
273 f5e234d6 2018-05-18 omar.polo break;
274 f5e234d6 2018-05-18 omar.polo
275 f5e234d6 2018-05-18 omar.polo ++n;
276 95b27a5e 2018-05-19 omar.polo
277 95b27a5e 2018-05-19 omar.polo if (n == items - 1) {
278 95b27a5e 2018-05-19 omar.polo items += items >>1;
279 95b27a5e 2018-05-19 omar.polo char **l = realloc(lines, sizeof(char*) * items);
280 95b27a5e 2018-05-19 omar.polo check_allocation(l);
281 95b27a5e 2018-05-19 omar.polo *lns = l;
282 95b27a5e 2018-05-19 omar.polo lines = l;
283 95b27a5e 2018-05-19 omar.polo }
284 f5e234d6 2018-05-18 omar.polo }
285 95b27a5e 2018-05-19 omar.polo
286 f5e234d6 2018-05-18 omar.polo n++;
287 f5e234d6 2018-05-18 omar.polo lines[n] = nil;
288 95b27a5e 2018-05-19 omar.polo return items;
289 f5e234d6 2018-05-18 omar.polo }
290 f5e234d6 2018-05-18 omar.polo
291 f5e234d6 2018-05-18 omar.polo // |------------------|----------------------------------------------|
292 f5e234d6 2018-05-18 omar.polo // | 20 char text | completion | completion | completion | compl |
293 f5e234d6 2018-05-18 omar.polo // |------------------|----------------------------------------------|
294 36a15a9f 2018-05-19 omar.polo void draw_horizontally(struct rendering *r, char *text, struct completions *cs) {
295 f5e234d6 2018-05-18 omar.polo // TODO: make these dynamic?
296 f5e234d6 2018-05-18 omar.polo int prompt_width = 20; // char
297 f5e234d6 2018-05-18 omar.polo int padding = 10;
298 347d23da 2018-05-19 omar.polo /* int start_at = XTextWidth(r->font, " ", 1) * prompt_width + padding; */
299 f5e234d6 2018-05-18 omar.polo
300 347d23da 2018-05-19 omar.polo XRectangle rect;
301 347d23da 2018-05-19 omar.polo int start_at = XmbTextExtents(*r->font, " ", 1, nil, &rect);
302 347d23da 2018-05-19 omar.polo start_at = start_at * prompt_width + padding;
303 347d23da 2018-05-19 omar.polo
304 347d23da 2018-05-19 omar.polo int texty = (rect.height + r->height) >>1;
305 347d23da 2018-05-19 omar.polo
306 f5e234d6 2018-05-18 omar.polo XFillRectangle(r->d, r->w, r->prompt_bg, 0, 0, start_at, r->height);
307 f5e234d6 2018-05-18 omar.polo
308 f5e234d6 2018-05-18 omar.polo int text_len = strlen(text);
309 f5e234d6 2018-05-18 omar.polo if (text_len > prompt_width)
310 f5e234d6 2018-05-18 omar.polo text = text + (text_len - prompt_width);
311 347d23da 2018-05-19 omar.polo /* XDrawString(r->d, r->w, r->prompt, padding, texty, text, MIN(text_len, prompt_width)); */
312 347d23da 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, r->prompt, padding, texty, text, MIN(text_len, prompt_width));
313 f5e234d6 2018-05-18 omar.polo
314 f5e234d6 2018-05-18 omar.polo XFillRectangle(r->d, r->w, r->completion_bg, start_at, 0, r->width, r->height);
315 f5e234d6 2018-05-18 omar.polo
316 f5e234d6 2018-05-18 omar.polo while (cs != nil) {
317 f5e234d6 2018-05-18 omar.polo GC g = cs->selected ? r->completion_highlighted : r->completion;
318 f5e234d6 2018-05-18 omar.polo GC h = cs->selected ? r->completion_highlighted_bg : r->completion_bg;
319 f5e234d6 2018-05-18 omar.polo
320 f5e234d6 2018-05-18 omar.polo int len = strlen(cs->completion);
321 347d23da 2018-05-19 omar.polo /* int text_width = XTextWidth(r->font, cs->completion, len); */
322 347d23da 2018-05-19 omar.polo int text_width = XmbTextExtents(*r->font, cs->completion, len, nil, nil);
323 f5e234d6 2018-05-18 omar.polo
324 f5e234d6 2018-05-18 omar.polo XFillRectangle(r->d, r->w, h, start_at, 0, text_width + padding*2, r->height);
325 f5e234d6 2018-05-18 omar.polo
326 347d23da 2018-05-19 omar.polo /* XDrawString(r->d, r->w, g, start_at + padding, texty, cs->completion, len); */
327 347d23da 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, g, start_at + padding, texty, cs->completion, len);
328 347d23da 2018-05-19 omar.polo
329 f5e234d6 2018-05-18 omar.polo start_at += text_width + padding * 2;
330 f5e234d6 2018-05-18 omar.polo
331 0ee198aa 2018-05-19 omar.polo if (start_at > r->width)
332 0ee198aa 2018-05-19 omar.polo break; // don't draw completion if the space isn't enough
333 0ee198aa 2018-05-19 omar.polo
334 f5e234d6 2018-05-18 omar.polo cs = cs->next;
335 f5e234d6 2018-05-18 omar.polo }
336 f5e234d6 2018-05-18 omar.polo
337 f5e234d6 2018-05-18 omar.polo XFlush(r->d);
338 f5e234d6 2018-05-18 omar.polo }
339 36a15a9f 2018-05-19 omar.polo
340 36a15a9f 2018-05-19 omar.polo // |-----------------------------------------------------------------|
341 36a15a9f 2018-05-19 omar.polo // | prompt |
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 // | completion |
346 36a15a9f 2018-05-19 omar.polo // |-----------------------------------------------------------------|
347 36a15a9f 2018-05-19 omar.polo // TODO: dunno why but in the call to Xutf8DrawString, by logic,
348 36a15a9f 2018-05-19 omar.polo // should be padding and not padding*2, but the text doesn't seem to
349 36a15a9f 2018-05-19 omar.polo // be vertically centered otherwise....
350 36a15a9f 2018-05-19 omar.polo void draw_vertically(struct rendering *r, char *text, struct completions *cs) {
351 36a15a9f 2018-05-19 omar.polo int padding = 10; // TODO make this dynamic
352 f5e234d6 2018-05-18 omar.polo
353 36a15a9f 2018-05-19 omar.polo XRectangle rect;
354 36a15a9f 2018-05-19 omar.polo XmbTextExtents(*r->font, "fjpgl", 5, &rect, nil);
355 36a15a9f 2018-05-19 omar.polo int start_at = rect.height + padding*2;
356 36a15a9f 2018-05-19 omar.polo
357 36a15a9f 2018-05-19 omar.polo XFillRectangle(r->d, r->w, r->completion_bg, 0, 0, r->width, r->height);
358 36a15a9f 2018-05-19 omar.polo XFillRectangle(r->d, r->w, r->prompt_bg, 0, 0, r->width, start_at);
359 36a15a9f 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, r->prompt, padding, padding*2, text, strlen(text));
360 36a15a9f 2018-05-19 omar.polo
361 36a15a9f 2018-05-19 omar.polo while (cs != nil) {
362 36a15a9f 2018-05-19 omar.polo GC g = cs->selected ? r->completion_highlighted : r->completion;
363 36a15a9f 2018-05-19 omar.polo GC h = cs->selected ? r->completion_highlighted_bg : r->completion_bg;
364 36a15a9f 2018-05-19 omar.polo
365 36a15a9f 2018-05-19 omar.polo int len = strlen(cs->completion);
366 36a15a9f 2018-05-19 omar.polo XmbTextExtents(*r->font, cs->completion, len, &rect, nil);
367 36a15a9f 2018-05-19 omar.polo XFillRectangle(r->d, r->w, h, 0, start_at, r->width, rect.height + padding*2);
368 36a15a9f 2018-05-19 omar.polo Xutf8DrawString(r->d, r->w, *r->font, g, padding, start_at + padding*2, cs->completion, len);
369 36a15a9f 2018-05-19 omar.polo
370 36a15a9f 2018-05-19 omar.polo start_at += rect.height + padding *2;
371 0ee198aa 2018-05-19 omar.polo
372 0ee198aa 2018-05-19 omar.polo if (start_at > r->height)
373 0ee198aa 2018-05-19 omar.polo break; // don't draw completion if the space isn't enough
374 0ee198aa 2018-05-19 omar.polo
375 36a15a9f 2018-05-19 omar.polo cs = cs->next;
376 36a15a9f 2018-05-19 omar.polo }
377 36a15a9f 2018-05-19 omar.polo
378 36a15a9f 2018-05-19 omar.polo XFlush(r->d);
379 36a15a9f 2018-05-19 omar.polo }
380 36a15a9f 2018-05-19 omar.polo
381 36a15a9f 2018-05-19 omar.polo void draw(struct rendering *r, char *text, struct completions *cs) {
382 36a15a9f 2018-05-19 omar.polo if (r->horizontal_layout)
383 36a15a9f 2018-05-19 omar.polo draw_horizontally(r, text, cs);
384 36a15a9f 2018-05-19 omar.polo else
385 36a15a9f 2018-05-19 omar.polo draw_vertically(r, text, cs);
386 36a15a9f 2018-05-19 omar.polo }
387 36a15a9f 2018-05-19 omar.polo
388 f5e234d6 2018-05-18 omar.polo /* Set some WM stuff */
389 f5e234d6 2018-05-18 omar.polo void set_win_atoms_hints(Display *d, Window w, int width, int height) {
390 f5e234d6 2018-05-18 omar.polo Atom type;
391 f5e234d6 2018-05-18 omar.polo type = XInternAtom(d, "_NET_WM_WINDOW_TYPE_DOCK", false);
392 f5e234d6 2018-05-18 omar.polo XChangeProperty(
393 f5e234d6 2018-05-18 omar.polo d,
394 f5e234d6 2018-05-18 omar.polo w,
395 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "_NET_WM_WINDOW_TYPE", false),
396 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "ATOM", false),
397 f5e234d6 2018-05-18 omar.polo 32,
398 f5e234d6 2018-05-18 omar.polo PropModeReplace,
399 f5e234d6 2018-05-18 omar.polo (unsigned char *)&type,
400 f5e234d6 2018-05-18 omar.polo 1
401 f5e234d6 2018-05-18 omar.polo );
402 f5e234d6 2018-05-18 omar.polo
403 f5e234d6 2018-05-18 omar.polo /* some window managers honor this properties */
404 f5e234d6 2018-05-18 omar.polo type = XInternAtom(d, "_NET_WM_STATE_ABOVE", false);
405 f5e234d6 2018-05-18 omar.polo XChangeProperty(d,
406 f5e234d6 2018-05-18 omar.polo w,
407 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "_NET_WM_STATE", false),
408 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "ATOM", false),
409 f5e234d6 2018-05-18 omar.polo 32,
410 f5e234d6 2018-05-18 omar.polo PropModeReplace,
411 f5e234d6 2018-05-18 omar.polo (unsigned char *)&type,
412 f5e234d6 2018-05-18 omar.polo 1
413 f5e234d6 2018-05-18 omar.polo );
414 f5e234d6 2018-05-18 omar.polo
415 f5e234d6 2018-05-18 omar.polo type = XInternAtom(d, "_NET_WM_STATE_FOCUSED", false);
416 f5e234d6 2018-05-18 omar.polo XChangeProperty(d,
417 f5e234d6 2018-05-18 omar.polo w,
418 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "_NET_WM_STATE", false),
419 f5e234d6 2018-05-18 omar.polo XInternAtom(d, "ATOM", false),
420 f5e234d6 2018-05-18 omar.polo 32,
421 f5e234d6 2018-05-18 omar.polo PropModeAppend,
422 f5e234d6 2018-05-18 omar.polo (unsigned char *)&type,
423 f5e234d6 2018-05-18 omar.polo 1
424 f5e234d6 2018-05-18 omar.polo );
425 f5e234d6 2018-05-18 omar.polo
426 f5e234d6 2018-05-18 omar.polo // setting window hints
427 f5e234d6 2018-05-18 omar.polo XClassHint *class_hint = XAllocClassHint();
428 f5e234d6 2018-05-18 omar.polo if (class_hint == nil) {
429 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Could not allocate memory for class hint\n");
430 f5e234d6 2018-05-18 omar.polo exit(EX_UNAVAILABLE);
431 f5e234d6 2018-05-18 omar.polo }
432 f5e234d6 2018-05-18 omar.polo class_hint->res_name = "mymenu";
433 f5e234d6 2018-05-18 omar.polo class_hint->res_class = "mymenu";
434 f5e234d6 2018-05-18 omar.polo XSetClassHint(d, w, class_hint);
435 f5e234d6 2018-05-18 omar.polo XFree(class_hint);
436 f5e234d6 2018-05-18 omar.polo
437 f5e234d6 2018-05-18 omar.polo XSizeHints *size_hint = XAllocSizeHints();
438 f5e234d6 2018-05-18 omar.polo if (size_hint == nil) {
439 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Could not allocate memory for size hint\n");
440 f5e234d6 2018-05-18 omar.polo exit(EX_UNAVAILABLE);
441 f5e234d6 2018-05-18 omar.polo }
442 f5e234d6 2018-05-18 omar.polo size_hint->min_width = width;
443 f5e234d6 2018-05-18 omar.polo size_hint->base_width = width;
444 f5e234d6 2018-05-18 omar.polo size_hint->min_height = height;
445 f5e234d6 2018-05-18 omar.polo size_hint->base_height = height;
446 f5e234d6 2018-05-18 omar.polo
447 f5e234d6 2018-05-18 omar.polo XFlush(d);
448 f5e234d6 2018-05-18 omar.polo }
449 f5e234d6 2018-05-18 omar.polo
450 f5e234d6 2018-05-18 omar.polo void get_wh(Display *d, Window *w, int *width, int *height) {
451 f5e234d6 2018-05-18 omar.polo XWindowAttributes win_attr;
452 f5e234d6 2018-05-18 omar.polo XGetWindowAttributes(d, *w, &win_attr);
453 f5e234d6 2018-05-18 omar.polo *height = win_attr.height;
454 f5e234d6 2018-05-18 omar.polo *width = win_attr.width;
455 f5e234d6 2018-05-18 omar.polo }
456 f5e234d6 2018-05-18 omar.polo
457 f5e234d6 2018-05-18 omar.polo // I know this may seem a little hackish BUT is the only way I managed
458 f5e234d6 2018-05-18 omar.polo // to actually grab that goddam keyboard. Only one call to
459 f5e234d6 2018-05-18 omar.polo // XGrabKeyboard does not always end up with the keyboard grabbed!
460 f5e234d6 2018-05-18 omar.polo int take_keyboard(Display *d, Window w) {
461 686e9237 2018-05-18 omar.polo int i;
462 686e9237 2018-05-18 omar.polo for (i = 0; i < 100; i++) {
463 686e9237 2018-05-18 omar.polo if (XGrabKeyboard(d, w, True, GrabModeAsync, GrabModeAsync, CurrentTime) == GrabSuccess)
464 686e9237 2018-05-18 omar.polo return 1;
465 686e9237 2018-05-18 omar.polo usleep(1000);
466 686e9237 2018-05-18 omar.polo }
467 686e9237 2018-05-18 omar.polo return 0;
468 f5e234d6 2018-05-18 omar.polo }
469 f5e234d6 2018-05-18 omar.polo
470 f5e234d6 2018-05-18 omar.polo void release_keyboard(Display *d) {
471 686e9237 2018-05-18 omar.polo XUngrabKeyboard(d, CurrentTime);
472 f5e234d6 2018-05-18 omar.polo }
473 f5e234d6 2018-05-18 omar.polo
474 f5e234d6 2018-05-18 omar.polo int parse_integer(const char *str, int default_value, int max) {
475 f5e234d6 2018-05-18 omar.polo int len = strlen(str);
476 f5e234d6 2018-05-18 omar.polo if (len > 0 && str[len-1] == '%') {
477 f5e234d6 2018-05-18 omar.polo char *cpy = strdup(str);
478 f5e234d6 2018-05-18 omar.polo check_allocation(cpy);
479 f5e234d6 2018-05-18 omar.polo cpy[len-1] = '\0';
480 f5e234d6 2018-05-18 omar.polo int val = parse_integer(cpy, default_value, max);
481 f5e234d6 2018-05-18 omar.polo free(cpy);
482 f5e234d6 2018-05-18 omar.polo return val * max / 100;
483 f5e234d6 2018-05-18 omar.polo }
484 f5e234d6 2018-05-18 omar.polo
485 f5e234d6 2018-05-18 omar.polo errno = 0;
486 f5e234d6 2018-05-18 omar.polo char *ep;
487 f5e234d6 2018-05-18 omar.polo long lval = strtol(str, &ep, 10);
488 f5e234d6 2018-05-18 omar.polo if (str[0] == '\0' || *ep != '\0') { // NaN
489 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "'%s' is not a valid number! Using %d as default.\n", str, default_value);
490 f5e234d6 2018-05-18 omar.polo return default_value;
491 f5e234d6 2018-05-18 omar.polo }
492 f5e234d6 2018-05-18 omar.polo if ((errno == ERANGE && (lval == LONG_MAX || lval == LONG_MIN)) ||
493 f5e234d6 2018-05-18 omar.polo (lval > INT_MAX || lval < INT_MIN)) {
494 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "%s out of range! Using %d as default.\n", str, default_value);
495 f5e234d6 2018-05-18 omar.polo return default_value;
496 f5e234d6 2018-05-18 omar.polo }
497 f5e234d6 2018-05-18 omar.polo return lval;
498 f5e234d6 2018-05-18 omar.polo }
499 f5e234d6 2018-05-18 omar.polo
500 f5e234d6 2018-05-18 omar.polo int parse_int_with_middle(const char *str, int default_value, int max, int self) {
501 f5e234d6 2018-05-18 omar.polo if (!strcmp(str, "middle")) {
502 f5e234d6 2018-05-18 omar.polo return (max - self)/2;
503 f5e234d6 2018-05-18 omar.polo }
504 f5e234d6 2018-05-18 omar.polo return parse_integer(str, default_value, max);
505 f5e234d6 2018-05-18 omar.polo }
506 f5e234d6 2018-05-18 omar.polo
507 f5e234d6 2018-05-18 omar.polo int main() {
508 95b27a5e 2018-05-19 omar.polo /* char *lines[INITIAL_ITEMS] = {0}; */
509 95b27a5e 2018-05-19 omar.polo char **lines = calloc(INITIAL_ITEMS, sizeof(char*));
510 6da98882 2018-05-20 omar.polo int nlines = readlines(&lines, INITIAL_ITEMS);
511 f5e234d6 2018-05-18 omar.polo
512 f5e234d6 2018-05-18 omar.polo setlocale(LC_ALL, getenv("LANG"));
513 f5e234d6 2018-05-18 omar.polo
514 f5e234d6 2018-05-18 omar.polo enum state status = LOOPING;
515 f5e234d6 2018-05-18 omar.polo
516 f5e234d6 2018-05-18 omar.polo // where the monitor start (used only with xinerama)
517 f5e234d6 2018-05-18 omar.polo int offset_x = 0;
518 f5e234d6 2018-05-18 omar.polo int offset_y = 0;
519 f5e234d6 2018-05-18 omar.polo
520 f5e234d6 2018-05-18 omar.polo // width and height of the window
521 f5e234d6 2018-05-18 omar.polo int width = 400;
522 f5e234d6 2018-05-18 omar.polo int height = 20;
523 f5e234d6 2018-05-18 omar.polo
524 f5e234d6 2018-05-18 omar.polo // position on the screen
525 f5e234d6 2018-05-18 omar.polo int x = 0;
526 f5e234d6 2018-05-18 omar.polo int y = 0;
527 f5e234d6 2018-05-18 omar.polo
528 f5e234d6 2018-05-18 omar.polo char *fontname = strdup("fixed");
529 f5e234d6 2018-05-18 omar.polo check_allocation(fontname);
530 f5e234d6 2018-05-18 omar.polo
531 f5e234d6 2018-05-18 omar.polo int textlen = 10;
532 f5e234d6 2018-05-18 omar.polo char *text = malloc(textlen * sizeof(char));
533 f5e234d6 2018-05-18 omar.polo check_allocation(text);
534 f5e234d6 2018-05-18 omar.polo
535 f5e234d6 2018-05-18 omar.polo struct completions *cs = filter(text, lines);
536 f5e234d6 2018-05-18 omar.polo bool nothing_selected = true;
537 f5e234d6 2018-05-18 omar.polo
538 f5e234d6 2018-05-18 omar.polo // start talking to xorg
539 f5e234d6 2018-05-18 omar.polo Display *d = XOpenDisplay(nil);
540 f5e234d6 2018-05-18 omar.polo if (d == nil) {
541 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "Could not open display!\n");
542 f5e234d6 2018-05-18 omar.polo return EX_UNAVAILABLE;
543 f5e234d6 2018-05-18 omar.polo }
544 f5e234d6 2018-05-18 omar.polo
545 f5e234d6 2018-05-18 omar.polo // get display size
546 f5e234d6 2018-05-18 omar.polo // XXX: is getting the default root window dimension correct?
547 f5e234d6 2018-05-18 omar.polo XWindowAttributes xwa;
548 f5e234d6 2018-05-18 omar.polo XGetWindowAttributes(d, DefaultRootWindow(d), &xwa);
549 f5e234d6 2018-05-18 omar.polo int d_width = xwa.width;
550 f5e234d6 2018-05-18 omar.polo int d_height = xwa.height;
551 f5e234d6 2018-05-18 omar.polo
552 f5e234d6 2018-05-18 omar.polo #ifdef USE_XINERAMA
553 f5e234d6 2018-05-18 omar.polo // TODO: this bit still needs to be improved
554 f5e234d6 2018-05-18 omar.polo if (XineramaIsActive(d)) {
555 f5e234d6 2018-05-18 omar.polo int monitors;
556 f5e234d6 2018-05-18 omar.polo XineramaScreenInfo *info = XineramaQueryScreens(d, &monitors);
557 f5e234d6 2018-05-18 omar.polo if (info)
558 f5e234d6 2018-05-18 omar.polo for (int i = 0; i < monitors; ++i) {
559 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)) {
560 f5e234d6 2018-05-18 omar.polo offset_x = info[x].x_org;
561 f5e234d6 2018-05-18 omar.polo offset_y = info[y].y_org;
562 f5e234d6 2018-05-18 omar.polo d_width = info[i].width;
563 f5e234d6 2018-05-18 omar.polo d_height = info[i].height;
564 f5e234d6 2018-05-18 omar.polo }
565 f5e234d6 2018-05-18 omar.polo }
566 f5e234d6 2018-05-18 omar.polo XFree(info);
567 f5e234d6 2018-05-18 omar.polo }
568 f5e234d6 2018-05-18 omar.polo #endif
569 f5e234d6 2018-05-18 omar.polo
570 f5e234d6 2018-05-18 omar.polo /* fprintf(stderr, "offset_x:\t%d\n" */
571 f5e234d6 2018-05-18 omar.polo /* "offset_y:\t%d\n" */
572 f5e234d6 2018-05-18 omar.polo /* "d_width:\t%d\n" */
573 f5e234d6 2018-05-18 omar.polo /* "d_height:\t%d\n" */
574 f5e234d6 2018-05-18 omar.polo /* , offset_x, offset_y, d_width, d_height); */
575 f5e234d6 2018-05-18 omar.polo
576 f5e234d6 2018-05-18 omar.polo Colormap cmap = DefaultColormap(d, DefaultScreen(d));
577 f5e234d6 2018-05-18 omar.polo XColor p_fg, p_bg,
578 f5e234d6 2018-05-18 omar.polo compl_fg, compl_bg,
579 f5e234d6 2018-05-18 omar.polo compl_highlighted_fg, compl_highlighted_bg;
580 f5e234d6 2018-05-18 omar.polo
581 36a15a9f 2018-05-19 omar.polo bool horizontal_layout = true;
582 36a15a9f 2018-05-19 omar.polo
583 f5e234d6 2018-05-18 omar.polo // read resource
584 f5e234d6 2018-05-18 omar.polo XrmInitialize();
585 f5e234d6 2018-05-18 omar.polo char *xrm = XResourceManagerString(d);
586 347d23da 2018-05-19 omar.polo XrmDatabase xdb = nil;
587 f5e234d6 2018-05-18 omar.polo if (xrm != nil) {
588 347d23da 2018-05-19 omar.polo xdb = XrmGetStringDatabase(xrm);
589 f5e234d6 2018-05-18 omar.polo XrmValue value;
590 f5e234d6 2018-05-18 omar.polo char *datatype[20];
591 f5e234d6 2018-05-18 omar.polo
592 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.font", "*", datatype, &value) == true) {
593 f5e234d6 2018-05-18 omar.polo fontname = strdup(value.addr);
594 f5e234d6 2018-05-18 omar.polo check_allocation(fontname);
595 f5e234d6 2018-05-18 omar.polo }
596 f5e234d6 2018-05-18 omar.polo else
597 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no font defined, using %s\n", fontname);
598 36a15a9f 2018-05-19 omar.polo
599 36a15a9f 2018-05-19 omar.polo if (XrmGetResource(xdb, "MyMenu.layout", "*", datatype, &value) == true) {
600 36a15a9f 2018-05-19 omar.polo char *v = strdup(value.addr);
601 36a15a9f 2018-05-19 omar.polo check_allocation(v);
602 36a15a9f 2018-05-19 omar.polo horizontal_layout = !strcmp(v, "horizontal");
603 36a15a9f 2018-05-19 omar.polo free(v);
604 36a15a9f 2018-05-19 omar.polo }
605 36a15a9f 2018-05-19 omar.polo else
606 36a15a9f 2018-05-19 omar.polo fprintf(stderr, "no layout defined, using horizontal\n");
607 f5e234d6 2018-05-18 omar.polo
608 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.width", "*", datatype, &value) == true)
609 f5e234d6 2018-05-18 omar.polo width = parse_integer(value.addr, width, d_width);
610 f5e234d6 2018-05-18 omar.polo else
611 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no width defined, using %d\n", width);
612 f5e234d6 2018-05-18 omar.polo
613 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.height", "*", datatype, &value) == true)
614 f5e234d6 2018-05-18 omar.polo height = parse_integer(value.addr, height, d_height);
615 f5e234d6 2018-05-18 omar.polo else
616 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no height defined, using %d\n", height);
617 f5e234d6 2018-05-18 omar.polo
618 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.x", "*", datatype, &value) == true)
619 f5e234d6 2018-05-18 omar.polo x = parse_int_with_middle(value.addr, x, d_width, width);
620 f5e234d6 2018-05-18 omar.polo else
621 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no x defined, using %d\n", width);
622 f5e234d6 2018-05-18 omar.polo
623 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.y", "*", datatype, &value) == true)
624 f5e234d6 2018-05-18 omar.polo y = parse_int_with_middle(value.addr, y, d_height, height);
625 f5e234d6 2018-05-18 omar.polo else
626 f5e234d6 2018-05-18 omar.polo fprintf(stderr, "no y defined, using %d\n", height);
627 f5e234d6 2018-05-18 omar.polo
628 f5e234d6 2018-05-18 omar.polo XColor tmp;
629 f5e234d6 2018-05-18 omar.polo // TODO: tmp needs to be free'd after every allocation?
630 f5e234d6 2018-05-18 omar.polo
631 f5e234d6 2018-05-18 omar.polo // prompt
632 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.prompt.foreground", "*", datatype, &value) == true)
633 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &p_fg, &tmp);
634 f5e234d6 2018-05-18 omar.polo else
635 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &p_fg, &tmp);
636 f5e234d6 2018-05-18 omar.polo
637 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.prompt.background", "*", datatype, &value) == true)
638 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &p_bg, &tmp);
639 f5e234d6 2018-05-18 omar.polo else
640 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &p_bg, &tmp);
641 f5e234d6 2018-05-18 omar.polo
642 f5e234d6 2018-05-18 omar.polo // completion
643 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion.foreground", "*", datatype, &value) == true)
644 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_fg, &tmp);
645 f5e234d6 2018-05-18 omar.polo else
646 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_fg, &tmp);
647 f5e234d6 2018-05-18 omar.polo
648 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion.background", "*", datatype, &value) == true)
649 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_bg, &tmp);
650 f5e234d6 2018-05-18 omar.polo else
651 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_bg, &tmp);
652 f5e234d6 2018-05-18 omar.polo
653 f5e234d6 2018-05-18 omar.polo // completion highlighted
654 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion_highlighted.foreground", "*", datatype, &value) == true)
655 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_highlighted_fg, &tmp);
656 f5e234d6 2018-05-18 omar.polo else
657 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_highlighted_fg, &tmp);
658 f5e234d6 2018-05-18 omar.polo
659 f5e234d6 2018-05-18 omar.polo if (XrmGetResource(xdb, "MyMenu.completion_highlighted.background", "*", datatype, &value) == true)
660 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, value.addr, &compl_highlighted_bg, &tmp);
661 f5e234d6 2018-05-18 omar.polo else
662 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_highlighted_bg, &tmp);
663 f5e234d6 2018-05-18 omar.polo } else {
664 f5e234d6 2018-05-18 omar.polo XColor tmp;
665 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &p_fg, &tmp);
666 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &p_bg, &tmp);
667 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_fg, &tmp);
668 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_bg, &tmp);
669 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "black", &compl_highlighted_fg, &tmp);
670 f5e234d6 2018-05-18 omar.polo XAllocNamedColor(d, cmap, "white", &compl_highlighted_bg, &tmp);
671 f5e234d6 2018-05-18 omar.polo }
672 f5e234d6 2018-05-18 omar.polo
673 f5e234d6 2018-05-18 omar.polo // load the font
674 347d23da 2018-05-19 omar.polo /* XFontStruct *font = XLoadQueryFont(d, fontname); */
675 347d23da 2018-05-19 omar.polo /* if (font == nil) { */
676 347d23da 2018-05-19 omar.polo /* fprintf(stderr, "Unable to load %s font\n", fontname); */
677 347d23da 2018-05-19 omar.polo /* font = XLoadQueryFont(d, "fixed"); */
678 347d23da 2018-05-19 omar.polo /* } */
679 347d23da 2018-05-19 omar.polo // load the font
680 347d23da 2018-05-19 omar.polo char **missing_charset_list;
681 347d23da 2018-05-19 omar.polo int missing_charset_count;
682 347d23da 2018-05-19 omar.polo XFontSet font = XCreateFontSet(d, fontname, &missing_charset_list, &missing_charset_count, nil);
683 f5e234d6 2018-05-18 omar.polo if (font == nil) {
684 347d23da 2018-05-19 omar.polo fprintf(stderr, "Unable to load the font(s) %s\n", fontname);
685 347d23da 2018-05-19 omar.polo return EX_UNAVAILABLE;
686 f5e234d6 2018-05-18 omar.polo }
687 f5e234d6 2018-05-18 omar.polo
688 f5e234d6 2018-05-18 omar.polo // create the window
689 f5e234d6 2018-05-18 omar.polo XSetWindowAttributes attr;
690 f5e234d6 2018-05-18 omar.polo
691 f5e234d6 2018-05-18 omar.polo Window w = XCreateWindow(d, // display
692 f5e234d6 2018-05-18 omar.polo DefaultRootWindow(d), // parent
693 f5e234d6 2018-05-18 omar.polo x + offset_x, y + offset_y, // x y
694 f5e234d6 2018-05-18 omar.polo width, height, // w h
695 f5e234d6 2018-05-18 omar.polo 0, // border width
696 f5e234d6 2018-05-18 omar.polo DefaultDepth(d, DefaultScreen(d)), // depth
697 f5e234d6 2018-05-18 omar.polo InputOutput, // class
698 f5e234d6 2018-05-18 omar.polo DefaultVisual(d, DefaultScreen(d)), // visual
699 f5e234d6 2018-05-18 omar.polo 0, // value mask
700 f5e234d6 2018-05-18 omar.polo &attr);
701 f5e234d6 2018-05-18 omar.polo
702 f5e234d6 2018-05-18 omar.polo set_win_atoms_hints(d, w, width, height);
703 f5e234d6 2018-05-18 omar.polo
704 f5e234d6 2018-05-18 omar.polo // we want some events
705 f5e234d6 2018-05-18 omar.polo XSelectInput(d, w, StructureNotifyMask | KeyPressMask | KeyReleaseMask | KeymapStateMask);
706 f5e234d6 2018-05-18 omar.polo
707 f5e234d6 2018-05-18 omar.polo // make the window appear on the screen
708 f5e234d6 2018-05-18 omar.polo XMapWindow(d, w);
709 f5e234d6 2018-05-18 omar.polo
710 f5e234d6 2018-05-18 omar.polo // wait for the MapNotify event (i.e. the event "window rendered")
711 f5e234d6 2018-05-18 omar.polo for (;;) {
712 f5e234d6 2018-05-18 omar.polo XEvent e;
713 f5e234d6 2018-05-18 omar.polo XNextEvent(d, &e);
714 f5e234d6 2018-05-18 omar.polo if (e.type == MapNotify)
715 f5e234d6 2018-05-18 omar.polo break;
716 f5e234d6 2018-05-18 omar.polo }
717 f5e234d6 2018-05-18 omar.polo
718 f5e234d6 2018-05-18 omar.polo // get the *real* width & height after the window was rendered
719 f5e234d6 2018-05-18 omar.polo get_wh(d, &w, &width, &height);
720 f5e234d6 2018-05-18 omar.polo
721 f5e234d6 2018-05-18 omar.polo // grab keyboard
722 f5e234d6 2018-05-18 omar.polo take_keyboard(d, w);
723 f5e234d6 2018-05-18 omar.polo
724 f5e234d6 2018-05-18 omar.polo // Create some graphics contexts
725 f5e234d6 2018-05-18 omar.polo XGCValues values;
726 347d23da 2018-05-19 omar.polo /* values.font = font->fid; */
727 f5e234d6 2018-05-18 omar.polo
728 f5e234d6 2018-05-18 omar.polo struct rendering r = {
729 f5e234d6 2018-05-18 omar.polo .d = d,
730 f5e234d6 2018-05-18 omar.polo .w = w,
731 347d23da 2018-05-19 omar.polo .prompt = XCreateGC(d, w, 0, &values),
732 347d23da 2018-05-19 omar.polo .prompt_bg = XCreateGC(d, w, 0, &values),
733 347d23da 2018-05-19 omar.polo .completion = XCreateGC(d, w, 0, &values),
734 347d23da 2018-05-19 omar.polo .completion_bg = XCreateGC(d, w, 0, &values),
735 347d23da 2018-05-19 omar.polo .completion_highlighted = XCreateGC(d, w, 0, &values),
736 347d23da 2018-05-19 omar.polo .completion_highlighted_bg = XCreateGC(d, w, 0, &values),
737 347d23da 2018-05-19 omar.polo /* .prompt = XCreateGC(d, w, GCFont, &values), */
738 347d23da 2018-05-19 omar.polo /* .prompt_bg = XCreateGC(d, w, GCFont, &values), */
739 347d23da 2018-05-19 omar.polo /* .completion = XCreateGC(d, w, GCFont, &values), */
740 347d23da 2018-05-19 omar.polo /* .completion_bg = XCreateGC(d, w, GCFont, &values), */
741 347d23da 2018-05-19 omar.polo /* .completion_highlighted = XCreateGC(d, w, GCFont, &values), */
742 347d23da 2018-05-19 omar.polo /* .completion_highlighted_bg = XCreateGC(d, w, GCFont, &values), */
743 f5e234d6 2018-05-18 omar.polo .width = width,
744 f5e234d6 2018-05-18 omar.polo .height = height,
745 36a15a9f 2018-05-19 omar.polo .font = &font,
746 36a15a9f 2018-05-19 omar.polo .horizontal_layout = horizontal_layout
747 f5e234d6 2018-05-18 omar.polo };
748 f5e234d6 2018-05-18 omar.polo
749 f5e234d6 2018-05-18 omar.polo // load the colors in our GCs
750 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.prompt, p_fg.pixel);
751 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.prompt_bg, p_bg.pixel);
752 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion, compl_fg.pixel);
753 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion_bg, compl_bg.pixel);
754 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion_highlighted, compl_highlighted_fg.pixel);
755 f5e234d6 2018-05-18 omar.polo XSetForeground(d, r.completion_highlighted_bg, compl_highlighted_bg.pixel);
756 347d23da 2018-05-19 omar.polo
757 347d23da 2018-05-19 omar.polo // open the X input method
758 347d23da 2018-05-19 omar.polo XIM xim = XOpenIM(d, xdb, resname, resclass);
759 347d23da 2018-05-19 omar.polo check_allocation(xim);
760 f5e234d6 2018-05-18 omar.polo
761 347d23da 2018-05-19 omar.polo XIMStyles *xis = nil;
762 347d23da 2018-05-19 omar.polo if (XGetIMValues(xim, XNQueryInputStyle, &xis, NULL) || !xis) {
763 347d23da 2018-05-19 omar.polo fprintf(stderr, "Input Styles could not be retrieved\n");
764 347d23da 2018-05-19 omar.polo return EX_UNAVAILABLE;
765 347d23da 2018-05-19 omar.polo }
766 347d23da 2018-05-19 omar.polo
767 347d23da 2018-05-19 omar.polo XIMStyle bestMatchStyle = 0;
768 347d23da 2018-05-19 omar.polo for (int i = 0; i < xis->count_styles; ++i) {
769 347d23da 2018-05-19 omar.polo XIMStyle ts = xis->supported_styles[i];
770 347d23da 2018-05-19 omar.polo if (ts == (XIMPreeditNothing | XIMStatusNothing)) {
771 347d23da 2018-05-19 omar.polo bestMatchStyle = ts;
772 347d23da 2018-05-19 omar.polo break;
773 347d23da 2018-05-19 omar.polo }
774 347d23da 2018-05-19 omar.polo }
775 347d23da 2018-05-19 omar.polo XFree(xis);
776 347d23da 2018-05-19 omar.polo
777 347d23da 2018-05-19 omar.polo if (!bestMatchStyle) {
778 347d23da 2018-05-19 omar.polo fprintf(stderr, "No matching input style could be determined\n");
779 347d23da 2018-05-19 omar.polo }
780 347d23da 2018-05-19 omar.polo
781 347d23da 2018-05-19 omar.polo XIC xic = XCreateIC(xim, XNInputStyle, bestMatchStyle, XNClientWindow, w, XNFocusWindow, w, NULL);
782 347d23da 2018-05-19 omar.polo check_allocation(xic);
783 347d23da 2018-05-19 omar.polo
784 f5e234d6 2018-05-18 omar.polo // draw the window for the first time
785 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
786 f5e234d6 2018-05-18 omar.polo
787 f5e234d6 2018-05-18 omar.polo // main loop
788 f5e234d6 2018-05-18 omar.polo while (status == LOOPING) {
789 f5e234d6 2018-05-18 omar.polo XEvent e;
790 f5e234d6 2018-05-18 omar.polo XNextEvent(d, &e);
791 f5e234d6 2018-05-18 omar.polo
792 347d23da 2018-05-19 omar.polo if (XFilterEvent(&e, w))
793 347d23da 2018-05-19 omar.polo continue;
794 347d23da 2018-05-19 omar.polo
795 f5e234d6 2018-05-18 omar.polo switch (e.type) {
796 f5e234d6 2018-05-18 omar.polo case KeymapNotify:
797 f5e234d6 2018-05-18 omar.polo XRefreshKeyboardMapping(&e.xmapping);
798 f5e234d6 2018-05-18 omar.polo break;
799 f5e234d6 2018-05-18 omar.polo
800 f5e234d6 2018-05-18 omar.polo case KeyRelease: break; // ignore this
801 f5e234d6 2018-05-18 omar.polo
802 347d23da 2018-05-19 omar.polo case KeyPress: {
803 347d23da 2018-05-19 omar.polo XKeyPressedEvent *ev = (XKeyPressedEvent*)&e;
804 f5e234d6 2018-05-18 omar.polo
805 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_Tab)) {
806 347d23da 2018-05-19 omar.polo bool shift = (ev->state & ShiftMask);
807 347d23da 2018-05-19 omar.polo struct completions *n = shift ? compl_select_prev(cs, nothing_selected)
808 347d23da 2018-05-19 omar.polo : compl_select_next(cs, nothing_selected);
809 347d23da 2018-05-19 omar.polo if (n != nil) {
810 347d23da 2018-05-19 omar.polo nothing_selected = false;
811 347d23da 2018-05-19 omar.polo free(text);
812 347d23da 2018-05-19 omar.polo text = strdup(n->completion);
813 347d23da 2018-05-19 omar.polo if (text == nil) {
814 347d23da 2018-05-19 omar.polo fprintf(stderr, "Memory allocation error!\n");
815 347d23da 2018-05-19 omar.polo status = ERR;
816 347d23da 2018-05-19 omar.polo break;
817 f5e234d6 2018-05-18 omar.polo }
818 347d23da 2018-05-19 omar.polo textlen = strlen(text);
819 f5e234d6 2018-05-18 omar.polo }
820 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
821 f5e234d6 2018-05-18 omar.polo break;
822 f5e234d6 2018-05-18 omar.polo }
823 f5e234d6 2018-05-18 omar.polo
824 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_BackSpace)) {
825 f5e234d6 2018-05-18 omar.polo nothing_selected = true;
826 f5e234d6 2018-05-18 omar.polo popc(text, textlen);
827 f5e234d6 2018-05-18 omar.polo update_completions(cs, text, lines);
828 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
829 f5e234d6 2018-05-18 omar.polo break;
830 347d23da 2018-05-19 omar.polo }
831 f5e234d6 2018-05-18 omar.polo
832 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_Return)) {
833 347d23da 2018-05-19 omar.polo status = OK;
834 347d23da 2018-05-19 omar.polo break;
835 347d23da 2018-05-19 omar.polo }
836 f5e234d6 2018-05-18 omar.polo
837 347d23da 2018-05-19 omar.polo if (ev->keycode == XKeysymToKeycode(d, XK_Escape)) {
838 347d23da 2018-05-19 omar.polo status = ERR;
839 347d23da 2018-05-19 omar.polo break;
840 347d23da 2018-05-19 omar.polo }
841 f5e234d6 2018-05-18 omar.polo
842 347d23da 2018-05-19 omar.polo // try to read what the user pressed
843 347d23da 2018-05-19 omar.polo int symbol = 0;
844 347d23da 2018-05-19 omar.polo Status s = 0;
845 347d23da 2018-05-19 omar.polo Xutf8LookupString(xic, ev, (char*)&symbol, 4, 0, &s);
846 347d23da 2018-05-19 omar.polo
847 347d23da 2018-05-19 omar.polo if (s == XBufferOverflow) {
848 347d23da 2018-05-19 omar.polo // should not happen since there are no utf-8 characters
849 347d23da 2018-05-19 omar.polo // larger than 24bits, but is something to be aware of when
850 347d23da 2018-05-19 omar.polo // used to directly write to a string buffer
851 347d23da 2018-05-19 omar.polo fprintf(stderr, "Buffer overflow when trying to create keyboard symbol map.\n");
852 347d23da 2018-05-19 omar.polo break;
853 347d23da 2018-05-19 omar.polo }
854 347d23da 2018-05-19 omar.polo char *str = (char*)&symbol;
855 347d23da 2018-05-19 omar.polo
856 347d23da 2018-05-19 omar.polo if (ev->state & ControlMask) {
857 347d23da 2018-05-19 omar.polo // check for some key bindings
858 347d23da 2018-05-19 omar.polo if (!strcmp(str, "")) { // C-u
859 f5e234d6 2018-05-18 omar.polo nothing_selected = true;
860 347d23da 2018-05-19 omar.polo for (int i = 0; i < textlen; ++i)
861 347d23da 2018-05-19 omar.polo text[i] = 0;
862 f5e234d6 2018-05-18 omar.polo update_completions(cs, text, lines);
863 f5e234d6 2018-05-18 omar.polo }
864 347d23da 2018-05-19 omar.polo if (!strcmp(str, "")) { // C-h
865 347d23da 2018-05-19 omar.polo nothing_selected = true;
866 347d23da 2018-05-19 omar.polo popc(text, textlen);
867 347d23da 2018-05-19 omar.polo update_completions(cs, text, lines);
868 347d23da 2018-05-19 omar.polo }
869 347d23da 2018-05-19 omar.polo if (!strcmp(str, "")) { // C-w
870 347d23da 2018-05-19 omar.polo nothing_selected = true;
871 347d23da 2018-05-19 omar.polo
872 347d23da 2018-05-19 omar.polo // `textlen` is the length of the allocated string, not the
873 347d23da 2018-05-19 omar.polo // length of the ACTUAL string
874 347d23da 2018-05-19 omar.polo int p = strlen(text) - 1;
875 347d23da 2018-05-19 omar.polo if (p >= 0) { // delete the current char
876 347d23da 2018-05-19 omar.polo text[p] = 0;
877 347d23da 2018-05-19 omar.polo p--;
878 347d23da 2018-05-19 omar.polo }
879 347d23da 2018-05-19 omar.polo while (p >= 0 && isalnum(text[p])) {
880 347d23da 2018-05-19 omar.polo text[p] = 0;
881 347d23da 2018-05-19 omar.polo p--;
882 347d23da 2018-05-19 omar.polo }
883 347d23da 2018-05-19 omar.polo // erase also trailing white space
884 347d23da 2018-05-19 omar.polo while (p >= 0 && isspace(text[p])) {
885 347d23da 2018-05-19 omar.polo text[p] = 0;
886 347d23da 2018-05-19 omar.polo p--;
887 347d23da 2018-05-19 omar.polo }
888 347d23da 2018-05-19 omar.polo update_completions(cs, text, lines);
889 347d23da 2018-05-19 omar.polo }
890 347d23da 2018-05-19 omar.polo if (!strcmp(str, "\r")) { // C-m
891 347d23da 2018-05-19 omar.polo status = OK;
892 347d23da 2018-05-19 omar.polo }
893 347d23da 2018-05-19 omar.polo draw(&r, text, cs);
894 f5e234d6 2018-05-18 omar.polo break;
895 f5e234d6 2018-05-18 omar.polo }
896 f5e234d6 2018-05-18 omar.polo
897 347d23da 2018-05-19 omar.polo int str_len = strlen(str);
898 347d23da 2018-05-19 omar.polo for (int i = 0; i < str_len; ++i) {
899 347d23da 2018-05-19 omar.polo textlen = pushc(&text, textlen, str[i]);
900 347d23da 2018-05-19 omar.polo if (textlen == -1) {
901 347d23da 2018-05-19 omar.polo fprintf(stderr, "Memory allocation error\n");
902 347d23da 2018-05-19 omar.polo status = ERR;
903 347d23da 2018-05-19 omar.polo break;
904 347d23da 2018-05-19 omar.polo }
905 347d23da 2018-05-19 omar.polo nothing_selected = true;
906 347d23da 2018-05-19 omar.polo update_completions(cs, text, lines);
907 347d23da 2018-05-19 omar.polo }
908 347d23da 2018-05-19 omar.polo
909 347d23da 2018-05-19 omar.polo }
910 f5e234d6 2018-05-18 omar.polo draw(&r, text, cs);
911 f5e234d6 2018-05-18 omar.polo break;
912 f5e234d6 2018-05-18 omar.polo
913 f5e234d6 2018-05-18 omar.polo default:
914 347d23da 2018-05-19 omar.polo fprintf(stderr, "Unknown event %d\n", e.type);
915 f5e234d6 2018-05-18 omar.polo }
916 f5e234d6 2018-05-18 omar.polo }
917 f5e234d6 2018-05-18 omar.polo
918 f5e234d6 2018-05-18 omar.polo release_keyboard(d);
919 f5e234d6 2018-05-18 omar.polo
920 f5e234d6 2018-05-18 omar.polo if (status == OK)
921 f5e234d6 2018-05-18 omar.polo printf("%s\n", text);
922 6da98882 2018-05-20 omar.polo
923 6da98882 2018-05-20 omar.polo for (int i = 0; i < nlines; ++i) {
924 6da98882 2018-05-20 omar.polo free(lines[i]);
925 6da98882 2018-05-20 omar.polo }
926 f5e234d6 2018-05-18 omar.polo
927 f5e234d6 2018-05-18 omar.polo free(fontname);
928 f5e234d6 2018-05-18 omar.polo free(text);
929 95b27a5e 2018-05-19 omar.polo free(lines);
930 f5e234d6 2018-05-18 omar.polo compl_delete(cs);
931 f5e234d6 2018-05-18 omar.polo
932 f5e234d6 2018-05-18 omar.polo /* XDestroyWindow(d, w); */
933 f5e234d6 2018-05-18 omar.polo XCloseDisplay(d);
934 f5e234d6 2018-05-18 omar.polo
935 f5e234d6 2018-05-18 omar.polo return status == OK ? 0 : 1;
936 f5e234d6 2018-05-18 omar.polo }