1) Is there a way yet to get a signal from a LAYOUT_WeightBar like with WMHI_GADGETUP? I want to know when the user resized the panes so I can update some stuff.
2) In my layout I have a horizontal group separated by vertical LAYOUT_WeightBar for left/right sizing. I tried putting another LAYOUT_WeightBar below that group for up/down sizing. It won't move. Is this possible?
3) The weightbar for the top section will accept WeightedWidth sizes if there is 1 gadget on each side (same horizontal group). If I try to put 2 on the right side stacked, it always splits the 2 sides 50/50, even though I am giving it a WeightedWidth size. Using a group "breaks" it.
This works fine:
This does not:
It makes both sides 50/50.
-------------------------------- | | | | | | | | | <--- weightbar in center left/right | | | | | | -------------------------------- <--- weightbar up/down | | | | --------------------------------
StartHGroup, Gadget1, WeightedWidth,25, WeightBar, Gadget2, WeightedWidth,75, EndHGroup,
StartHGroup, Gadget1, WeightedWidth,25, WeightBar, StartVGroup, Gadget2, Gadget3, WeightedWidth,75, EndVGroup, EndHGroup,