I've implemented a little slider, that contains:
- A Window "A"
- A Stencil Window "B" into "A"
- An Ribbon (HorizontalLayoutContainer) "C" into "B"
- A Bunch of Button into this HorizontalLayoutContainer
Only the first buttons of the Ribbon are visible because those out of the stencil "B" are cut by it.
I make the Ribbon "C" slide into the Stencil Window "B".
The thing is that my buttons into the Ribbon are reacting to mouse only for those that primary where in the zone of the Window "A" (which is the main parent), before the slide to start.
Indeed, it seems that all that as been created and clipped outside of my main application window, and then slide into it, is not clickable.
When I slide enough the HorizontalLayoutContainer I can't click anymore one them.
I've tried
Code: Select all
this->notifyClippingChanged();
But without success
Is it a bug? Or do I need a special call to make the buttons to refresh their Click Area after each move of my ribbon?
Thanx in advance for the help