From ccf39796a1c59b0dec4b030a5791b71246e77e64 Mon Sep 17 00:00:00 2001 From: harbaum Date: Wed, 9 Aug 2006 17:25:34 +0000 Subject: [lcd4linux @ 2006-08-09 17:25:34 by harbaum] Better bar color support and new bold font git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@685 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- drv_LEDMatrix.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'drv_LEDMatrix.c') diff --git a/drv_LEDMatrix.c b/drv_LEDMatrix.c index bf4757d..7bd453d 100644 --- a/drv_LEDMatrix.c +++ b/drv_LEDMatrix.c @@ -1,4 +1,4 @@ -/* $Id: drv_LEDMatrix.c,v 1.2 2006/08/08 20:16:28 harbaum Exp $ +/* $Id: drv_LEDMatrix.c,v 1.3 2006/08/09 17:25:34 harbaum Exp $ * * LED matrix driver for LCD4Linux * (see http://www.harbaum.org/till/ledmatrix for hardware) @@ -23,6 +23,9 @@ * * * $Log: drv_LEDMatrix.c,v $ + * Revision 1.3 2006/08/09 17:25:34 harbaum + * Better bar color support and new bold font + * * Revision 1.2 2006/08/08 20:16:28 harbaum * Added "extracolor" (used for e.g. bar border) and RGB support for LEDMATRIX * @@ -128,6 +131,7 @@ static int drv_LEDMatrix_start(const char *section) struct sockaddr_in cli_addr; struct hostent *hp; int val; + char *attr; IPAddress = cfg_get(section, "IPAddress", NULL); if (IPAddress == NULL || *IPAddress == '\0') { @@ -153,6 +157,11 @@ static int drv_LEDMatrix_start(const char *section) } free(s); + s = cfg_get(section, "fontstyle", NULL); + if (s != NULL) { + if(strstr(s, "bold") != NULL) FONT_STYLE |= FONT_STYLE_BOLD; + } + /* contact display */ info("%s: contacting %s", Name, IPAddress); -- cgit v1.2.3