aboutsummaryrefslogtreecommitdiffstats
path: root/xutil.c
diff options
context:
space:
mode:
authorokan2013-05-19 23:09:59 +0000
committerokan2013-05-19 23:09:59 +0000
commitddd89ea5ae03ad42e2aebd4e614e16bc4dd36c19 (patch)
treec78917d5a1bf167f676505945bde884fba9bbc39 /xutil.c
parent9b2707d7772bceae892c022721d1f1857984432d (diff)
downloadcwm-ddd89ea5ae03ad42e2aebd4e614e16bc4dd36c19.tar.gz
- switch border colors to Xft
- merge border/menu color structures/functions since they now both use Xft - switch xu_xorcolor to operating on XftColor instead of just XRenderColor (basically adding pixel) - if color name allocation fails, revert back to default (this, along with font validation should occur during config parse, but we don't have screens setup yet - likely to change at some point)
Diffstat (limited to '')
-rw-r--r--xutil.c26
1 files changed, 7 insertions, 19 deletions
diff --git a/xutil.c b/xutil.c
index e78680e..0d22aa3 100644
--- a/xutil.c
+++ b/xutil.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: xutil.c,v 1.61 2013/05/19 17:05:52 okan Exp $
+ * $OpenBSD: xutil.c,v 1.62 2013/05/19 23:09:59 okan Exp $
*/
#include <sys/param.h>
@@ -420,24 +420,12 @@ xu_ewmh_net_wm_desktop(struct client_ctx *cc)
XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&no, 1);
}
-unsigned long
-xu_getcolor(struct screen_ctx *sc, char *name)
-{
- XColor color, tmp;
-
- if (!XAllocNamedColor(X_Dpy, sc->colormap, name, &color, &tmp)) {
- warnx("XAllocNamedColor error: '%s'", name);
- return (0);
- }
-
- return (color.pixel);
-}
-
void
-xu_xorcolor(XRenderColor a, XRenderColor b, XRenderColor *r)
+xu_xorcolor(XftColor a, XftColor b, XftColor *r)
{
- r->red = a.red ^ b.red;
- r->green = a.green ^ b.green;
- r->blue = a.blue ^ b.blue;
- r->alpha = 0xffff;
+ r->pixel = a.pixel ^ b.pixel;
+ r->color.red = a.color.red ^ b.color.red;
+ r->color.green = a.color.green ^ b.color.green;
+ r->color.blue = a.color.blue ^ b.color.blue;
+ r->color.alpha = 0xffff;
}