From 7401ade97dbfcb851e9155bbabdb061b2b769492 Mon Sep 17 00:00:00 2001 From: Tectu Date: Mon, 25 Jun 2012 10:40:05 +0200 Subject: GUI threads do now take active/inactive state --- gui.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index d0ec128a..edacf72f 100644 --- a/gui.h +++ b/gui.h @@ -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 } -- cgit v1.2.3 From 4bd671ed2e2a9aaf05f0d4b415c30d3358d58e9d Mon Sep 17 00:00:00 2001 From: Tectu Date: Mon, 25 Jun 2012 10:44:13 +0200 Subject: documentation --- gui.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gui.h') diff --git a/gui.h b/gui.h index edacf72f..4e1e27e0 100644 --- a/gui.h +++ b/gui.h @@ -52,6 +52,7 @@ void guiInit(uint16_t updateIntervl); * - fontColor: color of string * - buttonColor: color of button * - interval: interval in ms which updates state + * - active: pointer to uint8_t. 1 = thread active, 0 = thread inactive * - state: pointer to variable which keeps state (1 = pressed, 0 = unpressed) * * return: pointer to created thread @@ -68,6 +69,7 @@ Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsign * - bkColor: color of piece inside bar with is not set * - valueColor: color of value that will be drawn into bar * - interval: interval in ms which updates percentage + * - active: pointer to uint8_t. 1 = thread active, 0 = thread inactive * - percent: pointer value from 0 to 100 percent * * return : pointer to created thread -- cgit v1.2.3 From f2cb8a0c5310430a88c3392f8f7b8048da97dbc5 Mon Sep 17 00:00:00 2001 From: Tectu Date: Mon, 25 Jun 2012 10:51:57 +0200 Subject: compiler warnings --- gui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 4e1e27e0..66200c7a 100644 --- a/gui.h +++ b/gui.h @@ -57,7 +57,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 *active, uint8_t *state); +Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, 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 -- cgit v1.2.3 From 192282d6aff3a7fbe7c73e7c181d62955586bbce Mon Sep 17 00:00:00 2001 From: Tectu Date: Mon, 25 Jun 2012 10:52:52 +0200 Subject: guiInit() returns pointer to created thread --- gui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 66200c7a..d56ca6e7 100644 --- a/gui.h +++ b/gui.h @@ -39,9 +39,9 @@ extern "C" { * param: * - updateInterval: update interval in milliseconds until next coordinates read-out * - * return: none + * return: pointer to created thread */ -void guiInit(uint16_t updateIntervl); +Thread *guiInit(uint16_t updateIntervl); /* * Description: draws button and creates thread which keeps pressed/unpressed state up-to-date -- cgit v1.2.3 From 588429506c668281354523fec3a7f9009901bf1f Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 12:47:25 +0200 Subject: implemented linkedlist --- gui.h | 75 ++++++++++++------------------------------------------------------- 1 file changed, 13 insertions(+), 62 deletions(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index d56ca6e7..d9faa6fd 100644 --- a/gui.h +++ b/gui.h @@ -1,84 +1,35 @@ #ifndef GUI_H #define GUI_H -struct button_t { - uint16_t x0; - uint16_t y0; - uint16_t x1; - uint16_t y1; - uint8_t *state; - uint8_t *active; - uint16_t interval; -}; +#include "ch.h" +#include "hal.h" +#include "glcd.h" +#include "touchpad.h" -struct bar_t { +static struct guiNode_t { 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 *percent; uint8_t *active; + uint8_t *state; + char *name; + struct guiNode_t *next; }; -enum {horizontal, vertical}; -enum {inactive, active}; - #ifdef __cplusplus extern "C" { #endif +enum {horizontal, vertical}; +enum {inactive, active}; -/* - * Description: starts main GUI thread which keeps X and Y coordinates of touchpad updated for guiDraw() threads - * - * param: - * - updateInterval: update interval in milliseconds until next coordinates read-out - * - * return: pointer to created thread - */ -Thread *guiInit(uint16_t updateIntervl); - -/* - * Description: draws button and creates thread which keeps pressed/unpressed state up-to-date - * - * param: - * - x0, y0, x1, y1: coordinates where button gets drawn - * - str: string written centered into button - * - fontColor: color of string - * - buttonColor: color of button - * - interval: interval in ms which updates state - * - active: pointer to uint8_t. 1 = thread active, 0 = thread inactive - * - state: pointer to variable which keeps state (1 = pressed, 0 = unpressed) - * - * return: pointer to created thread - */ -Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, 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 - * - * param: - * - x0, y0, x1, y1: coordinates where bar graph gets drawn - * - orientation: horizontal or vertical - * - frameColor: color of the frame - * - bkColor: color of piece inside bar with is not set - * - valueColor: color of value that will be drawn into bar - * - interval: interval in ms which updates percentage - * - active: pointer to uint8_t. 1 = thread active, 0 = thread inactive - * - percent: pointer value from 0 to 100 percent - * - * 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, uint8_t *active, uint16_t *percent); +Thread *guiInit(uint16_t interval); +void printNode(BaseSequentialStream *chp); +uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *active, uint8_t *state); #ifdef __cplusplus } #endif #endif - -- cgit v1.2.3 From bbfc18bc27cac2abc276fe526ad7c8734515f946 Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 13:44:10 +0200 Subject: fixed active/inactive state of GUI elements --- gui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index d9faa6fd..4a6f741f 100644 --- a/gui.h +++ b/gui.h @@ -25,7 +25,7 @@ enum {horizontal, vertical}; enum {inactive, active}; Thread *guiInit(uint16_t interval); -void printNode(BaseSequentialStream *chp); +void guiPrintNode(BaseSequentialStream *chp); uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *active, uint8_t *state); #ifdef __cplusplus -- cgit v1.2.3 From bef27b666391547b56768b2c126a39ec2baf28d6 Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 13:50:12 +0200 Subject: guiInit() priority parameter --- gui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 4a6f741f..44c640a6 100644 --- a/gui.h +++ b/gui.h @@ -24,7 +24,7 @@ extern "C" { enum {horizontal, vertical}; enum {inactive, active}; -Thread *guiInit(uint16_t interval); +Thread *guiInit(uint16_t interval, tprio_t priority); void guiPrintNode(BaseSequentialStream *chp); uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *active, uint8_t *state); -- cgit v1.2.3 From 6743cde23dc39204f972af24cde93806630bfaa2 Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 13:57:00 +0200 Subject: gui doc --- gui.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 44c640a6..54031295 100644 --- a/gui.h +++ b/gui.h @@ -24,8 +24,37 @@ extern "C" { enum {horizontal, vertical}; enum {inactive, active}; +/* + * Description: creates the GUI thread + * + * param: - interval: thread sleep in milliseconds after each GUI element update + * - priority: priority of the thread + * + * return: pointer to created thread + */ Thread *guiInit(uint16_t interval, tprio_t priority); + +/* + * Description: prints all GUI elements structs (linked list) + * + * param: - chp: pointer to output stream + * + * return: none + */ void guiPrintNode(BaseSequentialStream *chp); + +/* + * Description: draws a button on the screen and keeps it's state up to date + * + * param: - x0, y0, x1, y1: start and end coordinates of the button's rectangle + * - str: string that gets drawn into the rectangle - button's lable + * - fontColor: color of the lable + * - buttonColor: color of the rectangle + * - active: pass pointer to variable which holds the state 'active' or 'inactive' + * - state: pass pointer to variable whcih will keep the state of the button (pressed / unpressed)' + * + * return: 1 if button successfully created + */ uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *active, uint8_t *state); #ifdef __cplusplus -- cgit v1.2.3 From cc7943305eab42fd6f687a4dda1f19857ae0efb7 Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 20:47:35 +0200 Subject: added type of GUI element --- gui.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 54031295..a95e9d36 100644 --- a/gui.h +++ b/gui.h @@ -7,6 +7,7 @@ #include "touchpad.h" static struct guiNode_t { + uint8_t type; uint16_t x0; uint16_t y0; uint16_t x1; @@ -21,6 +22,7 @@ static struct guiNode_t { extern "C" { #endif +enum {button}; enum {horizontal, vertical}; enum {inactive, active}; -- cgit v1.2.3 From f4917beb6a491ed061e1daa3d41ce913be1e6acd Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 21:17:50 +0200 Subject: added different GUI elements --- gui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index a95e9d36..05e4c383 100644 --- a/gui.h +++ b/gui.h @@ -22,7 +22,7 @@ static struct guiNode_t { extern "C" { #endif -enum {button}; +enum {button, slider, keymatrix}; enum {horizontal, vertical}; enum {inactive, active}; -- cgit v1.2.3 From a1cc224472060b08e18a6f17e94852d8a461ccf9 Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 21:43:21 +0200 Subject: added wheel as GUI type --- gui.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 05e4c383..9d1842da 100644 --- a/gui.h +++ b/gui.h @@ -12,6 +12,7 @@ static struct guiNode_t { uint16_t y0; uint16_t x1; uint16_t y1; + uint8_t orientation; uint8_t *active; uint8_t *state; char *name; @@ -22,7 +23,7 @@ static struct guiNode_t { extern "C" { #endif -enum {button, slider, keymatrix}; +enum {button, slider, wheel, keymatrix}; enum {horizontal, vertical}; enum {inactive, active}; @@ -59,6 +60,8 @@ void guiPrintNode(BaseSequentialStream *chp); */ uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *active, uint8_t *state); +uint8_t guiDrawSlider(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, uint8_t *active, uint8_t *value); + #ifdef __cplusplus } #endif -- cgit v1.2.3 From 191dbc088a36bca40d740f3e0e1ac17373be2b4e Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 21:48:12 +0200 Subject: added guiDrawWheel() dummy --- gui.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 9d1842da..54f93d27 100644 --- a/gui.h +++ b/gui.h @@ -12,6 +12,8 @@ static struct guiNode_t { uint16_t y0; uint16_t x1; uint16_t y1; + uint16_t r1; + uint16_t r2; uint8_t orientation; uint8_t *active; uint8_t *state; -- cgit v1.2.3 From 3d041a9d4b8c6592468b4b6e7dca29b4e243d795 Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 22:20:55 +0200 Subject: guiDrawSlider() frame drawing --- gui.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 54f93d27..5e08ac00 100644 --- a/gui.h +++ b/gui.h @@ -60,9 +60,11 @@ void guiPrintNode(BaseSequentialStream *chp); * * return: 1 if button successfully created */ -uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *active, uint8_t *state); +uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, char *name, uint8_t *active, uint8_t *state); -uint8_t guiDrawSlider(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, uint8_t *active, uint8_t *value); +uint8_t guiDrawSlider(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, char *name, uint8_t *active, uint8_t *value); + +uint8_t guiDrawWheel(uint16_t x0, uint16_t y0, uint16_t radius1, uint16_t radius2, uint16_t bkColor, uint16_t valueColor, char *name, uint8_t *active, uint8_t *value); #ifdef __cplusplus } -- cgit v1.2.3 From db7d8d0aeacc61e1fe75072b802e5f8790591181 Mon Sep 17 00:00:00 2001 From: Tectu Date: Wed, 27 Jun 2012 10:10:45 +0200 Subject: added guiDeleteElement --- gui.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 5e08ac00..18251291 100644 --- a/gui.h +++ b/gui.h @@ -48,6 +48,14 @@ Thread *guiInit(uint16_t interval, tprio_t priority); */ void guiPrintNode(BaseSequentialStream *chp); +/* + * Description: deletes a GUI element from the linked list + * + * param: - name: name of the element (parameter of each guiDrawXXX function) + * + * return: 1 if successful, 0 otherwise + */ +uint8_t guiDeleteElement(char *name); /* * Description: draws a button on the screen and keeps it's state up to date * -- cgit v1.2.3 From 488cf397922d42b59c88c0a028eca8c26c4e6293 Mon Sep 17 00:00:00 2001 From: Tectu Date: Wed, 27 Jun 2012 10:11:42 +0200 Subject: some name changes --- gui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 18251291..934c2bee 100644 --- a/gui.h +++ b/gui.h @@ -46,7 +46,7 @@ Thread *guiInit(uint16_t interval, tprio_t priority); * * return: none */ -void guiPrintNode(BaseSequentialStream *chp); +void guiPrintElements(BaseSequentialStream *chp); /* * Description: deletes a GUI element from the linked list -- cgit v1.2.3 From 57a68c85d50451789450c57720d6d4a25e9f31a2 Mon Sep 17 00:00:00 2001 From: Tectu Date: Wed, 27 Jun 2012 10:23:42 +0200 Subject: name -> label --- gui.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 934c2bee..61dead64 100644 --- a/gui.h +++ b/gui.h @@ -17,7 +17,7 @@ static struct guiNode_t { uint8_t orientation; uint8_t *active; uint8_t *state; - char *name; + char *label; struct guiNode_t *next; }; @@ -51,11 +51,11 @@ void guiPrintElements(BaseSequentialStream *chp); /* * Description: deletes a GUI element from the linked list * - * param: - name: name of the element (parameter of each guiDrawXXX function) + * param: - label: label of the element (parameter of each guiDrawXXX function) * * return: 1 if successful, 0 otherwise */ -uint8_t guiDeleteElement(char *name); +uint8_t guiDeleteElement(char *label); /* * Description: draws a button on the screen and keeps it's state up to date * @@ -68,11 +68,11 @@ uint8_t guiDeleteElement(char *name); * * return: 1 if button successfully created */ -uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, char *name, uint8_t *active, uint8_t *state); +uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, char *label, uint8_t *active, uint8_t *state); -uint8_t guiDrawSlider(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, char *name, uint8_t *active, uint8_t *value); +uint8_t guiDrawSlider(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, char *label, uint8_t *active, uint8_t *value); -uint8_t guiDrawWheel(uint16_t x0, uint16_t y0, uint16_t radius1, uint16_t radius2, uint16_t bkColor, uint16_t valueColor, char *name, uint8_t *active, uint8_t *value); +uint8_t guiDrawWheel(uint16_t x0, uint16_t y0, uint16_t radius1, uint16_t radius2, uint16_t bkColor, uint16_t valueColor, char *label, uint8_t *active, uint8_t *value); #ifdef __cplusplus } -- cgit v1.2.3 From 2c95af7413e3d97e3683876a8e201e4a408f5f2b Mon Sep 17 00:00:00 2001 From: Tectu Date: Wed, 27 Jun 2012 11:12:45 +0200 Subject: added shadow support for buttons --- gui.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gui.h') diff --git a/gui.h b/gui.h index 61dead64..513043aa 100644 --- a/gui.h +++ b/gui.h @@ -63,12 +63,13 @@ uint8_t guiDeleteElement(char *label); * - str: string that gets drawn into the rectangle - button's lable * - fontColor: color of the lable * - buttonColor: color of the rectangle + * - shadow: draws a black shadow with N pixels size if != 0 * - active: pass pointer to variable which holds the state 'active' or 'inactive' * - state: pass pointer to variable whcih will keep the state of the button (pressed / unpressed)' * * return: 1 if button successfully created */ -uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, char *label, uint8_t *active, uint8_t *state); +uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t shadow, char *label, uint8_t *active, uint8_t *state); uint8_t guiDrawSlider(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, char *label, uint8_t *active, uint8_t *value); -- cgit v1.2.3