Questions tagged [qwizard]

This tag should be used for questions about the QWizard class of the Qt library. This class is also present in the PyQt bindings for Qt.

QWizard is a class in the Qt C++ library to provide a simple framework for creating GUI wizards.

48 questions
0
votes
0 answers

Can't get access to wizard buttons from page

I want to disable "Back" button on the wizard page: void myPage::initializePage( void ) { // ... wizard()->button( QWizard::BackButton )->setDisabled( true ); } But the button stays active. Why?
kaa
  • 1,265
  • 5
  • 22
  • 39
-1
votes
1 answer

Unit testing QWizard with QtTest

I am writing unit test cases for my QT application which contains a QWizard. I am using QtTest framework. But I am not able to get the Next button clicked on my wizard…
-1
votes
1 answer

How to add QFrame or QWidget as QWizardPage on QWidzard

I tried adding a frame/widget subclass on QWizard subclass but a wizard page is blank. I added QMainWindow subclass and it works fine. QuickSetupWizard::QuickSetupWizard(QWidget *parent) : QWizard(parent), ui(new Ui::QuickSetupWizard) { …
V. Purbia
  • 57
  • 5
1 2 3
4