diff options
author | Tectu <joel@unormal.org> | 2012-06-25 10:40:05 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-25 10:40:05 +0200 |
commit | 7401ade97dbfcb851e9155bbabdb061b2b769492 (patch) | |
tree | f9561ca9c77efa4d620b70aecf0857f48fed45ee | |
parent | e543f15633db2fc915245c5ede020c30e633c1a4 (diff) | |
download | uGFX-7401ade97dbfcb851e9155bbabdb061b2b769492.tar.gz uGFX-7401ade97dbfcb851e9155bbabdb061b2b769492.tar.bz2 uGFX-7401ade97dbfcb851e9155bbabdb061b2b769492.zip |
GUI threads do now take active/inactive state
-rw-r--r-- | gui.c | 53 | ||||
-rw-r--r-- | gui.h | 9 |
2 files changed, 37 insertions, 25 deletions
@@ -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); @@ -6,7 +6,8 @@ struct button_t { uint16_t y0; uint16_t x1; uint16_t y1; - uint32_t *state; + uint8_t *state; + uint8_t *active; uint16_t interval; }; @@ -21,9 +22,11 @@ struct bar_t { uint16_t valueColor; uint16_t interval; uint8_t *percent; + uint8_t *active; }; enum {horizontal, vertical}; +enum {inactive, active}; #ifdef __cplusplus extern "C" { @@ -53,7 +56,7 @@ void guiInit(uint16_t updateIntervl); * * return: pointer to created thread */ -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 inverval, 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 inverval, uint8_t *active, uint8_t *state); /* * Description: draws a bar graph and updates it's value @@ -69,7 +72,7 @@ Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsign * * return : pointer to created thread */ -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); #ifdef __cplusplus } |