mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Add menu entries for creating zip archives of SD cards and OSCAR data.
Also hide a few "not yet implemented" items. Actual zipping comes later.
This commit is contained in:
parent
703fe2a613
commit
99badd40c3
@ -246,6 +246,8 @@ void MainWindow::SetupGUI()
|
||||
|
||||
ui->actionChange_Data_Folder->setVisible(false);
|
||||
ui->action_Frequently_Asked_Questions->setVisible(false);
|
||||
ui->actionReport_a_Bug->setVisible(false); // remove this once we actually implement it
|
||||
ui->actionExport_Review->setVisible(false); // remove this once we actually implement it
|
||||
|
||||
#ifndef helpless
|
||||
help = new Help(this);
|
||||
@ -2561,6 +2563,39 @@ void MainWindow::on_mainsplitter_splitterMoved(int, int)
|
||||
AppSetting->setRightPanelWidth(ui->mainsplitter->sizes()[1]);
|
||||
}
|
||||
|
||||
void MainWindow::on_actionCreate_Card_zip_triggered()
|
||||
{
|
||||
// TODO: use similar workflow to SD card import to select the card(s) to archive.
|
||||
// TODO: select where to write the zip file, disallow the SD card itself
|
||||
// TODO: implement creation of .zip
|
||||
qDebug() << "Create zip of SD card";
|
||||
}
|
||||
|
||||
void MainWindow::on_actionCreate_OSCAR_Data_zip_triggered()
|
||||
{
|
||||
QString folder;
|
||||
|
||||
// Note: macOS ignores this and points to OSCAR's most recently used directory for saving.
|
||||
folder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
|
||||
|
||||
folder += QDir::separator() + STR_AppData + ".zip";
|
||||
|
||||
QString filename = QFileDialog::getSaveFileName(this, tr("Choose where to save archive"), folder, tr("ZIP files (*.zip)"));
|
||||
|
||||
if (filename.isEmpty()) {
|
||||
return; // aborted
|
||||
}
|
||||
|
||||
if (!filename.toLower().endsWith(".zip")) {
|
||||
filename += ".zip";
|
||||
}
|
||||
|
||||
qDebug() << "Create zip of OSCAR data folder:" << filename;
|
||||
// TODO: implement creation of .zip
|
||||
// TODO: write debug log to .txt file in data folder (or zip)
|
||||
// NOTE: make sure not to include .zip in itself if the user chooses to write the zip in the data folder itself!
|
||||
}
|
||||
|
||||
#include "translation.h"
|
||||
void MainWindow::on_actionReport_a_Bug_triggered()
|
||||
{
|
||||
|
@ -332,6 +332,10 @@ class MainWindow : public QMainWindow
|
||||
|
||||
void on_mainsplitter_splitterMoved(int pos, int index);
|
||||
|
||||
void on_actionCreate_Card_zip_triggered();
|
||||
|
||||
void on_actionCreate_OSCAR_Data_zip_triggered();
|
||||
|
||||
void on_actionReport_a_Bug_triggered();
|
||||
|
||||
void on_actionSystem_Information_triggered();
|
||||
|
@ -2865,8 +2865,11 @@ p, li { white-space: pre-wrap; }
|
||||
<addaction name="actionDebug"/>
|
||||
<addaction name="actionShow_Performance_Counters"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionSystem_Information"/>
|
||||
<addaction name="actionCreate_Card_zip"/>
|
||||
<addaction name="actionCreate_OSCAR_Data_zip"/>
|
||||
<addaction name="actionReport_a_Bug"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionSystem_Information"/>
|
||||
<addaction name="action_About"/>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menu_Data">
|
||||
@ -2916,7 +2919,7 @@ p, li { white-space: pre-wrap; }
|
||||
</widget>
|
||||
<action name="action_Import_Data">
|
||||
<property name="text">
|
||||
<string>&Import SDcard Data</string>
|
||||
<string>&Import CPAP Card Data</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string notr="true">Shift+F2</string>
|
||||
@ -3201,6 +3204,16 @@ p, li { white-space: pre-wrap; }
|
||||
<string>Show Performance Information</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionCreate_Card_zip">
|
||||
<property name="text">
|
||||
<string>Create archive of CPAP data card</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionCreate_OSCAR_Data_zip">
|
||||
<property name="text">
|
||||
<string>Create archive of all OSCAR data</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionExport_CSV">
|
||||
<property name="text">
|
||||
<string>CSV Export Wizard</string>
|
||||
|
Loading…
Reference in New Issue
Block a user