Hi!
I started testing GUI Guider version 2, and I found a couple of issues (starting with an empty template, Windows simulator).
I started defining the content of the top layer putting an image button, creating an event handler to switch state when the button is long pressed.
The generated the code has some errors, like:
gg_event_layer_top.c:
static void lv_layer_top()_event_handler(lv_event_t * e) {
...
}
(parenthesis create a parsing error)
Manually removing the parenthesis, the error below is generated:
.../generated/events/gg_event_layer_top.c:59:38: error: 'gg_layer_top_t' has no member named 'lv_layer_top'
(gg_layer_top_t definition doesn't include that member)
Am I missing some definition to make a correct generation of those functions?