|
|
@ -20,6 +20,9 @@ MainWindow::MainWindow(QWidget *parent) |
|
|
|
|
|
|
|
_usd = new UltraSoundDevice(); |
|
|
|
|
|
|
|
_dial = new WaitDialog(); |
|
|
|
_dial->setModal(true); |
|
|
|
|
|
|
|
this->setFixedSize(this->width(),this->height()); |
|
|
|
|
|
|
|
ui->prg_binUpload->setVisible(false); |
|
|
@ -50,6 +53,8 @@ MainWindow::~MainWindow() |
|
|
|
delete _settings; |
|
|
|
|
|
|
|
delete _usd; |
|
|
|
|
|
|
|
delete _dial; |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
@ -83,7 +88,12 @@ void MainWindow::on_btn_binUpload_clicked() |
|
|
|
|
|
|
|
auto path = ui->tb_binFile->text(); |
|
|
|
|
|
|
|
QtConcurrent::run(this, &MainWindow::binaryFileUploader, bar, offset, path); |
|
|
|
QFutureWatcher<void> watcher; |
|
|
|
connect(&watcher, &QFutureWatcher<void>::finished, this, &MainWindow::threadFinished); |
|
|
|
auto future = QtConcurrent::run(this, &MainWindow::binaryFileUploader, bar, offset, path); |
|
|
|
watcher.setFuture(future); |
|
|
|
_dial->exec(); |
|
|
|
disconnect(&watcher, &QFutureWatcher<void>::finished, this, &MainWindow::threadFinished); |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
@ -102,7 +112,12 @@ void MainWindow::on_btn_binVerify_clicked() |
|
|
|
|
|
|
|
auto path = ui->tb_binFile->text(); |
|
|
|
|
|
|
|
QtConcurrent::run(this, &MainWindow::binaryFileVerifier, bar, offset, path); |
|
|
|
QFutureWatcher<void> watcher; |
|
|
|
connect(&watcher, &QFutureWatcher<void>::finished, this, &MainWindow::threadFinished); |
|
|
|
auto future = QtConcurrent::run(this, &MainWindow::binaryFileVerifier, bar, offset, path); |
|
|
|
watcher.setFuture(future); |
|
|
|
_dial->exec(); |
|
|
|
disconnect(&watcher, &QFutureWatcher<void>::finished, this, &MainWindow::threadFinished); |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
@ -425,7 +440,12 @@ void MainWindow::on_btn_fpgaProgram_clicked() |
|
|
|
|
|
|
|
auto path = ui->tb_fpgaBit->text(); |
|
|
|
|
|
|
|
QtConcurrent::run(this, &MainWindow::fpgaProgrammer, bar, offset, path); |
|
|
|
QFutureWatcher<void> watcher; |
|
|
|
connect(&watcher, &QFutureWatcher<void>::finished, this, &MainWindow::threadFinished); |
|
|
|
auto future = QtConcurrent::run(this, &MainWindow::fpgaProgrammer, bar, offset, path); |
|
|
|
watcher.setFuture(future); |
|
|
|
_dial->exec(); |
|
|
|
disconnect(&watcher, &QFutureWatcher<void>::finished, this, &MainWindow::threadFinished); |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
@ -435,3 +455,8 @@ void MainWindow::newMessage(QString message) |
|
|
|
msgBox.setText(message); |
|
|
|
msgBox.exec(); |
|
|
|
} |
|
|
|
|
|
|
|
void MainWindow::threadFinished() |
|
|
|
{ |
|
|
|
_dial->close(); |
|
|
|
} |
|
|
|