aboutsummaryrefslogtreecommitdiffstats
path: root/gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'gui.c')
-rw-r--r--gui.c53
1 files changed, 31 insertions, 22 deletions
diff --git a/gui.c b/gui.c
index 1d162d54..1fc8f083 100644
--- a/gui.c
+++ b/gui.c
@@ -27,10 +27,14 @@ static void buttonThread(struct button_t *a) {
y1 = a->y1;
while(TRUE) {
- if(x >= x0 && x <= x1 && y >= y0 && y <= y1)
- *(a->state) = 1;
- else
+ if(*(a->active) == active) {
+ if(x >= x0 && x <= x1 && y >= y0 && y <= y1)
+ *(a->state) = 1;
+ else
+ *(a->state) = 0;
+ } else {
*(a->state) = 0;
+ }
chThdSleepMilliseconds(a->interval);
}
@@ -40,25 +44,28 @@ static void barThread(struct bar_t *a) {
uint16_t percent = 0, value = 0, value_old = 0;
while(TRUE) {
- percent = *(a->percent);
- if(percent > 100)
- percent = 100;
-
- if(a->orientation == horizontal) {
- value = ((((a->x1)-(a->x0)) * percent) / 100);
- if(value_old > value || value == 0)
- lcdFillArea(a->x0+1, a->y0+1, a->x1, a->y1, a->bkColor);
- else
- lcdDrawRect(a->x0+1, a->y0+1, a->x0+value, a->y1, filled, a->valueColor);
- } else if(a->orientation == vertical) {
- value = ((((a->y1)-(a->y0)) * percent) / 100);
- if(value_old > value || value == 0)
- lcdFillArea(a->x0+1, a->y0+1, a->x1, a->y1, a->bkColor);
- else
- lcdDrawRect(a->x0+1, a->y0+1, a->x1, a->y0+value, filled, a->valueColor);
+ if(*(a->active) == active) {
+ percent = *(a->percent);
+ if(percent > 100)
+ percent = 100;
+
+ if(a->orientation == horizontal) {
+ value = ((((a->x1)-(a->x0)) * percent) / 100);
+ if(value_old > value || value == 0)
+ lcdFillArea(a->x0+1, a->y0+1, a->x1, a->y1, a->bkColor);
+ else
+ lcdDrawRect(a->x0+1, a->y0+1, a->x0+value, a->y1, filled, a->valueColor);
+ } else if(a->orientation == vertical) {
+ value = ((((a->y1)-(a->y0)) * percent) / 100);
+ if(value_old > value || value == 0)
+ lcdFillArea(a->x0+1, a->y0+1, a->x1, a->y1, a->bkColor);
+ else
+ lcdDrawRect(a->x0+1, a->y0+1, a->x1, a->y0+value, filled, a->valueColor);
+ }
+
+ value_old = value;
}
- value_old = value;
chThdSleepMilliseconds(a->interval);
}
}
@@ -68,7 +75,7 @@ void guiInit(uint16_t updateInterval) {
tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(64), HIGHPRIO-1, TouchPadThread, updateInterval);
}
-Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t interval, uint8_t *state) {
+Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t interval, uint8_t *active, uint8_t *state) {
struct button_t *button;
Thread *tp = NULL;
@@ -78,6 +85,7 @@ Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsign
button->x1 = x1;
button->y1 = y1;
button->state = state;
+ button->active = active;
button->interval = interval;
lcdDrawRectString(x0, y0, x1, y1, str, fontColor, buttonColor);
@@ -86,7 +94,7 @@ Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsign
return tp;
}
-Thread *guiDrawBarGraph(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, uint16_t interval, uint16_t *percent) {
+Thread *guiDrawBarGraph(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, uint16_t interval, uint8_t *active, uint16_t *percent) {
struct bar_t *bar;
Thread *tp = NULL;
@@ -101,6 +109,7 @@ Thread *guiDrawBarGraph(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint
bar->valueColor = valueColor;
bar->percent = percent;
bar->interval = interval;
+ bar->active = active;
lcdDrawRect(x0, y0, x1, y1, frame, frameColor);
tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(64), NORMALPRIO, barThread, bar);