Papipone
Papipone

Reputation: 1123

Qt5 QMainWindow components deletion

One of our teacher asked us to create a Qt application without any UI file for the main window (a QMainWindow). Usually I always create one, leave it empty and let the uic deal with it.

I know that if a parental relation is defined between a widget (child) and its parent, then there is no need to delete the widget (deleted when the parent is deleted). So, when the UI is deleted, all the children are destroyed.

If we do not use an UI file (not generated), do we have to manually delete all the widget added to the GUI?

A little sample:

MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent){
     layout = new QHBoxLayout(this);
     aButton = new QButton(this);
     layout->addWidget(aButton);
     ...
}

MainWindow::~MainWindow(){
    delete ui; // No need to delete more if parental relation.
    // However, what do we do if no ui has been generated?
    // Do we have to delete aButton?
}

The value of parent is 0. It is the main entry of the application.

Thanks

Upvotes: 1

Views: 688

Answers (1)

Evgeny
Evgeny

Reputation: 4010

Please refer to this article

QWidget, the fundamental class of the Qt Widgets module, extends the parent-child relationship. A child normally also becomes a child widget, i.e. it is displayed in its parent's coordinate system and is graphically clipped by its parent's boundaries. For example, when the application deletes a message box after it has been closed, the message box's buttons and label are also deleted, just as we'd want, because the buttons and label are children of the message box.

So, there is no difference do you use ui or not. When you delete window, all its children will be deleted too.

Upvotes: 3

Related Questions