Ie to disable CustomButton1 :
Qt Code:
wizard()->setOption(QWizard::HaveCustomButton1, false);To copy to clipboard, switch view to plain text mode
Ie to disable CustomButton1 :
Qt Code:
wizard()->setOption(QWizard::HaveCustomButton1, false);To copy to clipboard, switch view to plain text mode
hey,
in Qt4 there are some methods to handle the standard buttons of QWizard.
setCommitPage( true) - disables Back button
setFinalPage(true) - shows Finish Button, not Next, if isComplete returns true
implement isComplete() - to disable/enable Next or Finish Button
reimplement isFinalPage() - to show Finish Button
Read docs to do more fine things
Bye
Bookmarks