Is there a way to dynamically change the Z-Order of touchGfx Widgets.
The current Z-Order of widgets is based on the order of the "Add(widget)".
I want to create a number of widgets at the same location as an existing widget, but want this widget to under other widgets.
Currently, the only way this seems possible is to modify the "xxxBase.cpp" file and add your widgets where you want them in the Z-Order.
Another way I found is to take all the widgets you want above the Z-Order of the newly created widgets, and "remove(widget)" them. Then create your widgets, and "add(widget)", then add the "remove"d widgets.
Do you have a call, which is add(widget, order). Which is maybe preceded by the call order = getWidgetZOrder(widget). Or a call, which is setWidgetZOrder(widget, order).
