Quote Originally Posted by ChrisW67 View Post
I have a QWizard and set of QWizardPages built with Designer. The pages have been promoted but that is not particularly relevant. In my page constructors:
Qt Code:
  1. #include <QFileDialog>
  2.  
  3. #include "importfilepage.h"
  4. #include "ui_importfilepage.h"
  5.  
  6. ImportFilePage::ImportFilePage(QWidget *parent) :
  7. QWizardPage(parent),
  8. m_ui(new Ui::ImportFilePage)
  9. {
  10. m_ui->setupUi(this);
  11.  
  12. // Cannot be set in Designer?
  13. setPixmap(QWizard::LogoPixmap, QPixmap(":/wizard/logo1.png"));
  14.  
  15. // Fields
  16. registerField("fileName*", m_ui->fileNameEdit);
  17. }
  18. ...
To copy to clipboard, switch view to plain text mode 
I can't get that concept to work. I can create a wizard with multiple pages but all widgets and pages are accessed from the ui object created by Qt Creator GUI application wizard. Do you have a sample that illustrates this?