mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-14 08:45:36 +08:00
refs #886, added skip button (custom button) in config wizard
This commit is contained in:
committed by
Mathew Sutcliffe
parent
80b127bce8
commit
1b56f498a9
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user