mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Refactor on_action_Import_Data_triggered into multiple functions.
No change in behavior.
This commit is contained in:
parent
99badd40c3
commit
36d3467a64
@ -907,11 +907,22 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
ui->tabWidget->setCurrentWidget(welcome);
|
ui->tabWidget->setCurrentWidget(welcome);
|
||||||
QApplication::processEvents();
|
QApplication::processEvents();
|
||||||
|
|
||||||
|
QList<ImportPath> datacards = selectCPAPDataCards(tr("Would you like to import from this location?"));
|
||||||
|
if (datacards.size() > 0) {
|
||||||
|
importCPAPDataCards(datacards);
|
||||||
|
}
|
||||||
|
|
||||||
|
in_import=false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QList<ImportPath> MainWindow::selectCPAPDataCards(const QString & /*prompt*/)
|
||||||
|
{
|
||||||
QList<ImportPath> datacards = detectCPAPCards();
|
QList<ImportPath> datacards = detectCPAPCards();
|
||||||
|
|
||||||
if (importScanCancelled) {
|
if (importScanCancelled) {
|
||||||
in_import = false;
|
datacards.clear();
|
||||||
return;
|
return datacards;
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<MachineLoader *>loaders = GetLoaders(MT_CPAP);
|
QList<MachineLoader *>loaders = GetLoaders(MT_CPAP);
|
||||||
@ -948,8 +959,8 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
|
|
||||||
if (res == QMessageBox::Cancel) {
|
if (res == QMessageBox::Cancel) {
|
||||||
// Give the communal progress bar back
|
// Give the communal progress bar back
|
||||||
in_import=false;
|
datacards.clear();
|
||||||
return;
|
return datacards;
|
||||||
} else if (res == QMessageBox::No) {
|
} else if (res == QMessageBox::No) {
|
||||||
//waitmsg->setText(tr("Please wait, launching file dialog..."));
|
//waitmsg->setText(tr("Please wait, launching file dialog..."));
|
||||||
datacards.clear();
|
datacards.clear();
|
||||||
@ -972,6 +983,7 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
if (p_profile->contains(STR_PREF_LastCPAPPath)) {
|
if (p_profile->contains(STR_PREF_LastCPAPPath)) {
|
||||||
folder = (*p_profile)[STR_PREF_LastCPAPPath].toString();
|
folder = (*p_profile)[STR_PREF_LastCPAPPath].toString();
|
||||||
} else {
|
} else {
|
||||||
|
// TODO: Is a writable path really the best place to direct the user to find their SD card data?
|
||||||
folder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
|
folder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1006,9 +1018,8 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
//#endif
|
//#endif
|
||||||
|
|
||||||
if (w.exec() != QDialog::Accepted) {
|
if (w.exec() != QDialog::Accepted) {
|
||||||
in_import=false;
|
datacards.clear();
|
||||||
|
return datacards;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1022,6 +1033,12 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return datacards;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MainWindow::importCPAPDataCards(const QList<ImportPath> & datacards)
|
||||||
|
{
|
||||||
bool newdata = false;
|
bool newdata = false;
|
||||||
|
|
||||||
// QStringList goodlocations;
|
// QStringList goodlocations;
|
||||||
@ -1074,10 +1091,9 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
|
|
||||||
prog->close();
|
prog->close();
|
||||||
prog->deleteLater();
|
prog->deleteLater();
|
||||||
in_import=false;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QMenu *MainWindow::CreateMenu(QString title)
|
QMenu *MainWindow::CreateMenu(QString title)
|
||||||
{
|
{
|
||||||
QMenu *menu = new QMenu(title, ui->menubar);
|
QMenu *menu = new QMenu(title, ui->menubar);
|
||||||
|
@ -356,6 +356,8 @@ private:
|
|||||||
void importCPAPBackups();
|
void importCPAPBackups();
|
||||||
void finishCPAPImport();
|
void finishCPAPImport();
|
||||||
QList<ImportPath> detectCPAPCards();
|
QList<ImportPath> detectCPAPCards();
|
||||||
|
QList<ImportPath> selectCPAPDataCards(const QString & prompt);
|
||||||
|
void importCPAPDataCards(const QList<ImportPath> & datacards);
|
||||||
|
|
||||||
// QString getWelcomeHTML();
|
// QString getWelcomeHTML();
|
||||||
void FreeSessions();
|
void FreeSessions();
|
||||||
|
Loading…
Reference in New Issue
Block a user