I'm making a simple Qt application. It has 4 screens/pages:
- Start import
- Select folder to import images to
- Accept or reject each image in folder, and when no images left:
- "No images left" and an OK button.
I can't figure out the best way to implement this. I started off with a QWidget, but this quickly got unmanageable.
Is a QWizard too constrained?
EDIT: Part of the problem with QWizard is it seems to always have "Back" and "Next" buttons. I don't want those as options in this program, so this leads me to believe that a wizard isn't exactly what I'm after.