PDA

View Full Version : how to code for autohide docable window like visual studio in qt



gauravg
31st March 2011, 13:19
hi all
how to code for autohide docable window like visual studio in Qt






thanks with regards:
gauravg

hello
how to create dockable window in Qt ,auto hide functionality like in Visual studio,
if i move my cursor on tab then dockable window should open else it should be hide

hello all
how to create tabbed dock area side by a dockable window so as to create auto hide functionality for dockable window.



thanks with regards:
gauravg

hello all
how to create tabbed dock area side by a dockable window so as to create auto hide functionality for dockable window.



thanks with regards:
gauravg

hi all
i have created docable window,but i want to create autohide functionaity to this window,pls guide me how to proceed for auto hide docable window


thanks with regards:
gauravg

aamer4yu
4th April 2011, 09:24
QDockWidget

nightghost
6th April 2011, 13:31
I assume with "autohide" you mean hiding when the widget loses its focus. You could implement your own QWidget::focusOutEvent and call QWidget::hide inside the event.