refs #886, added skip button (custom button) in config wizard

This commit is contained in:
Klaus Basan
2017-03-12 00:18:50 +01:00
committed by Mathew Sutcliffe
parent 80b127bce8
commit 1b56f498a9
3 changed files with 47 additions and 4 deletions

View File

@@ -43,12 +43,21 @@ namespace BlackGui
//! Destructor
virtual ~CConfigurationWizard();
//! Was the last step skipped?
bool lastStepSkipped() const;
private:
//! The current page has changed
void wizardCurrentIdChanged(int id);
//! Custom button was clicked
void clickedCustomButton(int which);
QScopedPointer<Ui::CConfigurationWizard> ui;
int m_lastId = -1;
int m_previousId = -1;
int m_minId = -1;
int m_maxId = -1;
bool m_skipped = false;
};
} // ns
} // ns