Questions tagged [qwizardpage]

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

QWizardPage is a class in the Qt C++ library. It represents the individual pages of a QWizard and is the base class for wizard pages.

29 questions
0
votes
0 answers

how I can change size at Title and subTitle of the QWizardPage?

For example in reference to the ClassPage1 I would change the self.setTitle("Choices") and self.setSubTitle("Choose 1") the font and the size of the characters. I don't know how it can be done. Some advice. Thank you from PySide2 import…
0
votes
0 answers

QWizard initializePage is not called

As It's described in the docs initializePage should be called when the Wizard is started. However in my code initializePage is not being called. I notice that validatePage() is also not called, so I must be making a mistake. Someone spots the…
a34life
  • 1
  • 3
0
votes
1 answer

Unable to access wizard() of wizardpage

I'm trying to create a very simple QWizard (actually as part of the process to create a min reproducible example for a different error). What I want to be able to do is to access the QWizardPage's parent, i.e. using the .wizard() call. Here is the…
peetysmith
  • 157
  • 1
  • 10
0
votes
1 answer

QWizardPage designed in Qt Creater can not set geometry correctly when title is set

I am trying to design QWizardPage using Qt Creater. Everything goes fine if I don't set the title of the wizardpage. However, when I set the title, the wizard I got is strange. The title takes a large space and the wizard page can not be shown…
hellohawaii
  • 3,074
  • 6
  • 21
0
votes
1 answer

Update information on QWizardPage based on information from other pages when IndependentPages option is used

I want to build a QWizard that takes information in some initial pages, then summarizes this info on the final page. The user should be able to navigate back and update values on initial pages, without losing information. Thus I am using the…
0
votes
1 answer

How to make widget that would be displayed on all QWizardPages without dublicate it in every Page?

Qt5. I have the main class class StartupWizard : public QWizard and QWizardPages like these: class IntroPage : public QWizardPage It begins with set pages: setPage(Page_Intro, m_introPage); setPage(Page_UserData, m_fcsPage); for (int i =…
user10609288
0
votes
1 answer

How to properly initialize a QWizard page?

I am having problems with sending data from one QWizard page to the next. I'm using a variable my_name of QWizard object as a container. My approach is: whenever I change text of QLineEdit on Page1, the variable my_name of my QWizard object changes.…
0
votes
1 answer

How to connect PYQT Qwizard next button to a method

Im trying to build an app and to have a wizard with it. i have created the GUI with pyqt5 and used the Qwizard libary for the wizard. im trying to connect a method from a qwizard page to the Next button but cant seem to find a way. I wish to connect…
Udi
  • 67
  • 8
0
votes
1 answer

After QPushButton clicked execute some code and when finished automatically go to next QWizardPage

I have a wizard with three pages. First page is BasicSettings(), second page is InstallPackages() and the last page (finish) is Summary(). BasicSettings() is for creating a virtual environment. If the 'Install and update Pip' checkbox is left…
Joey
  • 1,436
  • 2
  • 19
  • 33
0
votes
1 answer

Skip the next QWizardPage depending on QCheckBox.isChecked() from the page before

I'm working on a Wizard for installing downloaded packages. At a particular point I want to skip the next QWizardPage, depending whether a checkbox on the page before is checked or not. The page I want to skip is the InstallPackages class and the…
Joey
  • 1,436
  • 2
  • 19
  • 33
0
votes
1 answer

Set button width for QWizard pages

How can I adjust the button width (back, next buttons) of a QWizard. Is there any style sheet (qss) option I can use, or do I have to identify the buttons and set the widget width? The stylesheet approach would be best.
Horst Walter
  • 13,663
  • 32
  • 126
  • 228
0
votes
1 answer

PyQT trouble passing filenames across QWizardPage

I am trying to have the user upload a file to the application on one QWizardPage, and then be able to re-use that same file path on another QWizardPage. However, from my code class ExecutePage(QtWidgets.QWizardPage): def…
kashmoney
  • 412
  • 1
  • 5
  • 17
0
votes
1 answer

Show messagebox after page load pyqt5

I have a PyQt5 Wizard and on the second page I want the behavior to change based on previous content. I have implemented initializePage def initializePage(self): if self.altThing: self.onloadbtn.show() # .. do Something …
johnashu
  • 2,167
  • 4
  • 19
  • 44
-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