diff options
Diffstat (limited to 'code/fe310/eos/eve/screen/form.h')
-rw-r--r-- | code/fe310/eos/eve/screen/form.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/code/fe310/eos/eve/screen/form.h b/code/fe310/eos/eve/screen/form.h new file mode 100644 index 0000000..3edafe8 --- /dev/null +++ b/code/fe310/eos/eve/screen/form.h @@ -0,0 +1,14 @@ +#include <stdint.h> + +struct EVEWidget; + +typedef struct EVEForm { + EVEPage p; + struct EVEWidget *widget_f; + struct EVEWidget *widget; + uint16_t widget_size; +} EVEForm; + +int eve_form_init(EVEForm *form, EVETile *tile, eve_page_open_t open, eve_page_close_t close, struct EVEWidget *widget, uint16_t widget_size); +int eve_form_touch(EVECanvas *c, uint8_t tag0, int touch_idx); +uint8_t eve_form_draw(EVECanvas *c, uint8_t tag0); |