mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-05 00:00:18 +00:00
177 lines
3.3 KiB
C
177 lines
3.3 KiB
C
int
|
|
width_awesomebar(Bar *bar, BarWidthArg *a)
|
|
{
|
|
return a->max_width;
|
|
}
|
|
|
|
int
|
|
draw_awesomebar(Bar *bar, BarDrawArg *a)
|
|
{
|
|
int n = 0, scm, remainder = 0, tabw;
|
|
unsigned int i;
|
|
#if BAR_TITLE_LEFT_PAD && BAR_TITLE_RIGHT_PAD
|
|
int x = a->x + lrpad / 2, w = a->w - lrpad;
|
|
#elif BAR_TITLE_LEFT_PAD
|
|
int x = a->x + lrpad / 2, w = a->w - lrpad / 2;
|
|
#elif BAR_TITLE_RIGHT_PAD
|
|
int x = a->x, w = a->w - lrpad / 2;
|
|
#else
|
|
int x = a->x, w = a->w;
|
|
#endif // BAR_TITLE_LEFT_PAD | BAR_TITLE_RIGHT_PAD
|
|
|
|
Client *c;
|
|
for (c = bar->mon->clients; c; c = c->next)
|
|
if (ISVISIBLE(c))
|
|
n++;
|
|
|
|
if (n > 0) {
|
|
remainder = w % n;
|
|
tabw = w / n;
|
|
for (i = 0, c = bar->mon->clients; c; c = c->next, i++) {
|
|
if (!ISVISIBLE(c))
|
|
continue;
|
|
if (bar->mon->sel == c)
|
|
#if BAR_VTCOLORS_PATCH
|
|
scm = SchemeTitleSel;
|
|
#elif BAR_TITLECOLOR_PATCH
|
|
scm = SchemeTitle;
|
|
#else
|
|
scm = SchemeSel;
|
|
#endif // BAR_VTCOLORS_PATCH / BAR_TITLECOLOR_PATCH
|
|
else if (HIDDEN(c))
|
|
scm = SchemeHid;
|
|
else
|
|
#if BAR_VTCOLORS_PATCH
|
|
scm = SchemeTitleNorm;
|
|
#else
|
|
scm = SchemeNorm;
|
|
#endif // BAR_VTCOLORS_PATCH
|
|
|
|
drw_setscheme(drw, scheme[scm]);
|
|
tabw += (i < remainder ? 1 : 0);
|
|
#if BAR_PANGO_PATCH
|
|
drw_text(drw, x, 0, tabw, bh, lrpad / 2, c->name, 0, False);
|
|
#else
|
|
drw_text(drw, x, 0, tabw, bh, lrpad / 2, c->name, 0);
|
|
#endif // BAR_PANGO_PATCH
|
|
x += tabw;
|
|
}
|
|
}
|
|
return a->x + a->w;
|
|
}
|
|
|
|
int
|
|
click_awesomebar(Bar *bar, Arg *arg, BarClickArg *a)
|
|
{
|
|
int x = 0, n = 0;
|
|
Client *c;
|
|
|
|
for (c = bar->mon->clients; c; c = c->next)
|
|
if (ISVISIBLE(c))
|
|
n++;
|
|
|
|
c = bar->mon->clients;
|
|
|
|
do {
|
|
if (!c || !ISVISIBLE(c))
|
|
continue;
|
|
else
|
|
x += (1.0 / (double)n) * a->rel_w;
|
|
} while (c && a->rel_x > x && (c = c->next));
|
|
|
|
if (c) {
|
|
arg->v = c;
|
|
return ClkWinTitle;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
void
|
|
hide(Client *c) {
|
|
|
|
Client *n;
|
|
if (!c || HIDDEN(c))
|
|
return;
|
|
|
|
Window w = c->win;
|
|
static XWindowAttributes ra, ca;
|
|
|
|
// more or less taken directly from blackbox's hide() function
|
|
XGrabServer(dpy);
|
|
XGetWindowAttributes(dpy, root, &ra);
|
|
XGetWindowAttributes(dpy, w, &ca);
|
|
// prevent UnmapNotify events
|
|
XSelectInput(dpy, root, ra.your_event_mask & ~SubstructureNotifyMask);
|
|
XSelectInput(dpy, w, ca.your_event_mask & ~StructureNotifyMask);
|
|
XUnmapWindow(dpy, w);
|
|
setclientstate(c, IconicState);
|
|
XSelectInput(dpy, root, ra.your_event_mask);
|
|
XSelectInput(dpy, w, ca.your_event_mask);
|
|
XUngrabServer(dpy);
|
|
|
|
if (c->isfloating || !c->mon->lt[c->mon->sellt]->arrange) {
|
|
for (n = c->snext; n && (!ISVISIBLE(n) || HIDDEN(n)); n = n->snext);
|
|
if (!n)
|
|
for (n = c->mon->stack; n && (!ISVISIBLE(n) || HIDDEN(n)); n = n->snext);
|
|
} else {
|
|
n = nexttiled(c);
|
|
if (!n)
|
|
n = prevtiled(c);
|
|
}
|
|
focus(n);
|
|
arrange(c->mon);
|
|
}
|
|
|
|
void
|
|
show(Client *c)
|
|
{
|
|
if (!c || !HIDDEN(c))
|
|
return;
|
|
|
|
XMapWindow(dpy, c->win);
|
|
setclientstate(c, NormalState);
|
|
arrange(c->mon);
|
|
}
|
|
|
|
void
|
|
togglewin(const Arg *arg)
|
|
{
|
|
Client *c = (Client*)arg->v;
|
|
if (!c)
|
|
return;
|
|
if (c == selmon->sel)
|
|
hide(c);
|
|
else {
|
|
if (HIDDEN(c))
|
|
show(c);
|
|
focus(c);
|
|
restack(selmon);
|
|
}
|
|
}
|
|
|
|
Client *
|
|
prevtiled(Client *c)
|
|
{
|
|
Client *p, *i;
|
|
for (p = NULL, i = c->mon->clients; c && i != c; i = i->next)
|
|
if (ISVISIBLE(i) && !HIDDEN(i))
|
|
p = i;
|
|
return p;
|
|
}
|
|
|
|
void
|
|
showhideclient(const Arg *arg)
|
|
{
|
|
Client *c = (Client*)arg->v;
|
|
if (!c)
|
|
c = selmon->sel;
|
|
if (!c)
|
|
return;
|
|
|
|
if (HIDDEN(c)) {
|
|
show(c);
|
|
restack(selmon);
|
|
} else {
|
|
hide(c);
|
|
}
|
|
} |