Xinqi Bao's Git
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
3 * (C)opyright MMVI Sander van Dijk <a dot h dot vandijk at gmail dot com>
4 * See LICENSE file for license details.
19 #include <X11/cursorfont.h>
20 #include <X11/Xutil.h>
21 #include <X11/keysym.h>
23 typedef struct Item Item
;
26 Item
*next
; /* traverses all items */
27 Item
*left
, *right
; /* traverses items matching current search pattern */
34 static XRectangle rect
;
35 static Bool done
= False
;
37 static Item
*allitem
= 0; /* first of all items */
38 static Item
*item
= 0; /* first of pattern matching items */
40 static Item
*nextoff
= 0;
41 static Item
*prevoff
= 0;
42 static Item
*curroff
= 0;
45 static char *title
= 0;
46 static char text
[4096];
49 static unsigned int cmdw
= 0;
50 static unsigned int twidth
= 0;
51 static unsigned int cwidth
= 0;
52 static const int seek
= 30; /* 30px */
54 static Brush brush
= {0};
56 static void draw_menu();
57 static void kpress(XKeyEvent
* e
);
59 static char version
[] = "gridmenu - " VERSION
", (C)opyright MMVI Anselm R. Garbe\n";
64 fprintf(stderr
, "%s", "usage: gridmenu [-v] [-t <title>]\n");
71 unsigned int tw
, w
= cmdw
+ 2 * seek
;
76 for(nextoff
= curroff
; nextoff
; nextoff
=nextoff
->right
) {
77 tw
= textwidth(&brush
.font
, nextoff
->text
);
78 if(tw
> rect
.width
/ 3)
80 w
+= tw
+ brush
.font
.height
;
86 for(prevoff
= curroff
; prevoff
&& prevoff
->left
; prevoff
=prevoff
->left
) {
87 tw
= textwidth(&brush
.font
, prevoff
->left
->text
);
88 if(tw
> rect
.width
/ 3)
90 w
+= tw
+ brush
.font
.height
;
97 update_items(char *pattern
)
99 unsigned int plen
= strlen(pattern
);
105 if(!title
|| *pattern
)
113 for(i
= allitem
; i
; i
=i
->next
)
114 if(!plen
|| !strncmp(pattern
, i
->text
, plen
)) {
124 for(i
= allitem
; i
; i
=i
->next
)
125 if(plen
&& strncmp(pattern
, i
->text
, plen
)
126 && strstr(i
->text
, pattern
)) {
137 curroff
= prevoff
= nextoff
= sel
= item
;
142 /* creates brush structs for brush mode drawing */
146 unsigned int offx
= 0;
152 draw(dpy
, &brush
, False
, 0);
155 if(!title
|| text
[0]) {
158 brush
.rect
.width
= cmdw
;
159 draw(dpy
, &brush
, False
, text
);
163 brush
.rect
.width
= cmdw
;
164 draw(dpy
, &brush
, False
, title
);
166 offx
+= brush
.rect
.width
;
170 brush
.rect
.width
= seek
;
171 offx
+= brush
.rect
.width
;
172 draw(dpy
, &brush
, False
, (curroff
&& curroff
->left
) ? "<" : 0);
174 /* determine maximum items */
175 for(i
= curroff
; i
!= nextoff
; i
=i
->right
) {
176 brush
.border
= False
;
178 brush
.rect
.width
= textwidth(&brush
.font
, i
->text
);
179 if(brush
.rect
.width
> rect
.width
/ 3)
180 brush
.rect
.width
= rect
.width
/ 3;
181 brush
.rect
.width
+= brush
.font
.height
;
183 swap((void **)&brush
.fg
, (void **)&brush
.bg
);
184 draw(dpy
, &brush
, True
, i
->text
);
185 swap((void **)&brush
.fg
, (void **)&brush
.bg
);
188 draw(dpy
, &brush
, False
, i
->text
);
189 offx
+= brush
.rect
.width
;
192 brush
.rect
.x
= rect
.width
- seek
;
193 brush
.rect
.width
= seek
;
194 draw(dpy
, &brush
, False
, nextoff
? ">" : 0);
196 XCopyArea(dpy
, brush
.drawable
, win
, brush
.gc
, 0, 0, rect
.width
,
202 kpress(XKeyEvent
* e
)
207 unsigned int i
, len
= strlen(text
);
210 num
= XLookupString(e
, buf
, sizeof(buf
), &ksym
, 0);
212 if(IsFunctionKey(ksym
) || IsKeypadKey(ksym
)
213 || IsMiscFunctionKey(ksym
) || IsPFKey(ksym
)
214 || IsPrivateKeypadKey(ksym
))
217 /* first check if a control mask is omitted */
218 if(e
->state
& ControlMask
) {
250 default: /* ignore other control sequences */
257 if(!(sel
&& sel
->left
))
260 if(sel
->right
== curroff
) {
268 strncpy(text
, sel
->text
, sizeof(text
));
272 if(!(sel
&& sel
->right
))
281 if(e
->state
& ShiftMask
) {
283 fprintf(stdout
, "%s", text
);
286 fprintf(stdout
, "%s", sel
->text
);
288 fprintf(stdout
, "%s", text
);
302 } while(i
&& nitem
&& prev_nitem
== nitem
);
307 if((num
== 1) && !iscntrl((int) buf
[0])) {
310 strncat(text
, buf
, sizeof(text
));
312 strncpy(text
, buf
, sizeof(text
));
322 static char *maxname
= 0;
324 unsigned int len
= 0, max
= 0;
328 while(fgets(buf
, sizeof(buf
), stdin
)) {
330 if (buf
[len
- 1] == '\n')
338 new = emalloc(sizeof(Item
));
339 new->next
= new->left
= new->right
= 0;
352 main(int argc
, char *argv
[])
355 XSetWindowAttributes wa
;
359 /* command line args */
360 for(i
= 1; i
< argc
; i
++) {
361 if (argv
[i
][0] == '-')
362 switch (argv
[i
][1]) {
364 fprintf(stdout
, "%s", version
);
381 dpy
= XOpenDisplay(0);
383 error("gridmenu: cannot open dpy\n");
384 screen
= DefaultScreen(dpy
);
385 root
= RootWindow(dpy
, screen
);
387 maxname
= read_allitems();
389 /* grab as early as possible, but after reading all items!!! */
390 while(XGrabKeyboard(dpy
, root
, True
, GrabModeAsync
,
391 GrabModeAsync
, CurrentTime
) != GrabSuccess
)
395 loadcolors(dpy
, screen
, &brush
, BGCOLOR
, FGCOLOR
, BORDERCOLOR
);
396 loadfont(dpy
, &brush
.font
, FONT
);
398 wa
.override_redirect
= 1;
399 wa
.background_pixmap
= ParentRelative
;
400 wa
.event_mask
= ExposureMask
| ButtonPressMask
| KeyPressMask
;
402 rect
.width
= DisplayWidth(dpy
, screen
);
403 rect
.height
= labelheight(&brush
.font
);
404 rect
.y
= DisplayHeight(dpy
, screen
) - rect
.height
;
407 win
= XCreateWindow(dpy
, root
, rect
.x
, rect
.y
,
408 rect
.width
, rect
.height
, 0, DefaultDepth(dpy
, screen
),
409 CopyFromParent
, DefaultVisual(dpy
, screen
),
410 CWOverrideRedirect
| CWBackPixmap
| CWEventMask
, &wa
);
411 XDefineCursor(dpy
, win
, XCreateFontCursor(dpy
, XC_xterm
));
415 brush
.gc
= XCreateGC(dpy
, root
, 0, 0);
416 brush
.drawable
= XCreatePixmap(dpy
, win
, rect
.width
, rect
.height
,
417 DefaultDepth(dpy
, screen
));
421 cwidth
= textwidth(&brush
.font
, maxname
) + brush
.font
.height
;
422 if(cwidth
> rect
.width
/ 3)
423 cwidth
= rect
.width
/ 3;
426 twidth
= textwidth(&brush
.font
, title
) + brush
.font
.height
;
427 if(twidth
> rect
.width
/ 3)
428 twidth
= rect
.width
/ 3;
431 cmdw
= title
? twidth
: cwidth
;
435 XMapRaised(dpy
, win
);
439 /* main event loop */
440 while(!XNextEvent(dpy
, &ev
)) {
446 if(ev
.xexpose
.count
== 0) {
457 XUngrabKeyboard(dpy
, CurrentTime
);
458 XFreePixmap(dpy
, brush
.drawable
);
459 XFreeGC(dpy
, brush
.gc
);
460 XDestroyWindow(dpy
, win
);