diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-07-11 03:58:45 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-07-11 03:58:45 +0200 |
commit | 86aa553093084f9c2f04a5fb3d744b56b656ea3a (patch) | |
tree | ca2a6c735f1807956a1e4f4ae0826cdde120f668 /code/fe310/eos/eve/screen/form.h | |
parent | d8ced7b070beaa010f557c4c244c5c386d4e6efd (diff) |
screen/window/kbd window implemented; str widget tested
Diffstat (limited to 'code/fe310/eos/eve/screen/form.h')
-rw-r--r-- | code/fe310/eos/eve/screen/form.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/fe310/eos/eve/screen/form.h b/code/fe310/eos/eve/screen/form.h index 006ef2e..7742b8c 100644 --- a/code/fe310/eos/eve/screen/form.h +++ b/code/fe310/eos/eve/screen/form.h @@ -8,7 +8,7 @@ typedef struct EVEForm { uint16_t widget_size; } EVEForm; -int eve_form_init(EVEForm *form, struct EVEWidget *widget, uint16_t widget_size, eve_page_open_t open, eve_page_close_t close, EVEWindow *window); +int eve_form_init(EVEForm *form, EVEWindow *window, struct EVEWidget *widget, uint16_t widget_size, eve_page_open_t open, eve_page_close_t close); int eve_form_touch(EVEView *v, uint8_t tag0, int touch_idx); uint8_t eve_form_draw(EVEView *v, uint8_t tag0); void eve_form_handle_evt(EVEPage *page, struct EVEWidget *widget, EVETouch *touch, uint16_t evt, uint8_t tag0, int touch_idx); |