Compare commits
No commits in common. "patch/numbers" and "master" have entirely different histories.
patch/numb
...
master
@ -1,89 +0,0 @@
|
|||||||
From c4cd209c2e322563750d09a3b64194d11cc12a10 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ehsan Ghorbannezhad <ehsan@disroot.org>
|
|
||||||
Date: Thu, 12 May 2022 22:32:47 +0430
|
|
||||||
Subject: [PATCH] the numbers patch, updated to fix segfault in some conditions
|
|
||||||
|
|
||||||
---
|
|
||||||
dmenu.c | 27 ++++++++++++++++++++++++---
|
|
||||||
1 file changed, 24 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/dmenu.c b/dmenu.c
|
|
||||||
index 571bc35..70004e7 100644
|
|
||||||
--- a/dmenu.c
|
|
||||||
+++ b/dmenu.c
|
|
||||||
@@ -24,6 +24,8 @@
|
|
||||||
* MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org)))
|
|
||||||
#define LENGTH(X) (sizeof X / sizeof X[0])
|
|
||||||
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
|
|
||||||
+#define NUMBERSMAXDIGITS 100
|
|
||||||
+#define NUMBERSBUFSIZE (NUMBERSMAXDIGITS * 2) + 1
|
|
||||||
|
|
||||||
/* enums */
|
|
||||||
enum { SchemeNorm, SchemeSel, SchemeOut, SchemeLast }; /* color schemes */
|
|
||||||
@@ -34,6 +36,7 @@ struct item {
|
|
||||||
int out;
|
|
||||||
};
|
|
||||||
|
|
||||||
+static char numbers[NUMBERSBUFSIZE] = "";
|
|
||||||
static char text[BUFSIZ] = "";
|
|
||||||
static char *embed;
|
|
||||||
static int bh, mw, mh;
|
|
||||||
@@ -86,7 +89,7 @@ calcoffsets(void)
|
|
||||||
if (lines > 0)
|
|
||||||
n = lines * bh;
|
|
||||||
else
|
|
||||||
- n = mw - (promptw + inputw + TEXTW("<") + TEXTW(">"));
|
|
||||||
+ n = mw - (promptw + inputw + TEXTW("<") + TEXTW(">") + TEXTW(numbers));
|
|
||||||
/* calculate which items will begin the next page and previous page */
|
|
||||||
for (i = 0, next = curr; next; next = next->right)
|
|
||||||
if ((i += (lines > 0) ? bh : textw_clamp(next->text, n)) > n)
|
|
||||||
@@ -143,6 +146,21 @@ drawitem(struct item *item, int x, int y, int w)
|
|
||||||
return drw_text(drw, x, y, w, bh, lrpad / 2, item->text, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
+static void
|
|
||||||
+recalculatenumbers()
|
|
||||||
+{
|
|
||||||
+ unsigned int numer = 0, denom = 0;
|
|
||||||
+ struct item *item;
|
|
||||||
+ if (matchend) {
|
|
||||||
+ numer++;
|
|
||||||
+ for (item = matchend; item && item->left; item = item->left)
|
|
||||||
+ numer++;
|
|
||||||
+ }
|
|
||||||
+ for (item = items; item && item->text; item++)
|
|
||||||
+ denom++;
|
|
||||||
+ snprintf(numbers, NUMBERSBUFSIZE, "%d/%d", numer, denom);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static void
|
|
||||||
drawmenu(void)
|
|
||||||
{
|
|
||||||
@@ -168,6 +186,7 @@ drawmenu(void)
|
|
||||||
drw_rect(drw, x + curpos, 2, 2, bh - 4, 1, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
+ recalculatenumbers();
|
|
||||||
if (lines > 0) {
|
|
||||||
/* draw vertical list */
|
|
||||||
for (item = curr; item != next; item = item->right)
|
|
||||||
@@ -182,13 +201,15 @@ drawmenu(void)
|
|
||||||
}
|
|
||||||
x += w;
|
|
||||||
for (item = curr; item != next; item = item->right)
|
|
||||||
- x = drawitem(item, x, 0, textw_clamp(item->text, mw - x - TEXTW(">")));
|
|
||||||
+ x = drawitem(item, x, 0, textw_clamp(item->text, mw - x - TEXTW(">") - TEXTW(numbers)));
|
|
||||||
if (next) {
|
|
||||||
w = TEXTW(">");
|
|
||||||
drw_setscheme(drw, scheme[SchemeNorm]);
|
|
||||||
- drw_text(drw, mw - w, 0, w, bh, lrpad / 2, ">", 0);
|
|
||||||
+ drw_text(drw, mw - w - TEXTW(numbers), 0, w, bh, lrpad / 2, ">", 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+ drw_setscheme(drw, scheme[SchemeNorm]);
|
|
||||||
+ drw_text(drw, mw - TEXTW(numbers), 0, TEXTW(numbers), bh, lrpad / 2, numbers, 0);
|
|
||||||
drw_map(drw, win, 0, 0, mw, mh);
|
|
||||||
}
|
|
||||||
|
|
||||||
--
|
|
||||||
2.36.1
|
|
||||||
27
dmenu.c
27
dmenu.c
@ -23,8 +23,6 @@
|
|||||||
#define INTERSECT(x,y,w,h,r) (MAX(0, MIN((x)+(w),(r).x_org+(r).width) - MAX((x),(r).x_org)) \
|
#define INTERSECT(x,y,w,h,r) (MAX(0, MIN((x)+(w),(r).x_org+(r).width) - MAX((x),(r).x_org)) \
|
||||||
* MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org)))
|
* MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org)))
|
||||||
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
|
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
|
||||||
#define NUMBERSMAXDIGITS 100
|
|
||||||
#define NUMBERSBUFSIZE (NUMBERSMAXDIGITS * 2) + 1
|
|
||||||
|
|
||||||
/* enums */
|
/* enums */
|
||||||
enum { SchemeNorm, SchemeSel, SchemeOut, SchemeLast }; /* color schemes */
|
enum { SchemeNorm, SchemeSel, SchemeOut, SchemeLast }; /* color schemes */
|
||||||
@ -35,7 +33,6 @@ struct item {
|
|||||||
int out;
|
int out;
|
||||||
};
|
};
|
||||||
|
|
||||||
static char numbers[NUMBERSBUFSIZE] = "";
|
|
||||||
static char text[BUFSIZ] = "";
|
static char text[BUFSIZ] = "";
|
||||||
static char *embed;
|
static char *embed;
|
||||||
static int bh, mw, mh;
|
static int bh, mw, mh;
|
||||||
@ -88,7 +85,7 @@ calcoffsets(void)
|
|||||||
if (lines > 0)
|
if (lines > 0)
|
||||||
n = lines * bh;
|
n = lines * bh;
|
||||||
else
|
else
|
||||||
n = mw - (promptw + inputw + TEXTW("<") + TEXTW(">") + TEXTW(numbers));
|
n = mw - (promptw + inputw + TEXTW("<") + TEXTW(">"));
|
||||||
/* calculate which items will begin the next page and previous page */
|
/* calculate which items will begin the next page and previous page */
|
||||||
for (i = 0, next = curr; next; next = next->right)
|
for (i = 0, next = curr; next; next = next->right)
|
||||||
if ((i += (lines > 0) ? bh : textw_clamp(next->text, n)) > n)
|
if ((i += (lines > 0) ? bh : textw_clamp(next->text, n)) > n)
|
||||||
@ -145,21 +142,6 @@ drawitem(struct item *item, int x, int y, int w)
|
|||||||
return drw_text(drw, x, y, w, bh, lrpad / 2, item->text, 0);
|
return drw_text(drw, x, y, w, bh, lrpad / 2, item->text, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
recalculatenumbers()
|
|
||||||
{
|
|
||||||
unsigned int numer = 0, denom = 0;
|
|
||||||
struct item *item;
|
|
||||||
if (matchend) {
|
|
||||||
numer++;
|
|
||||||
for (item = matchend; item && item->left; item = item->left)
|
|
||||||
numer++;
|
|
||||||
}
|
|
||||||
for (item = items; item && item->text; item++)
|
|
||||||
denom++;
|
|
||||||
snprintf(numbers, NUMBERSBUFSIZE, "%d/%d", numer, denom);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
drawmenu(void)
|
drawmenu(void)
|
||||||
{
|
{
|
||||||
@ -185,7 +167,6 @@ drawmenu(void)
|
|||||||
drw_rect(drw, x + curpos, 2, 2, bh - 4, 1, 0);
|
drw_rect(drw, x + curpos, 2, 2, bh - 4, 1, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
recalculatenumbers();
|
|
||||||
if (lines > 0) {
|
if (lines > 0) {
|
||||||
/* draw vertical list */
|
/* draw vertical list */
|
||||||
for (item = curr; item != next; item = item->right)
|
for (item = curr; item != next; item = item->right)
|
||||||
@ -200,15 +181,13 @@ drawmenu(void)
|
|||||||
}
|
}
|
||||||
x += w;
|
x += w;
|
||||||
for (item = curr; item != next; item = item->right)
|
for (item = curr; item != next; item = item->right)
|
||||||
x = drawitem(item, x, 0, textw_clamp(item->text, mw - x - TEXTW(">") - TEXTW(numbers)));
|
x = drawitem(item, x, 0, textw_clamp(item->text, mw - x - TEXTW(">")));
|
||||||
if (next) {
|
if (next) {
|
||||||
w = TEXTW(">");
|
w = TEXTW(">");
|
||||||
drw_setscheme(drw, scheme[SchemeNorm]);
|
drw_setscheme(drw, scheme[SchemeNorm]);
|
||||||
drw_text(drw, mw - w - TEXTW(numbers), 0, w, bh, lrpad / 2, ">", 0);
|
drw_text(drw, mw - w, 0, w, bh, lrpad / 2, ">", 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
drw_setscheme(drw, scheme[SchemeNorm]);
|
|
||||||
drw_text(drw, mw - TEXTW(numbers), 0, TEXTW(numbers), bh, lrpad / 2, numbers, 0);
|
|
||||||
drw_map(drw, win, 0, 0, mw, mh);
|
drw_map(drw, win, 0, 0, mw, mh);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user