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
3
votes
1 answer

How to load a Qt Designer file (.ui) in a QWizardPage using PySide2

I want to design my QWizardPages in Qt Designer and I want to load them into my Python program with PySide2. Previously I have been using PyQt5 without any problems but making the switch to PySide2 seems harder then expected. The problem I am facing…
Enzo
  • 81
  • 7
3
votes
1 answer

How to remove the horizontal line in a QWizard with a stylesheet?

I am working on stylesheet of a QWizard and I would like to remove the horizontal line just above the push button. I've already posted a minimal example here, the question was solved by scopchanov from the minimal example, but I have some lines of…
matt
  • 384
  • 2
  • 11
3
votes
1 answer

How to make links in a QWizard's subtitle clickable?

I am constructing a little wizard following Qt's classwizard example. Now I set the subTitle of my QWizard instance to some html text that includes a link. I know about QLabel.setOpenExternalLinks(True) but how do I achieve the same effect with a…
andreb
  • 596
  • 3
  • 16
2
votes
1 answer

QSpinbox in QWizardPage gets initial focus even if its focus-policy is set to NoFocus

I create a QSpinBox in a QWizardPage. It get focus at the start of the wizardpage even when I set the focusPolicy to Qt.Nofocus. What I set in Qt creator is: But When the wizardpage start, I got: Then, if I press Tab for several times, the focus…
hellohawaii
  • 3,074
  • 6
  • 21
2
votes
2 answers

QWizard: Change height/dimensions of title field

I'm currently trying to implement a simple "First steps" Wizard for a Python/Qt application I'm working on. This is really easy to do with Designer, but as usual the devil lies in the details. My problem is that the 'Title' field is way too big for…
jbaiter
  • 6,913
  • 4
  • 30
  • 40
2
votes
1 answer

How can I go to a specific QWizard page number?

Qt 5, QWizard Hello! I have checked some answers on that subject but still can't quite figure that out. Here is the idea that I want to do: I want to create a button group navigate between QWizard pages. For example, at the top of my QWizard I…
user10609288
2
votes
1 answer

How can i disable the next button PyQt5 QWizard if a condition is not respected?

I have to do a GUI for a script running on terminal to modify the login Background on Ubuntu, i decided to use PyQt5 QWizard to do it and in the firs page i have to disable the next button if the distro used is not compatible. I can't find the way…
cedrata
  • 29
  • 7
2
votes
2 answers

QWizard: delete history of visited pages

I'm working on a project that basically follows a pre-defined structure, like a state machine or a wizard. I stumbled upon QWizard, its nextId() function seemed to be a good way to make my wizard dyamically load further pages. Now, it would be very…
DaClown
  • 4,171
  • 6
  • 31
  • 31
2
votes
1 answer

How can I customize the title of a QWizard in PyQt5?

I'm designing an assistant for charging csv files in a project with other widgets. I've almost finished the assistant, subclassing QWizard and QWizardPage, but I'm stuck in customizing the aspect of the title and the subtitle, as it have to be…
2
votes
1 answer

pyqt wizard add page on end of wizard (setFinishButtonEarly)

im looking for resource to see some method in pyqt4 . I have a finalPage that get the argument from the class wizard and want to show some result based on that argument ,and the finish button should be in the last of the class wizard and the…
baha joher
  • 84
  • 8
2
votes
2 answers

PyQt working with wizard and radio button

I made this wizard containing a radio button. When it is clicked, the finish button should return a list of radio buttons that were checked as text! The input (it's virtual input for readability) data=[['a','b','c'],['e','f'],['g','f']] data1 =…
baha joher
  • 84
  • 8
2
votes
1 answer

How to remove the horizontal line in a QWizard?

I am working on stylesheet of a QWizard and I would like to remove the horizontal line just above the push buttons: I have tried to recursively browse all the widgets and set their border to none, but no widget seems to have this border. Here is my…
matt
  • 384
  • 2
  • 11
2
votes
1 answer

Center resized Qwizard page

I have a Qwizard with 2 pages. When the wizard is opened, it is centered in the middle of the screen. The first page is smaller than the second page. When next is clicked and the second page is displayed, it adds the extra items to the bottom of the…
johnashu
  • 2,167
  • 4
  • 19
  • 44
2
votes
1 answer

QWizardPage: how to re-disable "Next" button

I have a QWizardPage where user is supposed to go through certain steps, at the end of which there is a button "Test". If user presses that button, two things happen: "Next" button gets enabled in order to go to the next page of the QWizard. This…
vicrucann
  • 1,703
  • 1
  • 24
  • 34
2
votes
1 answer

How to connect signal after the display of a page in PyQt wizard.?

I have created a Wizard in PyQt4 using Qt Designer. On one page of the wizard ,there exists a 'text_Browser' object of type QTextBrowser. I'm using the function QTextBrowser.append() to add text to it based on some processing. I wish to execute the…
Utkarsh.K
  • 37
  • 1
  • 7
1
2 3 4