how to code for autohide docable window like visual studio in qt
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
Re: how to create docable window in Qt
Re: how to create autohide docable window in Qt
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.