summaryrefslogtreecommitdiffstats
path: root/Header.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-18 15:23:23 +0100
committercgzones <cgzones@googlemail.com>2021-01-23 15:20:47 +0100
commit2ec44098f9ca6604f2e897bbc4e2ee164049107f (patch)
tree135d98bfa7f04523f734712871fc33dfa33e3ff8 /Header.c
parent6f6e0ec571a05f612788fffa9dbf095ddd8a939c (diff)
Allow meters in text mode to span empty neighbors to the right
Closes: #484
Diffstat (limited to 'Header.c')
-rw-r--r--Header.c48
1 files changed, 42 insertions, 6 deletions
diff --git a/Header.c b/Header.c
index 292f9b1e..08e3548a 100644
--- a/Header.c
+++ b/Header.c
@@ -150,35 +150,71 @@ void Header_reinit(Header* this) {
}
void Header_draw(const Header* this) {
- int height = this->height;
- int pad = this->pad;
+ const int height = this->height;
+ const int pad = this->pad;
attrset(CRT_colors[RESET_COLOR]);
for (int y = 0; y < height; y++) {
mvhline(y, 0, ' ', COLS);
}
- int width = COLS / this->nrColumns - (pad * this->nrColumns - 1) - 1;
+ const int width = COLS / this->nrColumns - (pad * this->nrColumns - 1) - 1;
int x = pad;
Header_forEachColumn(this, col) {
Vector* meters = this->columns[col];
for (int y = (pad / 2), i = 0; i < Vector_size(meters); i++) {
Meter* meter = (Meter*) Vector_get(meters, i);
- meter->draw(meter, x, y, width);
+
+ int actualWidth;
+ if (meter->mode == TEXT_METERMODE)
+ actualWidth = meter->columnWidthCount * width + (meter->columnWidthCount - 1) * (2 * pad + 1);
+ else
+ actualWidth = width;
+
+ meter->draw(meter, x, y, actualWidth);
y += meter->h;
}
x += width + pad;
}
}
+/*
+ * Calculate how many columns the current meter is allowed to span,
+ * by counting how many columns to the right are empty or contain a BlankMeter.
+ * Returns the number of columns to span, i.e. if the direct neighbor is occupied 1.
+ */
+static int calcColumnWidthCount(const Header* this, const Meter* curMeter, const int pad, const int curColumn, const int curHeight) {
+ for (int i = curColumn + 1; i < this->nrColumns; i++) {
+ const Vector* meters = this->columns[i];
+
+ int height = pad;
+ for (int j = 0; j < Vector_size(meters); j++) {
+ const Meter* meter = (const Meter*) Vector_get(meters, j);
+
+ if (height >= curHeight + curMeter->h)
+ break;
+
+ height += meter->h;
+ if (height <= curHeight)
+ continue;
+
+ if (!Object_isA((const Object*) meter, (const ObjectClass*) &BlankMeter_class))
+ return i - curColumn;
+ }
+ }
+
+ return this->nrColumns - curColumn;
+}
+
int Header_calculateHeight(Header* this) {
- int pad = this->settings->headerMargin ? 2 : 0;
+ const int pad = this->settings->headerMargin ? 2 : 0;
int maxHeight = pad;
Header_forEachColumn(this, col) {
const Vector* meters = this->columns[col];
int height = pad;
for (int i = 0; i < Vector_size(meters); i++) {
- const Meter* meter = (const Meter*) Vector_get(meters, i);
+ Meter* meter = (Meter*) Vector_get(meters, i);
+ meter->columnWidthCount = calcColumnWidthCount(this, meter, pad, col, height);
height += meter->h;
}
maxHeight = MAXIMUM(maxHeight, height);

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