diff options
author | Tectu <joel@unormal.org> | 2012-06-26 20:47:35 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-26 20:47:35 +0200 |
commit | cc7943305eab42fd6f687a4dda1f19857ae0efb7 (patch) | |
tree | 596577f91b87323707bc557461bb1ec85ba78ac7 /gui.h | |
parent | 969377866601ce3bf1bd15de5a97b291b0f11560 (diff) | |
download | uGFX-cc7943305eab42fd6f687a4dda1f19857ae0efb7.tar.gz uGFX-cc7943305eab42fd6f687a4dda1f19857ae0efb7.tar.bz2 uGFX-cc7943305eab42fd6f687a4dda1f19857ae0efb7.zip |
added type of GUI element
Diffstat (limited to 'gui.h')
-rw-r--r-- | gui.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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}; |