mirror of
https://github.com/mintycube/dmenu.git
synced 2024-10-22 14:05:48 +02:00
43 lines
880 B
C
43 lines
880 B
C
static void
|
|
drawhighlights(struct item *item, int x, int y, int maxw)
|
|
{
|
|
int i, indent;
|
|
char *highlight;
|
|
char c;
|
|
|
|
if (!(strlen(item->text) && strlen(text)))
|
|
return;
|
|
|
|
drw_setscheme(drw, scheme[item == sel
|
|
? SchemeSelHighlight
|
|
: SchemeNormHighlight]);
|
|
for (i = 0, highlight = item->text; *highlight && text[i];) {
|
|
#if FUZZYMATCH_PATCH
|
|
if (!fstrncmp(&(*highlight), &text[i], 1))
|
|
#else
|
|
if (*highlight == text[i])
|
|
#endif // FUZZYMATCH_PATCH
|
|
{
|
|
/* get indentation */
|
|
c = *highlight;
|
|
*highlight = '\0';
|
|
indent = TEXTW(item->text);
|
|
*highlight = c;
|
|
|
|
/* highlight character */
|
|
c = highlight[1];
|
|
highlight[1] = '\0';
|
|
drw_text(
|
|
drw,
|
|
x + indent - (lrpad / 2),
|
|
y,
|
|
MIN(maxw - indent, TEXTW(highlight) - lrpad),
|
|
bh, 0, highlight, 0
|
|
);
|
|
highlight[1] = c;
|
|
i++;
|
|
}
|
|
highlight++;
|
|
}
|
|
}
|