Hello all,
As the name of the topic,
I am trying to place a widget beyond the scope of it's parent
Let's assume we create one Container Widget w_con on display, with size Width 20, Height 10
and then create TWO Image Widget, w_img_a and w_img_b as the children of the w_con, with size Width 20, Height 10,
w_img_a with the position (-10, 0), w_img_b with the position (10, 0)
By that way, I want to display only right half of the w_img_a and left half of the w_img_b.
But because of the Windows Manager, w_img_a and w_img_b will always be changed on position (0, 0)
no matter in the gfxconf.h, I place GWIN_NEED_WINDOWMANAGER or not.
So does anyone know how I can manage to do it?
Do I really need to write my own WindowsManager to make it?