diff options
author | Tectu <joel@unormal.org> | 2012-06-26 21:43:21 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-26 21:43:21 +0200 |
commit | a1cc224472060b08e18a6f17e94852d8a461ccf9 (patch) | |
tree | 0ee531e1029bad07ba3ee974172f0cc720f755b6 /gui.h | |
parent | f4917beb6a491ed061e1daa3d41ce913be1e6acd (diff) | |
download | uGFX-a1cc224472060b08e18a6f17e94852d8a461ccf9.tar.gz uGFX-a1cc224472060b08e18a6f17e94852d8a461ccf9.tar.bz2 uGFX-a1cc224472060b08e18a6f17e94852d8a461ccf9.zip |
added wheel as GUI type
Diffstat (limited to 'gui.h')
-rw-r--r-- | gui.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |