Merge branch 'patch/steam' into config
This commit is contained in:
commit
e880bb20fe
721
drw.c
721
drw.c
@ -1,472 +1,441 @@
|
|||||||
/* See LICENSE file for copyright and license details. */
|
/* See LICENSE file for copyright and license details. */
|
||||||
|
#include <X11/Xft/Xft.h>
|
||||||
|
#include <X11/Xlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <X11/Xlib.h>
|
|
||||||
#include <X11/Xft/Xft.h>
|
|
||||||
|
|
||||||
#include "drw.h"
|
#include "drw.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
#define UTF_INVALID 0xFFFD
|
#define UTF_INVALID 0xFFFD
|
||||||
|
|
||||||
static int
|
static int utf8decode(const char *s_in, long *u, int *err) {
|
||||||
utf8decode(const char *s_in, long *u, int *err)
|
static const unsigned char lens[] = {
|
||||||
{
|
/* 0XXXX */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||||
static const unsigned char lens[] = {
|
/* 10XXX */ 0, 0, 0, 0, 0, 0, 0, 0, /* invalid */
|
||||||
/* 0XXXX */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
/* 110XX */ 2, 2, 2, 2,
|
||||||
/* 10XXX */ 0, 0, 0, 0, 0, 0, 0, 0, /* invalid */
|
/* 1110X */ 3, 3,
|
||||||
/* 110XX */ 2, 2, 2, 2,
|
/* 11110 */ 4,
|
||||||
/* 1110X */ 3, 3,
|
/* 11111 */ 0, /* invalid */
|
||||||
/* 11110 */ 4,
|
};
|
||||||
/* 11111 */ 0, /* invalid */
|
static const unsigned char leading_mask[] = {0x7F, 0x1F, 0x0F, 0x07};
|
||||||
};
|
static const unsigned int overlong[] = {0x0, 0x80, 0x0800, 0x10000};
|
||||||
static const unsigned char leading_mask[] = { 0x7F, 0x1F, 0x0F, 0x07 };
|
|
||||||
static const unsigned int overlong[] = { 0x0, 0x80, 0x0800, 0x10000 };
|
|
||||||
|
|
||||||
const unsigned char *s = (const unsigned char *)s_in;
|
const unsigned char *s = (const unsigned char *)s_in;
|
||||||
int len = lens[*s >> 3];
|
int len = lens[*s >> 3];
|
||||||
*u = UTF_INVALID;
|
*u = UTF_INVALID;
|
||||||
*err = 1;
|
*err = 1;
|
||||||
if (len == 0)
|
if (len == 0)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
long cp = s[0] & leading_mask[len - 1];
|
long cp = s[0] & leading_mask[len - 1];
|
||||||
for (int i = 1; i < len; ++i) {
|
for (int i = 1; i < len; ++i) {
|
||||||
if (s[i] == '\0' || (s[i] & 0xC0) != 0x80)
|
if (s[i] == '\0' || (s[i] & 0xC0) != 0x80)
|
||||||
return i;
|
return i;
|
||||||
cp = (cp << 6) | (s[i] & 0x3F);
|
cp = (cp << 6) | (s[i] & 0x3F);
|
||||||
}
|
}
|
||||||
/* out of range, surrogate, overlong encoding */
|
/* out of range, surrogate, overlong encoding */
|
||||||
if (cp > 0x10FFFF || (cp >> 11) == 0x1B || cp < overlong[len - 1])
|
if (cp > 0x10FFFF || (cp >> 11) == 0x1B || cp < overlong[len - 1])
|
||||||
return len;
|
return len;
|
||||||
|
|
||||||
*err = 0;
|
*err = 0;
|
||||||
*u = cp;
|
*u = cp;
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
Drw *
|
Drw *drw_create(Display *dpy, int screen, Window root, unsigned int w,
|
||||||
drw_create(Display *dpy, int screen, Window root, unsigned int w, unsigned int h)
|
unsigned int h) {
|
||||||
{
|
Drw *drw = ecalloc(1, sizeof(Drw));
|
||||||
Drw *drw = ecalloc(1, sizeof(Drw));
|
|
||||||
|
|
||||||
drw->dpy = dpy;
|
drw->dpy = dpy;
|
||||||
drw->screen = screen;
|
drw->screen = screen;
|
||||||
drw->root = root;
|
drw->root = root;
|
||||||
drw->w = w;
|
drw->w = w;
|
||||||
drw->h = h;
|
drw->h = h;
|
||||||
drw->drawable = XCreatePixmap(dpy, root, w, h, DefaultDepth(dpy, screen));
|
drw->drawable = XCreatePixmap(dpy, root, w, h, DefaultDepth(dpy, screen));
|
||||||
drw->gc = XCreateGC(dpy, root, 0, NULL);
|
drw->gc = XCreateGC(dpy, root, 0, NULL);
|
||||||
XSetLineAttributes(dpy, drw->gc, 1, LineSolid, CapButt, JoinMiter);
|
XSetLineAttributes(dpy, drw->gc, 1, LineSolid, CapButt, JoinMiter);
|
||||||
|
|
||||||
return drw;
|
return drw;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_resize(Drw *drw, unsigned int w, unsigned int h) {
|
||||||
drw_resize(Drw *drw, unsigned int w, unsigned int h)
|
if (!drw)
|
||||||
{
|
return;
|
||||||
if (!drw)
|
|
||||||
return;
|
|
||||||
|
|
||||||
drw->w = w;
|
drw->w = w;
|
||||||
drw->h = h;
|
drw->h = h;
|
||||||
if (drw->drawable)
|
if (drw->drawable)
|
||||||
XFreePixmap(drw->dpy, drw->drawable);
|
XFreePixmap(drw->dpy, drw->drawable);
|
||||||
drw->drawable = XCreatePixmap(drw->dpy, drw->root, w, h, DefaultDepth(drw->dpy, drw->screen));
|
drw->drawable = XCreatePixmap(drw->dpy, drw->root, w, h,
|
||||||
|
DefaultDepth(drw->dpy, drw->screen));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_free(Drw *drw) {
|
||||||
drw_free(Drw *drw)
|
XFreePixmap(drw->dpy, drw->drawable);
|
||||||
{
|
XFreeGC(drw->dpy, drw->gc);
|
||||||
XFreePixmap(drw->dpy, drw->drawable);
|
drw_fontset_free(drw->fonts);
|
||||||
XFreeGC(drw->dpy, drw->gc);
|
free(drw);
|
||||||
drw_fontset_free(drw->fonts);
|
|
||||||
free(drw);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This function is an implementation detail. Library users should use
|
/* This function is an implementation detail. Library users should use
|
||||||
* drw_fontset_create instead.
|
* drw_fontset_create instead.
|
||||||
*/
|
*/
|
||||||
static Fnt *
|
static Fnt *xfont_create(Drw *drw, const char *fontname,
|
||||||
xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern)
|
FcPattern *fontpattern) {
|
||||||
{
|
Fnt *font;
|
||||||
Fnt *font;
|
XftFont *xfont = NULL;
|
||||||
XftFont *xfont = NULL;
|
FcPattern *pattern = NULL;
|
||||||
FcPattern *pattern = NULL;
|
|
||||||
|
|
||||||
if (fontname) {
|
if (fontname) {
|
||||||
/* Using the pattern found at font->xfont->pattern does not yield the
|
/* Using the pattern found at font->xfont->pattern does not yield the
|
||||||
* same substitution results as using the pattern returned by
|
* same substitution results as using the pattern returned by
|
||||||
* FcNameParse; using the latter results in the desired fallback
|
* FcNameParse; using the latter results in the desired fallback
|
||||||
* behaviour whereas the former just results in missing-character
|
* behaviour whereas the former just results in missing-character
|
||||||
* rectangles being drawn, at least with some fonts. */
|
* rectangles being drawn, at least with some fonts. */
|
||||||
if (!(xfont = XftFontOpenName(drw->dpy, drw->screen, fontname))) {
|
if (!(xfont = XftFontOpenName(drw->dpy, drw->screen, fontname))) {
|
||||||
fprintf(stderr, "error, cannot load font from name: '%s'\n", fontname);
|
fprintf(stderr, "error, cannot load font from name: '%s'\n", fontname);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (!(pattern = FcNameParse((FcChar8 *) fontname))) {
|
if (!(pattern = FcNameParse((FcChar8 *)fontname))) {
|
||||||
fprintf(stderr, "error, cannot parse font name to pattern: '%s'\n", fontname);
|
fprintf(stderr, "error, cannot parse font name to pattern: '%s'\n",
|
||||||
XftFontClose(drw->dpy, xfont);
|
fontname);
|
||||||
return NULL;
|
XftFontClose(drw->dpy, xfont);
|
||||||
}
|
return NULL;
|
||||||
} else if (fontpattern) {
|
}
|
||||||
if (!(xfont = XftFontOpenPattern(drw->dpy, fontpattern))) {
|
} else if (fontpattern) {
|
||||||
fprintf(stderr, "error, cannot load font from pattern.\n");
|
if (!(xfont = XftFontOpenPattern(drw->dpy, fontpattern))) {
|
||||||
return NULL;
|
fprintf(stderr, "error, cannot load font from pattern.\n");
|
||||||
}
|
return NULL;
|
||||||
} else {
|
}
|
||||||
die("no font specified.");
|
} else {
|
||||||
}
|
die("no font specified.");
|
||||||
|
}
|
||||||
|
|
||||||
font = ecalloc(1, sizeof(Fnt));
|
font = ecalloc(1, sizeof(Fnt));
|
||||||
font->xfont = xfont;
|
font->xfont = xfont;
|
||||||
font->pattern = pattern;
|
font->pattern = pattern;
|
||||||
font->h = xfont->ascent + xfont->descent;
|
font->h = xfont->ascent + xfont->descent;
|
||||||
font->dpy = drw->dpy;
|
font->dpy = drw->dpy;
|
||||||
|
|
||||||
return font;
|
return font;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void xfont_free(Fnt *font) {
|
||||||
xfont_free(Fnt *font)
|
if (!font)
|
||||||
{
|
return;
|
||||||
if (!font)
|
if (font->pattern)
|
||||||
return;
|
FcPatternDestroy(font->pattern);
|
||||||
if (font->pattern)
|
XftFontClose(font->dpy, font->xfont);
|
||||||
FcPatternDestroy(font->pattern);
|
free(font);
|
||||||
XftFontClose(font->dpy, font->xfont);
|
|
||||||
free(font);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Fnt*
|
Fnt *drw_fontset_create(Drw *drw, const char *fonts[], size_t fontcount) {
|
||||||
drw_fontset_create(Drw* drw, const char *fonts[], size_t fontcount)
|
Fnt *cur, *ret = NULL;
|
||||||
{
|
size_t i;
|
||||||
Fnt *cur, *ret = NULL;
|
|
||||||
size_t i;
|
|
||||||
|
|
||||||
if (!drw || !fonts)
|
if (!drw || !fonts)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
for (i = 1; i <= fontcount; i++) {
|
for (i = 1; i <= fontcount; i++) {
|
||||||
if ((cur = xfont_create(drw, fonts[fontcount - i], NULL))) {
|
if ((cur = xfont_create(drw, fonts[fontcount - i], NULL))) {
|
||||||
cur->next = ret;
|
cur->next = ret;
|
||||||
ret = cur;
|
ret = cur;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (drw->fonts = ret);
|
return (drw->fonts = ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_fontset_free(Fnt *font) {
|
||||||
drw_fontset_free(Fnt *font)
|
if (font) {
|
||||||
{
|
drw_fontset_free(font->next);
|
||||||
if (font) {
|
xfont_free(font);
|
||||||
drw_fontset_free(font->next);
|
}
|
||||||
xfont_free(font);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_clr_create(Drw *drw, Clr *dest, const char *clrname) {
|
||||||
drw_clr_create(Drw *drw, Clr *dest, const char *clrname)
|
if (!drw || !dest || !clrname)
|
||||||
{
|
return;
|
||||||
if (!drw || !dest || !clrname)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!XftColorAllocName(drw->dpy, DefaultVisual(drw->dpy, drw->screen),
|
if (!XftColorAllocName(drw->dpy, DefaultVisual(drw->dpy, drw->screen),
|
||||||
DefaultColormap(drw->dpy, drw->screen),
|
DefaultColormap(drw->dpy, drw->screen), clrname, dest))
|
||||||
clrname, dest))
|
die("error, cannot allocate color '%s'", clrname);
|
||||||
die("error, cannot allocate color '%s'", clrname);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create color schemes. */
|
/* Create color schemes. */
|
||||||
Clr *
|
Clr *drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount) {
|
||||||
drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount)
|
size_t i;
|
||||||
{
|
Clr *ret;
|
||||||
size_t i;
|
|
||||||
Clr *ret;
|
|
||||||
|
|
||||||
/* need at least two colors for a scheme */
|
/* need at least two colors for a scheme */
|
||||||
if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, sizeof(Clr))))
|
if (!drw || !clrnames || clrcount < 2 ||
|
||||||
return NULL;
|
!(ret = ecalloc(clrcount, sizeof(Clr))))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
for (i = 0; i < clrcount; i++)
|
for (i = 0; i < clrcount; i++)
|
||||||
drw_clr_create(drw, &ret[i], clrnames[i]);
|
drw_clr_create(drw, &ret[i], clrnames[i]);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_clr_free(Drw *drw, Clr *c) {
|
||||||
drw_clr_free(Drw *drw, Clr *c)
|
if (!drw || !c)
|
||||||
{
|
return;
|
||||||
if (!drw || !c)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* c is typedef XftColor Clr */
|
/* c is typedef XftColor Clr */
|
||||||
XftColorFree(drw->dpy, DefaultVisual(drw->dpy, drw->screen),
|
XftColorFree(drw->dpy, DefaultVisual(drw->dpy, drw->screen),
|
||||||
DefaultColormap(drw->dpy, drw->screen), c);
|
DefaultColormap(drw->dpy, drw->screen), c);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_scm_free(Drw *drw, Clr *scm, size_t clrcount) {
|
||||||
drw_scm_free(Drw *drw, Clr *scm, size_t clrcount)
|
size_t i;
|
||||||
{
|
|
||||||
size_t i;
|
|
||||||
|
|
||||||
if (!drw || !scm)
|
if (!drw || !scm)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (i = 0; i < clrcount; i++)
|
for (i = 0; i < clrcount; i++)
|
||||||
drw_clr_free(drw, &scm[i]);
|
drw_clr_free(drw, &scm[i]);
|
||||||
free(scm);
|
free(scm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_setfontset(Drw *drw, Fnt *set) {
|
||||||
drw_setfontset(Drw *drw, Fnt *set)
|
if (drw)
|
||||||
{
|
drw->fonts = set;
|
||||||
if (drw)
|
|
||||||
drw->fonts = set;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_setscheme(Drw *drw, Clr *scm) {
|
||||||
drw_setscheme(Drw *drw, Clr *scm)
|
if (drw)
|
||||||
{
|
drw->scheme = scm;
|
||||||
if (drw)
|
|
||||||
drw->scheme = scm;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h,
|
||||||
drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int invert)
|
int filled, int invert) {
|
||||||
{
|
if (!drw || !drw->scheme)
|
||||||
if (!drw || !drw->scheme)
|
return;
|
||||||
return;
|
XSetForeground(drw->dpy, drw->gc,
|
||||||
XSetForeground(drw->dpy, drw->gc, invert ? drw->scheme[ColBg].pixel : drw->scheme[ColFg].pixel);
|
invert ? drw->scheme[ColBg].pixel : drw->scheme[ColFg].pixel);
|
||||||
if (filled)
|
if (filled)
|
||||||
XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
|
XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
|
||||||
else
|
else
|
||||||
XDrawRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w - 1, h - 1);
|
XDrawRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w - 1, h - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h,
|
||||||
drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lpad, const char *text, int invert)
|
unsigned int lpad, const char *text, int invert) {
|
||||||
{
|
int ty, ellipsis_x = 0;
|
||||||
int ty, ellipsis_x = 0;
|
unsigned int tmpw, ew, ellipsis_w = 0, ellipsis_len, hash, h0, h1;
|
||||||
unsigned int tmpw, ew, ellipsis_w = 0, ellipsis_len, hash, h0, h1;
|
XftDraw *d = NULL;
|
||||||
XftDraw *d = NULL;
|
Fnt *usedfont, *curfont, *nextfont;
|
||||||
Fnt *usedfont, *curfont, *nextfont;
|
int utf8strlen, utf8charlen, utf8err, render = x || y || w || h;
|
||||||
int utf8strlen, utf8charlen, utf8err, render = x || y || w || h;
|
long utf8codepoint = 0;
|
||||||
long utf8codepoint = 0;
|
const char *utf8str;
|
||||||
const char *utf8str;
|
FcCharSet *fccharset;
|
||||||
FcCharSet *fccharset;
|
FcPattern *fcpattern;
|
||||||
FcPattern *fcpattern;
|
FcPattern *match;
|
||||||
FcPattern *match;
|
XftResult result;
|
||||||
XftResult result;
|
int charexists = 0, overflow = 0;
|
||||||
int charexists = 0, overflow = 0;
|
/* keep track of a couple codepoints for which we have no match. */
|
||||||
/* keep track of a couple codepoints for which we have no match. */
|
static unsigned int nomatches[128], ellipsis_width, invalid_width;
|
||||||
static unsigned int nomatches[128], ellipsis_width, invalid_width;
|
static const char invalid[] = "<EFBFBD>";
|
||||||
static const char invalid[] = "<EFBFBD>";
|
|
||||||
|
|
||||||
if (!drw || (render && (!drw->scheme || !w)) || !text || !drw->fonts)
|
if (!drw || (render && (!drw->scheme || !w)) || !text || !drw->fonts)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (!render) {
|
if (!render) {
|
||||||
w = invert ? invert : ~invert;
|
w = invert ? invert : ~invert;
|
||||||
} else {
|
} else {
|
||||||
XSetForeground(drw->dpy, drw->gc, drw->scheme[invert ? ColFg : ColBg].pixel);
|
XSetForeground(drw->dpy, drw->gc,
|
||||||
XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
|
drw->scheme[invert ? ColFg : ColBg].pixel);
|
||||||
if (w < lpad)
|
XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
|
||||||
return x + w;
|
if (w < lpad)
|
||||||
d = XftDrawCreate(drw->dpy, drw->drawable,
|
return x + w;
|
||||||
DefaultVisual(drw->dpy, drw->screen),
|
d = XftDrawCreate(drw->dpy, drw->drawable,
|
||||||
DefaultColormap(drw->dpy, drw->screen));
|
DefaultVisual(drw->dpy, drw->screen),
|
||||||
x += lpad;
|
DefaultColormap(drw->dpy, drw->screen));
|
||||||
w -= lpad;
|
x += lpad;
|
||||||
}
|
w -= lpad;
|
||||||
|
}
|
||||||
|
|
||||||
usedfont = drw->fonts;
|
usedfont = drw->fonts;
|
||||||
if (!ellipsis_width && render)
|
if (!ellipsis_width && render)
|
||||||
ellipsis_width = drw_fontset_getwidth(drw, "...");
|
ellipsis_width = drw_fontset_getwidth(drw, "...");
|
||||||
if (!invalid_width && render)
|
if (!invalid_width && render)
|
||||||
invalid_width = drw_fontset_getwidth(drw, invalid);
|
invalid_width = drw_fontset_getwidth(drw, invalid);
|
||||||
while (1) {
|
while (1) {
|
||||||
ew = ellipsis_len = utf8err = utf8charlen = utf8strlen = 0;
|
ew = ellipsis_len = utf8err = utf8charlen = utf8strlen = 0;
|
||||||
utf8str = text;
|
utf8str = text;
|
||||||
nextfont = NULL;
|
nextfont = NULL;
|
||||||
while (*text) {
|
while (*text) {
|
||||||
utf8charlen = utf8decode(text, &utf8codepoint, &utf8err);
|
utf8charlen = utf8decode(text, &utf8codepoint, &utf8err);
|
||||||
for (curfont = drw->fonts; curfont; curfont = curfont->next) {
|
for (curfont = drw->fonts; curfont; curfont = curfont->next) {
|
||||||
charexists = charexists || XftCharExists(drw->dpy, curfont->xfont, utf8codepoint);
|
charexists = charexists ||
|
||||||
if (charexists) {
|
XftCharExists(drw->dpy, curfont->xfont, utf8codepoint);
|
||||||
drw_font_getexts(curfont, text, utf8charlen, &tmpw, NULL);
|
if (charexists) {
|
||||||
if (ew + ellipsis_width <= w) {
|
drw_font_getexts(curfont, text, utf8charlen, &tmpw, NULL);
|
||||||
/* keep track where the ellipsis still fits */
|
if (ew + ellipsis_width <= w) {
|
||||||
ellipsis_x = x + ew;
|
/* keep track where the ellipsis still fits */
|
||||||
ellipsis_w = w - ew;
|
ellipsis_x = x + ew;
|
||||||
ellipsis_len = utf8strlen;
|
ellipsis_w = w - ew;
|
||||||
}
|
ellipsis_len = utf8strlen;
|
||||||
|
}
|
||||||
|
|
||||||
if (ew + tmpw > w) {
|
if (ew + tmpw > w) {
|
||||||
overflow = 1;
|
overflow = 1;
|
||||||
/* called from drw_fontset_getwidth_clamp():
|
/* called from drw_fontset_getwidth_clamp():
|
||||||
* it wants the width AFTER the overflow
|
* it wants the width AFTER the overflow
|
||||||
*/
|
*/
|
||||||
if (!render)
|
if (!render)
|
||||||
x += tmpw;
|
x += tmpw;
|
||||||
else
|
else
|
||||||
utf8strlen = ellipsis_len;
|
utf8strlen = ellipsis_len;
|
||||||
} else if (curfont == usedfont) {
|
} else if (curfont == usedfont) {
|
||||||
text += utf8charlen;
|
text += utf8charlen;
|
||||||
utf8strlen += utf8err ? 0 : utf8charlen;
|
utf8strlen += utf8err ? 0 : utf8charlen;
|
||||||
ew += utf8err ? 0 : tmpw;
|
ew += utf8err ? 0 : tmpw;
|
||||||
} else {
|
} else {
|
||||||
nextfont = curfont;
|
nextfont = curfont;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (overflow || !charexists || nextfont || utf8err)
|
if (overflow || !charexists || nextfont || utf8err)
|
||||||
break;
|
break;
|
||||||
else
|
else
|
||||||
charexists = 0;
|
charexists = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (utf8strlen) {
|
if (utf8strlen) {
|
||||||
if (render) {
|
if (render) {
|
||||||
ty = y + (h - usedfont->h) / 2 + usedfont->xfont->ascent;
|
ty = y + (h - usedfont->h) / 2 + usedfont->xfont->ascent;
|
||||||
XftDrawStringUtf8(d, &drw->scheme[invert ? ColBg : ColFg],
|
XftDrawStringUtf8(d, &drw->scheme[invert ? ColBg : ColFg],
|
||||||
usedfont->xfont, x, ty, (XftChar8 *)utf8str, utf8strlen);
|
usedfont->xfont, x, ty, (XftChar8 *)utf8str,
|
||||||
}
|
utf8strlen);
|
||||||
x += ew;
|
}
|
||||||
w -= ew;
|
x += ew;
|
||||||
}
|
w -= ew;
|
||||||
if (utf8err && (!render || invalid_width < w)) {
|
}
|
||||||
if (render)
|
if (utf8err && (!render || invalid_width < w)) {
|
||||||
drw_text(drw, x, y, w, h, 0, invalid, invert);
|
if (render)
|
||||||
x += invalid_width;
|
drw_text(drw, x, y, w, h, 0, invalid, invert);
|
||||||
w -= invalid_width;
|
x += invalid_width;
|
||||||
}
|
w -= invalid_width;
|
||||||
if (render && overflow)
|
}
|
||||||
drw_text(drw, ellipsis_x, y, ellipsis_w, h, 0, "...", invert);
|
if (render && overflow)
|
||||||
|
drw_text(drw, ellipsis_x, y, ellipsis_w, h, 0, "...", invert);
|
||||||
|
|
||||||
if (!*text || overflow) {
|
if (!*text || overflow) {
|
||||||
break;
|
break;
|
||||||
} else if (nextfont) {
|
} else if (nextfont) {
|
||||||
charexists = 0;
|
charexists = 0;
|
||||||
usedfont = nextfont;
|
usedfont = nextfont;
|
||||||
} else {
|
} else {
|
||||||
/* Regardless of whether or not a fallback font is found, the
|
/* Regardless of whether or not a fallback font is found, the
|
||||||
* character must be drawn. */
|
* character must be drawn. */
|
||||||
charexists = 1;
|
charexists = 1;
|
||||||
|
|
||||||
hash = (unsigned int)utf8codepoint;
|
hash = (unsigned int)utf8codepoint;
|
||||||
hash = ((hash >> 16) ^ hash) * 0x21F0AAAD;
|
hash = ((hash >> 16) ^ hash) * 0x21F0AAAD;
|
||||||
hash = ((hash >> 15) ^ hash) * 0xD35A2D97;
|
hash = ((hash >> 15) ^ hash) * 0xD35A2D97;
|
||||||
h0 = ((hash >> 15) ^ hash) % LENGTH(nomatches);
|
h0 = ((hash >> 15) ^ hash) % LENGTH(nomatches);
|
||||||
h1 = (hash >> 17) % LENGTH(nomatches);
|
h1 = (hash >> 17) % LENGTH(nomatches);
|
||||||
/* avoid expensive XftFontMatch call when we know we won't find a match */
|
/* avoid expensive XftFontMatch call when we know we won't find a match */
|
||||||
if (nomatches[h0] == utf8codepoint || nomatches[h1] == utf8codepoint)
|
if (nomatches[h0] == utf8codepoint || nomatches[h1] == utf8codepoint)
|
||||||
goto no_match;
|
goto no_match;
|
||||||
|
|
||||||
fccharset = FcCharSetCreate();
|
fccharset = FcCharSetCreate();
|
||||||
FcCharSetAddChar(fccharset, utf8codepoint);
|
FcCharSetAddChar(fccharset, utf8codepoint);
|
||||||
|
|
||||||
if (!drw->fonts->pattern) {
|
if (!drw->fonts->pattern) {
|
||||||
/* Refer to the comment in xfont_create for more information. */
|
/* Refer to the comment in xfont_create for more information. */
|
||||||
die("the first font in the cache must be loaded from a font string.");
|
die("the first font in the cache must be loaded from a font string.");
|
||||||
}
|
}
|
||||||
|
|
||||||
fcpattern = FcPatternDuplicate(drw->fonts->pattern);
|
fcpattern = FcPatternDuplicate(drw->fonts->pattern);
|
||||||
FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset);
|
FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset);
|
||||||
FcPatternAddBool(fcpattern, FC_SCALABLE, FcTrue);
|
FcPatternAddBool(fcpattern, FC_SCALABLE, FcTrue);
|
||||||
|
|
||||||
FcConfigSubstitute(NULL, fcpattern, FcMatchPattern);
|
FcConfigSubstitute(NULL, fcpattern, FcMatchPattern);
|
||||||
FcDefaultSubstitute(fcpattern);
|
FcDefaultSubstitute(fcpattern);
|
||||||
match = XftFontMatch(drw->dpy, drw->screen, fcpattern, &result);
|
match = XftFontMatch(drw->dpy, drw->screen, fcpattern, &result);
|
||||||
|
|
||||||
FcCharSetDestroy(fccharset);
|
FcCharSetDestroy(fccharset);
|
||||||
FcPatternDestroy(fcpattern);
|
FcPatternDestroy(fcpattern);
|
||||||
|
|
||||||
if (match) {
|
if (match) {
|
||||||
usedfont = xfont_create(drw, NULL, match);
|
usedfont = xfont_create(drw, NULL, match);
|
||||||
if (usedfont && XftCharExists(drw->dpy, usedfont->xfont, utf8codepoint)) {
|
if (usedfont &&
|
||||||
for (curfont = drw->fonts; curfont->next; curfont = curfont->next)
|
XftCharExists(drw->dpy, usedfont->xfont, utf8codepoint)) {
|
||||||
; /* NOP */
|
for (curfont = drw->fonts; curfont->next; curfont = curfont->next)
|
||||||
curfont->next = usedfont;
|
; /* NOP */
|
||||||
} else {
|
curfont->next = usedfont;
|
||||||
xfont_free(usedfont);
|
} else {
|
||||||
nomatches[nomatches[h0] ? h1 : h0] = utf8codepoint;
|
xfont_free(usedfont);
|
||||||
no_match:
|
nomatches[nomatches[h0] ? h1 : h0] = utf8codepoint;
|
||||||
usedfont = drw->fonts;
|
no_match:
|
||||||
}
|
usedfont = drw->fonts;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (d)
|
}
|
||||||
XftDrawDestroy(d);
|
if (d)
|
||||||
|
XftDrawDestroy(d);
|
||||||
|
|
||||||
return x + (render ? w : 0);
|
return x + (render ? w : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_map(Drw *drw, Window win, int x, int y, unsigned int w,
|
||||||
drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h)
|
unsigned int h) {
|
||||||
{
|
if (!drw)
|
||||||
if (!drw)
|
return;
|
||||||
return;
|
|
||||||
|
|
||||||
XCopyArea(drw->dpy, drw->drawable, win, drw->gc, x, y, w, h, x, y);
|
XCopyArea(drw->dpy, drw->drawable, win, drw->gc, x, y, w, h, x, y);
|
||||||
XSync(drw->dpy, False);
|
XSync(drw->dpy, False);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int
|
unsigned int drw_fontset_getwidth(Drw *drw, const char *text) {
|
||||||
drw_fontset_getwidth(Drw *drw, const char *text)
|
if (!drw || !drw->fonts || !text)
|
||||||
{
|
return 0;
|
||||||
if (!drw || !drw->fonts || !text)
|
return drw_text(drw, 0, 0, 0, 0, 0, text, 0);
|
||||||
return 0;
|
|
||||||
return drw_text(drw, 0, 0, 0, 0, 0, text, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int
|
unsigned int drw_fontset_getwidth_clamp(Drw *drw, const char *text,
|
||||||
drw_fontset_getwidth_clamp(Drw *drw, const char *text, unsigned int n)
|
unsigned int n) {
|
||||||
{
|
unsigned int tmp = 0;
|
||||||
unsigned int tmp = 0;
|
if (drw && drw->fonts && text && n)
|
||||||
if (drw && drw->fonts && text && n)
|
tmp = drw_text(drw, 0, 0, 0, 0, 0, text, n);
|
||||||
tmp = drw_text(drw, 0, 0, 0, 0, 0, text, n);
|
return MIN(n, tmp);
|
||||||
return MIN(n, tmp);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_font_getexts(Fnt *font, const char *text, unsigned int len,
|
||||||
drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h)
|
unsigned int *w, unsigned int *h) {
|
||||||
{
|
XGlyphInfo ext;
|
||||||
XGlyphInfo ext;
|
|
||||||
|
|
||||||
if (!font || !text)
|
if (!font || !text)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
XftTextExtentsUtf8(font->dpy, font->xfont, (XftChar8 *)text, len, &ext);
|
XftTextExtentsUtf8(font->dpy, font->xfont, (XftChar8 *)text, len, &ext);
|
||||||
if (w)
|
if (w)
|
||||||
*w = ext.xOff;
|
*w = ext.xOff;
|
||||||
if (h)
|
if (h)
|
||||||
*h = font->h;
|
*h = font->h;
|
||||||
}
|
}
|
||||||
|
|
||||||
Cur *
|
Cur *drw_cur_create(Drw *drw, int shape) {
|
||||||
drw_cur_create(Drw *drw, int shape)
|
Cur *cur;
|
||||||
{
|
|
||||||
Cur *cur;
|
|
||||||
|
|
||||||
if (!drw || !(cur = ecalloc(1, sizeof(Cur))))
|
if (!drw || !(cur = ecalloc(1, sizeof(Cur))))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
cur->cursor = XCreateFontCursor(drw->dpy, shape);
|
cur->cursor = XCreateFontCursor(drw->dpy, shape);
|
||||||
|
|
||||||
return cur;
|
return cur;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void drw_cur_free(Drw *drw, Cur *cursor) {
|
||||||
drw_cur_free(Drw *drw, Cur *cursor)
|
if (!cursor)
|
||||||
{
|
return;
|
||||||
if (!cursor)
|
|
||||||
return;
|
|
||||||
|
|
||||||
XFreeCursor(drw->dpy, cursor->cursor);
|
XFreeCursor(drw->dpy, cursor->cursor);
|
||||||
free(cursor);
|
free(cursor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
63
dwm-steam-6.2.diff
Normal file
63
dwm-steam-6.2.diff
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
From 2550931c66e10e667ce56a6761cbadd12b331c52 Mon Sep 17 00:00:00 2001
|
||||||
|
From: bakkeby <bakkeby@gmail.com>
|
||||||
|
Date: Mon, 10 Aug 2020 16:45:00 +0200
|
||||||
|
Subject: [PATCH] Steam patch
|
||||||
|
|
||||||
|
Steam, and steam windows (games), trigger a ConfigureNotify request every time the window
|
||||||
|
gets focus. More so, the configure event passed along from Steam tends to have the wrong
|
||||||
|
x and y coordinates which can make the window, if floating, jump around the screen.
|
||||||
|
|
||||||
|
This patch works around this age-old issue by ignoring the x and y co-ordinates for
|
||||||
|
ConfigureNotify requests relating to Steam windows.
|
||||||
|
---
|
||||||
|
dwm.c | 20 +++++++++++++-------
|
||||||
|
1 file changed, 13 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/dwm.c b/dwm.c
|
||||||
|
index 4465af1..598d36d 100644
|
||||||
|
--- a/dwm.c
|
||||||
|
+++ b/dwm.c
|
||||||
|
@@ -93,6 +93,7 @@ struct Client {
|
||||||
|
int bw, oldbw;
|
||||||
|
unsigned int tags;
|
||||||
|
int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
|
||||||
|
+ int issteam;
|
||||||
|
Client *next;
|
||||||
|
Client *snext;
|
||||||
|
Monitor *mon;
|
||||||
|
@@ -291,6 +292,9 @@ applyrules(Client *c)
|
||||||
|
class = ch.res_class ? ch.res_class : broken;
|
||||||
|
instance = ch.res_name ? ch.res_name : broken;
|
||||||
|
|
||||||
|
+ if (strstr(class, "Steam") || strstr(class, "steam_app_"))
|
||||||
|
+ c->issteam = 1;
|
||||||
|
+
|
||||||
|
for (i = 0; i < LENGTH(rules); i++) {
|
||||||
|
r = &rules[i];
|
||||||
|
if ((!r->title || strstr(c->name, r->title))
|
||||||
|
@@ -588,13 +592,15 @@ configurerequest(XEvent *e)
|
||||||
|
c->bw = ev->border_width;
|
||||||
|
else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
|
||||||
|
m = c->mon;
|
||||||
|
- if (ev->value_mask & CWX) {
|
||||||
|
- c->oldx = c->x;
|
||||||
|
- c->x = m->mx + ev->x;
|
||||||
|
- }
|
||||||
|
- if (ev->value_mask & CWY) {
|
||||||
|
- c->oldy = c->y;
|
||||||
|
- c->y = m->my + ev->y;
|
||||||
|
+ if (!c->issteam) {
|
||||||
|
+ if (ev->value_mask & CWX) {
|
||||||
|
+ c->oldx = c->x;
|
||||||
|
+ c->x = m->mx + ev->x;
|
||||||
|
+ }
|
||||||
|
+ if (ev->value_mask & CWY) {
|
||||||
|
+ c->oldy = c->y;
|
||||||
|
+ c->y = m->my + ev->y;
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
if (ev->value_mask & CWWidth) {
|
||||||
|
c->oldw = c->w;
|
||||||
|
--
|
||||||
|
2.19.1
|
||||||
|
|
||||||
20
dwm.c
20
dwm.c
@ -109,6 +109,7 @@ struct Client {
|
|||||||
unsigned int tags;
|
unsigned int tags;
|
||||||
int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
|
int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
|
||||||
int allowkill;
|
int allowkill;
|
||||||
|
int issteam;
|
||||||
Client *next;
|
Client *next;
|
||||||
Client *snext;
|
Client *snext;
|
||||||
Monitor *mon;
|
Monitor *mon;
|
||||||
@ -355,6 +356,9 @@ applyrules(Client *c)
|
|||||||
class = ch.res_class ? ch.res_class : broken;
|
class = ch.res_class ? ch.res_class : broken;
|
||||||
instance = ch.res_name ? ch.res_name : broken;
|
instance = ch.res_name ? ch.res_name : broken;
|
||||||
|
|
||||||
|
if (strstr(class, "Steam") || strstr(class, "steam_app_"))
|
||||||
|
c->issteam = 1;
|
||||||
|
|
||||||
for (i = 0; i < LENGTH(rules); i++) {
|
for (i = 0; i < LENGTH(rules); i++) {
|
||||||
r = &rules[i];
|
r = &rules[i];
|
||||||
if ((!r->title || strstr(c->name, r->title))
|
if ((!r->title || strstr(c->name, r->title))
|
||||||
@ -756,13 +760,15 @@ configurerequest(XEvent *e)
|
|||||||
c->bw = ev->border_width;
|
c->bw = ev->border_width;
|
||||||
else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
|
else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
|
||||||
m = c->mon;
|
m = c->mon;
|
||||||
if (ev->value_mask & CWX) {
|
if (!c->issteam) {
|
||||||
c->oldx = c->x;
|
if (ev->value_mask & CWX) {
|
||||||
c->x = m->mx + ev->x;
|
c->oldx = c->x;
|
||||||
}
|
c->x = m->mx + ev->x;
|
||||||
if (ev->value_mask & CWY) {
|
}
|
||||||
c->oldy = c->y;
|
if (ev->value_mask & CWY) {
|
||||||
c->y = m->my + ev->y;
|
c->oldy = c->y;
|
||||||
|
c->y = m->my + ev->y;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (ev->value_mask & CWWidth) {
|
if (ev->value_mask & CWWidth) {
|
||||||
c->oldw = c->w;
|
c->oldw = c->w;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user