In my app have a window splitted by a QSplitter, and I need to remove an widget.
How can I do that? I can't find useful methods
|
|
|
Many things in Qt cannot be "traditionally" removed. Instead call hide() on it and destruct it. From QSplitter documentation:
|
|||
|
|
|
It's not clear to me if you want to preserve the widget and put it somewhere else, or if you want to destroy the widget.
If you want to set the parent to NULL (cjhuitt's answer) be aware that you are now responsible for cleaning up that memory because the widget no longer has a parent. |
|||||
|
|
I like Tuminoid's answer. But if you absolutely need it removed, try getting the widget you want to remove, and calling |
|||
|
|
|
If you hold a pointer to the widget, then just delete it, or use deleteLater() if you want to be on the safe side. If you do not have the widget pointer, use QSplitter::widget(int index) function. Then, you can use invoke its deleteLater() slot. If you do not have the widget index, but you still know the widget objectName(), then QObject::findChild() is your only way to get the widget pointer. |
|||
|
|
|
Another easy way to prevent the child widget from getting deleted is to use QSplitter.takeWidget(child). This is also the recommended way of removing the widget from a splitter. (Qt Documentation) |
|||||
|