I want to have the finish button on my QWizard do something else besides exit the page. I need to connect it to a function that calls another window. In other words, I need to view and add functionality to the Finish Button of the Qwizard page. Does anyone know how to do this. Thanks
Open a new window after Finish Button has been clicked on Qwizard : Pyqt5
1.7k Views Asked by Godwin Mafireyi At
4
There are 4 best solutions below
0

https://forum.qt.io/topic/44065/how-to-catch-finish-button-pressed-signal-in-qwizard/6
I think here is answer how to catch finish button press event. I have never worked with pyqt5 but I think signal and slot is the same as in c++.
3

When Your Press on your QPushbutton You Have QWizard Object?
if yes:
use SIGNAL and SLOT!
I do not know how it looks like in Python, but c++ like this:
connect(my_button, SIGNAL(clicked(), your_qwizard_object, SLOT(your_qwizard_slot()));
1

void MainWindow::on_btnCreateWizard_clicked() {
MyWizardForm* dlg = new MyWizardForm(this);
connect(dlg, SIGNAL(_finished()), this, SLOT(slot_show_me()));
this->hide();
dlg.exec();
}
void MainWindow::slot_show_me() {
this->show();
}
void MyWizardForm::on_btnClose_Clicked() {
emit _finished();
this->reject();
}
Its mostly the same you are already used to do in PyQt. The differences are in how to find the Finish button entity. Here is a working example:
Notice how I used this command:
self.button(QtWidgets.QWizard.FinishButton)
to specifically point to the finish button. The rest is just build your own method to do whatever you need. In my example I connected todef _doSomething(self)
and launched a very simple QMessageBox.