summaryrefslogtreecommitdiffstats
path: root/Meter.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2015-07-17 14:33:34 +0200
committerChristian Hesse <mail@eworm.de>2015-08-19 22:42:34 +0200
commitd8e23bb0847d766d7f3fdf8bdd11f7d70829fad8 (patch)
tree76e41872d9bf93f03cc45549021c6988538f5f67 /Meter.c
parent9e67b6585ec42d16fd73a4f2df372f54f1188a32 (diff)
remove UTF-8 code when compiling with --disable-unicode
Diffstat (limited to 'Meter.c')
-rw-r--r--Meter.c26
1 files changed, 21 insertions, 5 deletions
diff --git a/Meter.c b/Meter.c
index af863ae5..f7ad61aa 100644
--- a/Meter.c
+++ b/Meter.c
@@ -308,6 +308,8 @@ static void BarMeterMode_draw(Meter* this, int x, int y, int w) {
/* ---------- GraphMeterMode ---------- */
+#ifdef HAVE_LIBNCURSESW
+
#define PIXPERROW_UTF8 4
static const char* GraphMeterMode_dotsUtf8[] = {
/*00*/"⠀", /*01*/"⢀", /*02*/"⢠", /*03*/"⢰", /*04*/ "⢸",
@@ -317,6 +319,8 @@ static const char* GraphMeterMode_dotsUtf8[] = {
/*40*/"⡇", /*41*/"⣇", /*42*/"⣧", /*43*/"⣷", /*44*/ "⣿"
};
+#endif
+
#define PIXPERROW_ASCII 2
static const char* GraphMeterMode_dotsAscii[] = {
/*00*/" ", /*01*/".", /*02*/":",
@@ -333,10 +337,13 @@ static void GraphMeterMode_draw(Meter* this, int x, int y, int w) {
GraphData* data = (GraphData*) this->drawData;
const int nValues = METER_BUFFER_LEN;
+#ifdef HAVE_LIBNCURSESW
if (CRT_utf8) {
GraphMeterMode_dots = GraphMeterMode_dotsUtf8;
pixperrow = PIXPERROW_UTF8;
- } else {
+ } else
+#endif
+ {
GraphMeterMode_dots = GraphMeterMode_dotsAscii;
pixperrow = PIXPERROW_ASCII;
}
@@ -399,12 +406,16 @@ static const char* LEDMeterMode_digitsAscii[] = {
"|__|"," |","|__ "," __|"," |"," __|","|__|"," |","|__|"," __|"
};
+#ifdef HAVE_LIBNCURSESW
+
static const char* LEDMeterMode_digitsUtf8[] = {
"┌──┐"," ┐ ","╶──┐","╶──┐","╷ ╷","┌──╴","┌──╴","╶──┐","┌──┐","┌──┐",
"│ │"," │ ","┌──┘"," ──┤","└──┤","└──┐","├──┐"," │","├──┤","└──┤",
"└──┘"," ╵ ","└──╴","╶──┘"," ╵","╶──┘","└──┘"," ╵","└──┘"," ──┘"
};
+#endif
+
static const char** LEDMeterMode_digits;
static void LEDMeterMode_drawDigit(int x, int y, int n) {
@@ -415,11 +426,12 @@ static void LEDMeterMode_drawDigit(int x, int y, int n) {
static void LEDMeterMode_draw(Meter* this, int x, int y, int w) {
(void) w;
- if (CRT_utf8) {
+#ifdef HAVE_LIBNCURSESW
+ if (CRT_utf8)
LEDMeterMode_digits = LEDMeterMode_digitsUtf8;
- } else {
+ else
+#endif
LEDMeterMode_digits = LEDMeterMode_digitsAscii;
- }
char buffer[METER_BUFFER_LEN];
Meter_setValues(this, buffer, METER_BUFFER_LEN - 1);
@@ -427,7 +439,11 @@ static void LEDMeterMode_draw(Meter* this, int x, int y, int w) {
RichString_begin(out);
Meter_displayBuffer(this, buffer, &out);
- int yText = CRT_utf8 ? y+1 : y+2;
+ int yText =
+#ifdef HAVE_LIBNCURSESW
+ CRT_utf8 ? y+1 :
+#endif
+ y+2;
attrset(CRT_colors[LED_COLOR]);
mvaddstr(yText, x, this->caption);
int xx = x + strlen(this->caption);

© 2014-2024 Faster IT GmbH | imprint | privacy policy