diff options
author | Tectu <joel@unormal.org> | 2012-06-27 10:10:45 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-27 10:10:45 +0200 |
commit | db7d8d0aeacc61e1fe75072b802e5f8790591181 (patch) | |
tree | 431e0644433bda03d8a931d5ed86db5833ce095d /gui.h | |
parent | 3d041a9d4b8c6592468b4b6e7dca29b4e243d795 (diff) | |
download | uGFX-db7d8d0aeacc61e1fe75072b802e5f8790591181.tar.gz uGFX-db7d8d0aeacc61e1fe75072b802e5f8790591181.tar.bz2 uGFX-db7d8d0aeacc61e1fe75072b802e5f8790591181.zip |
added guiDeleteElement
Diffstat (limited to 'gui.h')
-rw-r--r-- | gui.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -49,6 +49,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 * * param: - x0, y0, x1, y1: start and end coordinates of the button's rectangle |