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