new UI is functional but may need some minor bugfixes
This commit is contained in:
@@ -61,10 +61,9 @@ public:
|
||||
void GetQuery(void);
|
||||
void LoadFile(QString fileName);
|
||||
|
||||
void EraseDevice(void);
|
||||
void BlankCheckDevice(void);
|
||||
void WriteDevice(void);
|
||||
void VerifyDevice(void);
|
||||
Comm::ErrorCode EraseDevice(void);
|
||||
Comm::ErrorCode WriteDevice(void);
|
||||
Comm::ErrorCode VerifyDevice(void);
|
||||
|
||||
void setBootloadBusy(bool busy);
|
||||
|
||||
@@ -73,6 +72,8 @@ signals:
|
||||
void IoWithDeviceStarted(QString msg);
|
||||
void AppendString(QString msg);
|
||||
void SetProgressBar(int newValue);
|
||||
void IoWithDeviceStateChanged(QString msg);
|
||||
void UserMustResetPrompt();
|
||||
|
||||
public slots:
|
||||
void Connection(void);
|
||||
@@ -81,6 +82,8 @@ public slots:
|
||||
void IoWithDeviceStart(QString msg);
|
||||
void AppendStringToTextbox(QString msg);
|
||||
void UpdateProgressBar(int newValue);
|
||||
void IoWithDeviceStateChange(QString msg);
|
||||
void PromptUserToReset();
|
||||
|
||||
protected:
|
||||
Comm* comm;
|
||||
@@ -95,8 +98,6 @@ protected:
|
||||
|
||||
bool writeFlash;
|
||||
bool writeEeprom;
|
||||
bool writeConfig;
|
||||
bool eraseDuringWrite;
|
||||
bool hexOpen;
|
||||
|
||||
void setBootloadEnabled(bool enable);
|
||||
@@ -113,16 +114,9 @@ private:
|
||||
|
||||
|
||||
private slots:
|
||||
void on_actionBlank_Check_triggered();
|
||||
void on_actionReset_Device_triggered();
|
||||
void on_action_Settings_triggered();
|
||||
void on_action_Verify_Device_triggered();
|
||||
void on_action_About_triggered();
|
||||
void on_actionWrite_Device_triggered();
|
||||
void on_btnFwBrowse_clicked();
|
||||
void on_actionErase_Device_triggered();
|
||||
|
||||
void on_checkBoxAdvancedMode_stateChanged(int state);
|
||||
void on_btnResetDevice_clicked();
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
||||
|
||||
Reference in New Issue
Block a user