I want to get the QDockArea size when the user changes its size by dragging the Splitter. Is there any signal that emits when QDockArea size changes ? I’m using Qt 3.3.6 (please don’t suggest to change the Qt version).
I want to get the QDockArea size when the user changes its size by
Share
You could:
Create a subclass of
QDockAreaand reimplement theresizeEventfunction to emit a signal or directly call into some sort of manager object.Alternatively:
How about using the manager object as an
eventFilteron yourQDockAreas and checking forQEvent::Resize?