vote up 0 vote down star

Is it possible to completely hide handles from QSplitter widget? I've tried to hide() them but it doesn't work — handles are still on the screen and isVisible() reporting false.

QSplitter::setHandleWidth doesn't work as expected — it doesn't hide handles when calling it with 0.

flag

63% accept rate

2 Answers

vote up 0 vote down

How bout subclassing QSplitter and overriding paintEvent(QPaintEvent*) to block actual painting of the widget?

link|flag
It looks like QSplitter subclassing is the only method. – Sergei Stolyarov Sep 8 at 8:42
vote up 0 vote down

The inability to set a zero-width handle seems odd and might be considered a bug - but then again why would you want to? You won't be able to grab a zero-width handle so it seems to be that you really want to use a vertical/horizontal layout.

link|flag
I want to “lock” layout, like locking toolbars feature in many apps. – Sergei Stolyarov Sep 6 at 14:50
1  
Try; handle->splitter(num)->setEnabled(false) – Henrik Hartz Sep 7 at 7:55
I've tried it, it disables handles but no hides them unfortunately. – Sergei Stolyarov Sep 7 at 8:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.