summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/eve/screen/form.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2021-02-26 15:07:33 +0100
committerUros Majstorovic <majstor@majstor.org>2021-02-26 15:07:33 +0100
commitd14cec5a48d9d064481726af8b4d795c5f4ee039 (patch)
tree63383d3dfe745b5ef95d9472c3942c891bf29955 /fw/fe310/eos/eve/screen/form.h
parent4dea6262b57f614cabd5cf4fa96c1e3d83c45fb4 (diff)
widgets are excluded from touch events when form gesture is in progress
Diffstat (limited to 'fw/fe310/eos/eve/screen/form.h')
-rw-r--r--fw/fe310/eos/eve/screen/form.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/fw/fe310/eos/eve/screen/form.h b/fw/fe310/eos/eve/screen/form.h
index 426a655..68dfdca 100644
--- a/fw/fe310/eos/eve/screen/form.h
+++ b/fw/fe310/eos/eve/screen/form.h
@@ -11,6 +11,9 @@ typedef struct EVEForm {
struct EVEWidget *widget;
uint16_t widget_size;
eve_form_action_t action;
+ int16_t win_x0;
+ int16_t win_y0;
+ uint8_t evt_lock;
} EVEForm;
int eve_form_init(EVEForm *form, EVEWindow *window, EVEViewStack *stack, struct EVEWidget *widget, uint16_t widget_size, eve_form_action_t action, eve_form_destructor_t destructor);