2020-01-13 23:18:14 +00:00
/* OSCAR MainWindow Implementation
2014-04-09 21:01:57 +00:00
*
2021-10-24 03:19:53 +00:00
* Copyright ( c ) 2020 - 2022 The OSCAR Team
2018-03-28 07:10:52 +00:00
* Copyright ( c ) 2011 - 2018 Mark Watkins < mark @ jedimark . net >
2014-04-09 21:01:57 +00:00
*
* This file is subject to the terms and conditions of the GNU General Public
2018-06-04 20:48:38 +00:00
* License . See the file COPYING in the main directory of the source code
* for more details . */
2011-06-26 08:30:44 +00:00
2023-02-14 02:54:23 +00:00
# define TEST_MACROS_ENABLEDoff
2023-01-23 22:54:27 +00:00
# include <test_macros.h>
2018-04-22 12:06:48 +00:00
# include <QHostInfo>
2011-06-26 08:30:44 +00:00
# include <QFileDialog>
# include <QMessageBox>
# include <QResource>
# include <QProgressBar>
2011-06-27 06:26:29 +00:00
# include <QTimer>
2023-02-12 01:50:02 +00:00
# include <QElapsedTimer>
2011-10-05 03:05:35 +00:00
# include <QSettings>
2011-11-08 15:47:54 +00:00
# include <QPixmap>
# include <QDesktopWidget>
2011-11-25 06:56:39 +00:00
# include <QListView>
2011-12-01 15:40:32 +00:00
# include <QPrinter>
2011-12-02 14:36:40 +00:00
# include <QPrintDialog>
2011-12-01 15:40:32 +00:00
# include <QPainter>
2011-12-03 05:27:57 +00:00
# include <QProcess>
2011-12-12 14:06:08 +00:00
# include <QFontMetrics>
2013-01-20 16:31:51 +00:00
# include <QTextDocument>
2013-09-09 15:56:02 +00:00
# include <QTranslator>
2014-05-11 18:31:48 +00:00
# include <QPushButton>
2014-05-25 07:07:08 +00:00
# include <QCalendarWidget>
2018-05-07 12:13:07 +00:00
# include <QDialogButtonBox>
# include <QTextBrowser>
2018-05-28 22:35:48 +00:00
# include <QStandardPaths>
# include <QDesktopServices>
2018-06-06 00:48:31 +00:00
# include <QScreen>
2020-06-09 21:10:25 +00:00
# include <QStorageInfo>
2018-04-22 12:06:48 +00:00
# include <cmath>
2023-02-19 01:18:32 +00:00
# if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
2023-02-18 14:22:34 +00:00
# include <QRandomGenerator>
2023-02-19 01:18:32 +00:00
# endif
2014-06-20 05:25:50 +00:00
2014-05-25 07:07:08 +00:00
# include "common_gui.h"
2014-07-09 03:49:20 +00:00
# include "version.h"
2023-02-18 23:42:41 +00:00
# include "SleepLib/appsettings.h" // defines for REMSTAR_M_SUPPORT
2014-07-09 03:49:20 +00:00
2014-05-25 07:07:08 +00:00
2012-01-24 15:51:11 +00:00
// Custom loaders that don't autoscan..
# include <SleepLib/loader_plugins/zeo_loader.h>
2020-01-30 00:59:05 +00:00
# include <SleepLib/loader_plugins/dreem_loader.h>
2014-04-15 13:59:24 +00:00
# include <SleepLib/loader_plugins/somnopose_loader.h>
2020-01-23 17:51:58 +00:00
# include <SleepLib/loader_plugins/viatom_loader.h>
2013-09-09 15:56:02 +00:00
2019-04-16 17:12:26 +00:00
# ifdef REMSTAR_M_SUPPORT
2012-01-24 15:51:11 +00:00
# include <SleepLib/loader_plugins/mseries_loader.h>
2013-09-09 15:56:02 +00:00
# endif
2012-01-24 15:51:11 +00:00
2014-06-20 07:05:40 +00:00
# include "logger.h"
2011-06-26 08:30:44 +00:00
# include "mainwindow.h"
# include "ui_mainwindow.h"
2018-05-07 12:13:07 +00:00
# include "aboutdialog.h"
2011-10-02 03:38:51 +00:00
# include "newprofile.h"
2011-11-14 14:10:46 +00:00
# include "exportcsv.h"
2011-09-17 12:39:00 +00:00
# include "SleepLib/schema.h"
2011-06-26 08:30:44 +00:00
# include "Graphs/glcommon.h"
2020-07-05 01:17:25 +00:00
# include "checkupdates.h"
2012-01-10 06:19:49 +00:00
# include "SleepLib/calcs.h"
2014-08-17 15:55:40 +00:00
# include "SleepLib/progressdialog.h"
2021-09-02 14:27:50 +00:00
# include "SleepLib/importcontext.h"
2011-06-26 08:30:44 +00:00
2013-09-14 23:32:14 +00:00
# include "reports.h"
2014-04-25 05:28:10 +00:00
# include "statistics.h"
2020-01-21 22:37:37 +00:00
# include "zip.h"
2012-01-10 06:19:49 +00:00
2015-08-27 01:37:10 +00:00
# if QT_VERSION >= QT_VERSION_CHECK(5,4,0)
# include <QOpenGLFunctions>
# endif
2020-07-05 01:17:25 +00:00
CheckUpdates * updateChecker ;
2011-06-26 08:30:44 +00:00
MainWindow : : MainWindow ( QWidget * parent ) :
QMainWindow ( parent ) ,
ui ( new Ui : : MainWindow )
{
ui - > setupUi ( this ) ;
2011-12-18 10:53:51 +00:00
2014-06-20 05:25:50 +00:00
if ( logger ) {
connect ( logger , SIGNAL ( outputLog ( QString ) ) , this , SLOT ( logMessage ( QString ) ) ) ;
2020-01-18 16:41:09 +00:00
logger - > connectionReady ( ) ;
2014-06-20 05:25:50 +00:00
}
2019-08-19 19:34:18 +00:00
// Bring window to top (useful when language is changed)
2019-04-02 14:04:44 +00:00
this - > activateWindow ( ) ;
this - > raise ( ) ;
// Initialise oscar app registry stuff
2018-06-09 00:59:16 +00:00
QSettings settings ;
2014-05-06 09:33:06 +00:00
2019-02-13 18:22:54 +00:00
// Load previous Window geometry
2018-06-07 01:53:20 +00:00
restoreGeometry ( settings . value ( " MainWindow/geometry " ) . toByteArray ( ) ) ;
2014-06-20 05:25:50 +00:00
2018-06-07 01:53:20 +00:00
// Nifty Notification popups in System Tray (uses Growl on Mac)
if ( QSystemTrayIcon : : isSystemTrayAvailable ( ) & & QSystemTrayIcon : : supportsMessages ( ) ) {
2019-03-10 16:03:19 +00:00
qDebug ( ) < < " Using System Tray for Menu " ;
2019-04-16 17:12:26 +00:00
systray = new QSystemTrayIcon ( QIcon ( " :/icons/logo-sm.png " ) , this ) ;
2018-06-07 01:53:20 +00:00
systray - > show ( ) ;
2019-03-27 17:33:32 +00:00
// seems to need the systray menu for notifications to work
systraymenu = new QMenu ( this ) ;
2018-06-07 01:53:20 +00:00
systray - > setContextMenu ( systraymenu ) ;
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
QAction * a = systraymenu - > addAction ( STR_TR_OSCAR + " " + getVersion ( ) . displayString ( ) ) ;
2018-06-07 01:53:20 +00:00
a - > setEnabled ( false ) ;
systraymenu - > addSeparator ( ) ;
systraymenu - > addAction ( tr ( " &About " ) , this , SLOT ( on_action_About_triggered ( ) ) ) ;
2019-02-15 01:37:29 +00:00
// systraymenu->addAction(tr("Check for &Updates"), this, SLOT(on_actionCheck_for_Updates_triggered()));
2018-06-07 01:53:20 +00:00
systraymenu - > addSeparator ( ) ;
systraymenu - > addAction ( tr ( " E&xit " ) , this , SLOT ( close ( ) ) ) ;
2023-06-13 16:32:51 +00:00
2019-03-27 17:33:32 +00:00
// systraymenu = nullptr;
2018-06-07 01:53:20 +00:00
} else { // if not available, the messages will popup in the taskbar
2019-03-10 16:03:19 +00:00
qDebug ( ) < < " No System Tray menues " ;
2018-06-07 01:53:20 +00:00
systray = nullptr ;
systraymenu = nullptr ;
}
}
2019-07-25 13:26:19 +00:00
bool setupRunning = false ;
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
QString MainWindow : : getMainWindowTitle ( )
{
QString title = STR_TR_OSCAR + " " + getVersion ( ) . displayString ( ) ;
# ifdef BROKEN_OPENGL_BUILD
title + = " [ " + CSTR_GFX_BrokenGL + " ] " ;
# endif
return title ;
}
2018-06-07 01:53:20 +00:00
void MainWindow : : SetupGUI ( )
{
2019-07-25 13:26:19 +00:00
setupRunning = true ;
2023-01-23 22:54:27 +00:00
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
setWindowTitle ( getMainWindowTitle ( ) ) ;
2014-06-20 05:25:50 +00:00
2013-01-17 18:26:11 +00:00
# ifdef Q_OS_MAC
2020-01-19 01:34:10 +00:00
ui - > action_About - > setMenuRole ( QAction : : AboutRole ) ;
ui - > action_Preferences - > setMenuRole ( QAction : : PreferencesRole ) ;
2012-01-07 07:02:23 +00:00
# endif
2020-01-23 01:10:43 +00:00
ui - > actionPrint_Report - > setShortcuts ( QKeySequence : : Print ) ;
2020-03-26 23:48:09 +00:00
ui - > action_Fullscreen - > setShortcuts ( QKeySequence : : FullScreen ) ;
2014-07-19 06:12:03 +00:00
2019-07-13 21:53:57 +00:00
ui - > actionLine_Cursor - > setChecked ( AppSetting - > lineCursorMode ( ) ) ;
2019-07-15 03:25:49 +00:00
ui - > actionPie_Chart - > setChecked ( AppSetting - > showPieChart ( ) ) ;
2018-04-22 12:06:48 +00:00
ui - > actionDebug - > setChecked ( AppSetting - > showDebug ( ) ) ;
ui - > actionShow_Performance_Counters - > setChecked ( AppSetting - > showPerformance ( ) ) ;
2012-01-07 07:02:23 +00:00
2014-04-23 13:19:56 +00:00
overview = nullptr ;
daily = nullptr ;
prefdialog = nullptr ;
2018-04-22 12:06:48 +00:00
profileSelector = nullptr ;
2018-05-08 08:12:32 +00:00
welcome = nullptr ;
2018-04-22 12:06:48 +00:00
2020-07-05 01:17:25 +00:00
# ifdef NO_CHECKUPDATES
ui - > action_Check_for_Updates - > setVisible ( false ) ;
# endif
2018-04-22 12:06:48 +00:00
ui - > oximetryButton - > setDisabled ( true ) ;
ui - > dailyButton - > setDisabled ( true ) ;
ui - > overviewButton - > setDisabled ( true ) ;
ui - > statisticsButton - > setDisabled ( true ) ;
ui - > importButton - > setDisabled ( true ) ;
2019-04-10 19:52:47 +00:00
# ifdef helpless
ui - > helpButton - > setVisible ( false ) ;
# endif
2011-07-22 13:46:17 +00:00
2014-04-17 05:52:25 +00:00
m_inRecalculation = false ;
m_restartRequired = false ;
2011-12-18 10:53:51 +00:00
// Initialize Status Bar objects
2023-06-20 12:37:00 +00:00
init_reportModeUi ( ) ;
2014-05-25 07:07:08 +00:00
2013-01-17 18:26:11 +00:00
# ifdef Q_OS_MAC
2018-04-22 12:06:48 +00:00
//p_profile->appearance->setAntiAliasing(false);
2012-01-02 09:45:08 +00:00
# endif
2014-08-28 08:01:25 +00:00
//ui->action_Link_Graph_Groups->setChecked(p_profile->general->linkGroups());
2011-07-18 03:36:26 +00:00
2014-04-17 05:52:25 +00:00
first_load = true ;
2011-10-05 07:41:56 +00:00
2018-04-22 12:06:48 +00:00
profileSelector = new ProfileSelector ( ui - > tabWidget ) ;
2020-07-05 01:17:25 +00:00
ui - > tabWidget - > insertTab ( 0 , profileSelector , STR_TR_Profile ) ;
2011-12-23 14:12:04 +00:00
2018-04-22 12:06:48 +00:00
// Profiles haven't been loaded here...
profileSelector - > updateProfileList ( ) ;
2011-12-23 14:12:04 +00:00
2018-04-22 12:06:48 +00:00
// Start with the new Profile Tab
2019-03-25 23:38:16 +00:00
ui - > tabWidget - > setCurrentWidget ( profileSelector ) ; // setting this to daily shows the cube during loading..
ui - > tabWidget - > setTabEnabled ( 1 , false ) ; // this should be the Statistics tab
2011-06-26 08:30:44 +00:00
2023-05-22 23:20:15 +00:00
// toolbox is the right sidebar that contain the Navigation, bookmark , and Records tabs.
// Navigation has offset 0
// Bookmarks has offset 1
// Records has offset 2
2023-06-13 16:32:51 +00:00
ui - > toolBox - > setCurrentIndex ( 2 ) ;
2018-04-22 12:06:48 +00:00
bool b = AppSetting - > rightSidebarVisible ( ) ;
2014-08-23 12:31:28 +00:00
ui - > action_Sidebar_Toggle - > setChecked ( b ) ;
ui - > toolBox - > setVisible ( b ) ;
2023-01-23 22:54:27 +00:00
bool oldState = ui - > actionShowPersonalData - > blockSignals ( true ) ;
2020-06-05 04:25:23 +00:00
ui - > actionShowPersonalData - > setChecked ( AppSetting - > showPersonalData ( ) ) ;
2023-01-23 22:54:27 +00:00
ui - > actionShowPersonalData - > blockSignals ( oldState ) ;
2020-06-05 04:25:23 +00:00
2023-01-23 22:54:27 +00:00
oldState = ui - > actionPie_Chart - > blockSignals ( true ) ;
2019-07-15 03:25:49 +00:00
ui - > actionPie_Chart - > setChecked ( AppSetting - > showPieChart ( ) ) ;
2023-01-23 22:54:27 +00:00
ui - > actionPie_Chart - > blockSignals ( oldState ) ;
2019-07-15 03:25:49 +00:00
2023-01-23 22:54:27 +00:00
oldState = ui - > actionDaily_Calendar - > blockSignals ( true ) ;
2019-07-15 03:25:49 +00:00
ui - > actionDaily_Calendar - > setChecked ( AppSetting - > calendarVisible ( ) ) ;
2023-01-23 22:54:27 +00:00
ui - > actionDaily_Calendar - > blockSignals ( oldState ) ;
2019-07-15 03:25:49 +00:00
2011-12-26 19:25:17 +00:00
on_tabWidget_currentChanged ( 0 ) ;
2013-09-09 15:56:02 +00:00
# ifndef REMSTAR_M_SUPPORT
ui - > actionImport_RemStar_MSeries_Data - > setVisible ( false ) ;
# endif
2014-04-15 04:47:23 +00:00
2023-02-19 01:18:32 +00:00
# if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
2023-02-18 14:22:34 +00:00
QRandomGenerator ( QDateTime : : currentDateTime ( ) . toTime_t ( ) ) ;
2023-02-19 01:18:32 +00:00
# else
qsrand ( QDateTime : : currentDateTime ( ) . toTime_t ( ) ) ;
# endif
2014-07-12 10:52:14 +00:00
2014-10-02 11:22:30 +00:00
QList < int > a ;
2018-04-22 12:06:48 +00:00
int panel_width = AppSetting - > rightPanelWidth ( ) ;
2014-10-02 11:22:30 +00:00
a . push_back ( this - > width ( ) - panel_width ) ;
a . push_back ( panel_width ) ;
2014-10-03 02:31:51 +00:00
ui - > mainsplitter - > setSizes ( a ) ;
ui - > mainsplitter - > setStretchFactor ( 0 , 1 ) ;
ui - > mainsplitter - > setStretchFactor ( 1 , 0 ) ;
2018-05-29 01:30:52 +00:00
2018-06-05 01:16:03 +00:00
QTimer : : singleShot ( 50 , this , SLOT ( Startup ( ) ) ) ;
2018-05-29 01:30:52 +00:00
2019-03-25 23:38:16 +00:00
ui - > actionChange_Data_Folder - > setVisible ( false ) ;
2019-04-16 17:12:26 +00:00
ui - > action_Frequently_Asked_Questions - > setVisible ( false ) ;
2020-01-21 16:22:49 +00:00
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
2019-03-25 23:38:16 +00:00
2023-06-20 12:37:00 +00:00
reset_reportModeUi ( ) ;
2023-06-13 16:32:51 +00:00
if ( ! AppSetting - > showDebug ( ) ) {
ui - > logText - > hide ( ) ;
}
2019-02-12 17:00:05 +00:00
# ifndef helpless
2018-06-06 16:03:51 +00:00
help = new Help ( this ) ;
ui - > tabWidget - > addTab ( help , tr ( " Help Browser " ) ) ;
2019-02-12 17:00:05 +00:00
# endif
2019-07-25 13:26:19 +00:00
setupRunning = false ;
2014-07-12 10:52:14 +00:00
}
2018-04-22 12:06:48 +00:00
void MainWindow : : logMessage ( QString msg )
2014-08-06 14:06:44 +00:00
{
2018-04-22 12:06:48 +00:00
ui - > logText - > appendPlainText ( msg ) ;
2014-08-06 14:06:44 +00:00
}
2014-04-28 03:40:50 +00:00
void MainWindow : : closeEvent ( QCloseEvent * event )
{
2018-05-06 07:55:02 +00:00
Q_UNUSED ( event ) ;
2018-05-05 09:13:39 +00:00
static bool runonce = false ;
if ( ! runonce ) {
if ( AppSetting - > removeCardReminder ( ) ) {
2022-02-27 14:18:39 +00:00
Notify ( QObject : : tr ( " Don't forget to place your datacard back in your CPAP device " ) , QObject : : tr ( " OSCAR Reminder " ) ) ;
2018-05-05 09:13:39 +00:00
QThread : : msleep ( 1000 ) ;
QApplication : : processEvents ( ) ;
}
2018-06-07 01:53:20 +00:00
schema : : channel . Save ( ) ;
if ( p_profile ) {
CloseProfile ( ) ;
}
// Shutdown and Save the current User profile
Profiles : : Done ( ) ;
// Save current window position
2018-06-09 00:59:16 +00:00
QSettings settings ;
2018-06-07 01:53:20 +00:00
settings . setValue ( " MainWindow/geometry " , saveGeometry ( ) ) ;
// Trash anything allocated by the Graph objects
DestroyGraphGlobals ( ) ;
2019-03-25 23:38:16 +00:00
if ( systraymenu ) {
delete systraymenu ;
systraymenu = nullptr ;
}
if ( systray ) {
delete systray ;
systray = nullptr ;
}
2018-06-07 01:53:20 +00:00
disconnect ( logger , SIGNAL ( outputLog ( QString ) ) , this , SLOT ( logMessage ( QString ) ) ) ;
shutdownLogger ( ) ;
2018-05-05 09:13:39 +00:00
runonce = true ;
} else {
qDebug ( ) < < " Qt is still calling closevent multiple times " ;
2018-04-22 12:06:48 +00:00
QApplication : : processEvents ( ) ;
2011-09-07 08:35:55 +00:00
}
2018-05-05 09:13:39 +00:00
}
2014-04-17 05:52:25 +00:00
2018-05-05 09:13:39 +00:00
MainWindow : : ~ MainWindow ( )
{
2011-07-24 07:58:20 +00:00
delete ui ;
2019-03-25 23:38:16 +00:00
QCoreApplication : : quit ( ) ;
2011-06-26 08:30:44 +00:00
}
2011-12-18 12:31:11 +00:00
2014-07-21 16:14:07 +00:00
void MainWindow : : log ( QString text )
{
logger - > appendClean ( text ) ;
}
2019-03-26 01:10:03 +00:00
void MainWindow : : EnableTabs ( bool b )
{
ui - > tabWidget - > setTabEnabled ( 2 , b ) ;
ui - > tabWidget - > setTabEnabled ( 3 , b ) ;
ui - > tabWidget - > setTabEnabled ( 4 , b ) ;
}
2011-12-18 12:31:11 +00:00
2014-04-10 15:48:31 +00:00
void MainWindow : : Notify ( QString s , QString title , int ms )
2011-10-21 07:06:06 +00:00
{
2014-07-09 03:49:20 +00:00
if ( title . isEmpty ( ) ) {
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
title = STR_TR_OSCAR + " " + getVersion ( ) . displayString ( ) ;
2014-07-09 03:49:20 +00:00
}
2011-10-21 07:06:06 +00:00
if ( systray ) {
2014-04-10 15:48:31 +00:00
QString msg = s ;
2014-05-08 04:46:23 +00:00
# ifdef Q_OS_UNIX
2018-04-22 12:06:48 +00:00
// GNOME3's systray hides the last line of the displayed Qt message.
// As a workaround, add an extra line to bump the message back
// into the visible area.
2014-04-10 15:48:31 +00:00
char * desktop = getenv ( " DESKTOP_SESSION " ) ;
2014-04-17 05:52:25 +00:00
if ( desktop & & ! strncmp ( desktop , " gnome " , 5 ) ) {
2014-04-10 15:48:31 +00:00
msg + = " \n " ;
2014-04-17 05:52:25 +00:00
}
2014-05-08 04:46:23 +00:00
# endif
2014-04-10 15:48:31 +00:00
systray - > showMessage ( title , msg , QSystemTrayIcon : : Information , ms ) ;
2011-10-21 07:06:06 +00:00
}
}
2011-06-26 08:30:44 +00:00
2014-07-28 13:56:29 +00:00
QString getCPAPPixmap ( QString mach_class )
{
QString cpapimage ;
if ( mach_class = = STR_MACH_ResMed ) cpapimage = " :/icons/rms9.png " ;
else if ( mach_class = = STR_MACH_PRS1 ) cpapimage = " :/icons/prs1.png " ;
else if ( mach_class = = STR_MACH_Intellipap ) cpapimage = " :/icons/intellipap.png " ;
return cpapimage ;
}
2014-09-17 17:20:01 +00:00
//QIcon getCPAPIcon(QString mach_class)
//{
// QString cpapimage = getCPAPPixmap(mach_class);
2014-07-28 13:56:29 +00:00
2014-09-17 17:20:01 +00:00
// return QIcon(cpapimage);
//}
2014-07-28 13:56:29 +00:00
2014-05-18 17:06:58 +00:00
void MainWindow : : PopulatePurgeMenu ( )
{
2014-08-04 19:57:48 +00:00
ui - > menu_Rebuild_CPAP_Data - > disconnect ( ui - > menu_Rebuild_CPAP_Data , SIGNAL ( triggered ( QAction * ) ) , this , SLOT ( on_actionRebuildCPAP ( QAction * ) ) ) ;
2014-07-26 12:46:11 +00:00
ui - > menu_Rebuild_CPAP_Data - > clear ( ) ;
2014-05-31 21:25:07 +00:00
2014-08-04 19:57:48 +00:00
ui - > menuPurge_CPAP_Data - > disconnect ( ui - > menuPurge_CPAP_Data , SIGNAL ( triggered ( QAction * ) ) , this , SLOT ( on_actionPurgeMachine ( QAction * ) ) ) ;
ui - > menuPurge_CPAP_Data - > clear ( ) ;
2020-01-31 20:16:31 +00:00
// Only allow rebuilding for CPAP for now, since that's the only thing that makes backups.
2014-07-11 12:09:38 +00:00
QList < Machine * > machines = p_profile - > GetMachines ( MT_CPAP ) ;
2014-05-18 17:06:58 +00:00
for ( int i = 0 ; i < machines . size ( ) ; + + i ) {
Machine * mach = machines . at ( i ) ;
2020-01-31 19:35:15 +00:00
addMachineToMenu ( mach , ui - > menu_Rebuild_CPAP_Data ) ;
2020-01-31 20:16:31 +00:00
}
2023-06-13 16:32:51 +00:00
2022-02-27 14:18:39 +00:00
// Add any imported device (except the built-in journal) to the purge menu.
2020-01-31 20:16:31 +00:00
machines = p_profile - > GetMachines ( ) ;
for ( int i = 0 ; i < machines . size ( ) ; + + i ) {
Machine * mach = machines . at ( i ) ;
if ( mach - > type ( ) = = MT_JOURNAL ) {
continue ;
}
2020-01-31 19:35:15 +00:00
addMachineToMenu ( mach , ui - > menuPurge_CPAP_Data ) ;
2014-05-18 17:06:58 +00:00
}
2020-01-31 19:35:15 +00:00
2014-08-04 19:57:48 +00:00
ui - > menu_Rebuild_CPAP_Data - > connect ( ui - > menu_Rebuild_CPAP_Data , SIGNAL ( triggered ( QAction * ) ) , this , SLOT ( on_actionRebuildCPAP ( QAction * ) ) ) ;
ui - > menuPurge_CPAP_Data - > connect ( ui - > menuPurge_CPAP_Data , SIGNAL ( triggered ( QAction * ) ) , this , SLOT ( on_actionPurgeMachine ( QAction * ) ) ) ;
2014-05-18 17:06:58 +00:00
}
2014-07-26 12:46:11 +00:00
2020-01-31 19:35:15 +00:00
void MainWindow : : addMachineToMenu ( Machine * mach , QMenu * menu )
{
2020-01-31 20:35:36 +00:00
QString name = mach - > brand ( ) ;
if ( name . isEmpty ( ) ) {
name = mach - > loaderName ( ) ;
}
name + = " " + mach - > model ( ) + " " + mach - > serial ( ) ;
2020-01-31 19:35:15 +00:00
QAction * action = new QAction ( name . replace ( " & " , " && " ) , menu ) ;
action - > setIconVisibleInMenu ( true ) ;
action - > setIcon ( mach - > getPixmap ( ) ) ;
action - > setData ( mach - > loaderName ( ) + " : " + mach - > serial ( ) ) ;
menu - > addAction ( action ) ;
}
2018-05-07 12:13:07 +00:00
void MainWindow : : firstRunMessage ( )
{
if ( AppSetting - > showAboutDialog ( ) > 0 ) {
AboutDialog * about = new AboutDialog ( this ) ;
about - > exec ( ) ;
AppSetting - > setShowAboutDialog ( - 1 ) ;
about - > deleteLater ( ) ;
}
}
2019-05-07 01:08:49 +00:00
// QString GenerateWelcomeHTML();
2014-05-18 17:06:58 +00:00
2018-06-05 22:08:12 +00:00
bool MainWindow : : OpenProfile ( QString profileName , bool skippassword )
2011-06-27 06:26:29 +00:00
{
2018-06-07 01:53:20 +00:00
qDebug ( ) < < " Opening profile " < < profileName ;
2018-06-05 00:14:07 +00:00
auto pit = Profiles : : profiles . find ( profileName ) ;
2020-08-03 18:01:04 +00:00
if ( pit = = Profiles : : profiles . end ( ) )
return false ;
2018-06-05 00:14:07 +00:00
Profile * prof = pit . value ( ) ;
2018-04-22 12:06:48 +00:00
if ( p_profile ) {
if ( ( prof ! = p_profile ) ) {
CloseProfile ( ) ;
} else {
// Already open
2018-06-05 00:14:07 +00:00
return false ;
2018-04-22 12:06:48 +00:00
}
}
2023-06-09 16:47:10 +00:00
2018-06-05 22:08:12 +00:00
prof = profileSelector - > SelectProfile ( profileName , skippassword ) ; // asks for the password and updates stuff in profileSelector tab
2018-06-05 00:14:07 +00:00
if ( ! prof ) {
return false ;
}
2018-04-22 12:06:48 +00:00
// TODO: Check profile password
// Check Lockfile
QString lockhost = prof - > checkLock ( ) ;
2023-06-09 16:47:10 +00:00
2018-04-22 12:06:48 +00:00
if ( ! lockhost . isEmpty ( ) ) {
2018-05-06 22:36:22 +00:00
if ( lockhost . compare ( QHostInfo : : localHostName ( ) ) ! = 0 ) {
2018-04-22 12:06:48 +00:00
if ( QMessageBox : : warning ( nullptr , STR_MessageBox_Warning ,
2019-02-15 01:37:29 +00:00
QObject : : tr ( " There is a lockfile already present for this profile '%1', claimed on '%2'. " ) . arg ( prof - > user - > userName ( ) ) . arg ( lockhost ) + " \n \n " +
2019-02-24 00:58:25 +00:00
QObject : : tr ( " You can only work with one instance of an individual OSCAR profile at a time. " ) + " \n \n " +
QObject : : tr ( " If you are using cloud storage, make sure OSCAR is closed and syncing has completed first on the other computer before proceeding. " ) ,
2019-02-15 01:37:29 +00:00
QMessageBox : : Cancel | QMessageBox : : Ok , QMessageBox : : Cancel ) = = QMessageBox : : Cancel ) {
2018-06-05 00:14:07 +00:00
return false ;
2018-04-22 12:06:48 +00:00
}
2018-05-06 22:36:22 +00:00
} // not worried about localhost locks anymore, just silently drop it.
2018-04-22 12:06:48 +00:00
prof - > removeLock ( ) ;
}
2018-06-05 00:14:07 +00:00
2018-04-22 12:06:48 +00:00
p_profile = prof ;
2018-06-05 01:16:03 +00:00
ProgressDialog * progress = new ProgressDialog ( this ) ;
progress - > setMessage ( QObject : : tr ( " Loading profile \" %1 \" ... " ) . arg ( profileName ) ) ;
progress - > open ( ) ;
2018-04-22 12:06:48 +00:00
QList < Machine * > machines = p_profile - > GetMachines ( MT_CPAP ) ;
2019-03-10 16:03:19 +00:00
if ( machines . isEmpty ( ) ) {
2022-02-27 14:18:39 +00:00
qDebug ( ) < < " No devices in profile " ;
2019-03-10 16:03:19 +00:00
} else {
# ifdef LOCK_RESMED_SESSIONS
2018-04-22 12:06:48 +00:00
for ( QList < Machine * > : : iterator it = machines . begin ( ) ; it ! = machines . end ( ) ; + + it ) {
QString mclass = ( * it ) - > loaderName ( ) ;
if ( mclass = = STR_MACH_ResMed ) {
2022-02-27 14:18:39 +00:00
qDebug ( ) < < " ResMed device found.. locking OSCAR preferences to suit it's summary system " ;
2018-04-22 12:06:48 +00:00
// Have to sacrifice these features to get access to summary data.
p_profile - > session - > setCombineCloseSessions ( 0 ) ;
p_profile - > session - > setDaySplitTime ( QTime ( 12 , 0 , 0 ) ) ;
p_profile - > session - > setIgnoreShortSessions ( false ) ;
p_profile - > session - > setLockSummarySessions ( true ) ;
2018-05-03 05:08:45 +00:00
p_profile - > general - > setPrefCalcPercentile ( 95.0 ) ; // 95%
p_profile - > general - > setPrefCalcMiddle ( 0 ) ; // Median (50%)
p_profile - > general - > setPrefCalcMax ( 1 ) ; // Dodgy max
2018-04-22 12:06:48 +00:00
break ;
}
}
# endif
2019-03-10 16:03:19 +00:00
}
2018-04-22 12:06:48 +00:00
// Todo: move this to AHIWIndow check to profile Load function...
if ( p_profile - > cpap - > AHIWindow ( ) < 30.0 ) {
p_profile - > cpap - > setAHIWindow ( 60.0 ) ;
}
if ( p_profile - > p_preferences [ STR_PREF_ReimportBackup ] . toBool ( ) ) {
importCPAPBackups ( ) ;
p_profile - > p_preferences [ STR_PREF_ReimportBackup ] = false ;
}
2018-06-05 01:16:03 +00:00
p_profile - > LoadMachineData ( progress ) ;
2023-06-09 16:47:10 +00:00
2023-06-13 16:32:51 +00:00
if ( ! p_profile - > LastDay ( MT_CPAP ) . isValid ( ) ) { // quick test if new profile or not.
2023-06-09 16:47:10 +00:00
// Override default value of clinicalMode if new profile.
// Allows permissiveMode (not clinicalMode) to be the default value for existing profiles.
p_profile - > cpap - > setClinicalMode ( true ) ;
}
m_clinicalMode = p_profile - > cpap - > clinicalMode ( ) ;
2018-06-05 22:08:12 +00:00
progress - > setMessage ( tr ( " Loading profile \" %1 \" " ) . arg ( profileName ) ) ;
2018-06-05 01:16:03 +00:00
2019-02-12 17:00:05 +00:00
// Show the logo?
2019-04-16 17:12:26 +00:00
// QPixmap logo=QPixmap(":/icons/logo-md.png").scaled(64,64);
2019-02-12 17:00:05 +00:00
// progress->setPixmap(logo);
2018-06-05 01:16:03 +00:00
QApplication : : processEvents ( ) ;
2013-01-18 08:37:17 +00:00
2018-04-22 12:06:48 +00:00
// Reload everything profile related
2018-04-25 10:34:23 +00:00
if ( daily ) {
qCritical ( ) < < " OpenProfile called with active Daily object! " ;
2019-03-10 16:03:19 +00:00
qDebug ( ) < < " Abandon opening Profile " ;
2018-06-05 00:14:07 +00:00
return false ;
2018-04-25 10:34:23 +00:00
}
2018-05-07 15:11:02 +00:00
welcome = new Welcome ( ui - > tabWidget ) ;
ui - > tabWidget - > insertTab ( 1 , welcome , tr ( " Welcome " ) ) ;
2018-04-22 12:06:48 +00:00
daily = new Daily ( ui - > tabWidget , nullptr ) ;
ui - > tabWidget - > insertTab ( 2 , daily , STR_TR_Daily ) ;
daily - > ReloadGraphs ( ) ;
2011-12-08 14:47:10 +00:00
2018-04-25 10:34:23 +00:00
if ( overview ) {
qCritical ( ) < < " OpenProfile called with active Overview object! " ;
2019-03-10 16:03:19 +00:00
qDebug ( ) < < " Abandon opening Profile " ;
2018-06-05 00:14:07 +00:00
return false ;
2018-04-25 10:34:23 +00:00
}
2014-04-17 05:52:25 +00:00
overview = new Overview ( ui - > tabWidget , daily - > graphView ( ) ) ;
2014-07-25 07:53:48 +00:00
ui - > tabWidget - > insertTab ( 3 , overview , STR_TR_Overview ) ;
2018-04-22 12:06:48 +00:00
overview - > ReloadGraphs ( ) ;
2014-04-17 05:52:25 +00:00
2018-04-22 12:06:48 +00:00
// Should really create welcome and statistics here, but they need redoing later anyway to kill off webkit
2018-04-22 18:12:36 +00:00
ui - > tabWidget - > setCurrentIndex ( AppSetting - > openTabAtStart ( ) ) ;
2023-06-13 16:32:51 +00:00
2023-06-13 23:25:55 +00:00
p_profile - > general - > setStatReportMode ( STAT_MODE_STANDARD ) ;
2018-04-22 12:06:48 +00:00
GenerateStatistics ( ) ;
PopulatePurgeMenu ( ) ;
2014-08-17 12:56:05 +00:00
2018-04-22 12:06:48 +00:00
AppSetting - > setProfileName ( p_profile - > user - > userName ( ) ) ;
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
setWindowTitle ( tr ( " %1 (Profile: %2) " ) . arg ( getMainWindowTitle ( ) ) . arg ( AppSetting - > profileName ( ) ) ) ;
2014-04-17 05:52:25 +00:00
2019-08-28 22:23:13 +00:00
QList < Machine * > oximachines = p_profile - > GetMachines ( MT_OXIMETER ) ; // Machines of any type except Journal
QList < Machine * > posmachines = p_profile - > GetMachines ( MT_POSITION ) ;
QList < Machine * > stgmachines = p_profile - > GetMachines ( MT_SLEEPSTAGE ) ;
bool noMachines = machines . isEmpty ( ) & & posmachines . isEmpty ( ) & & oximachines . isEmpty ( ) & & stgmachines . isEmpty ( ) ;
2019-08-28 23:31:56 +00:00
2018-04-22 12:06:48 +00:00
ui - > importButton - > setDisabled ( false ) ;
2019-03-10 16:03:19 +00:00
ui - > oximetryButton - > setDisabled ( false ) ;
ui - > dailyButton - > setDisabled ( noMachines ) ;
ui - > overviewButton - > setDisabled ( noMachines ) ;
ui - > statisticsButton - > setDisabled ( noMachines ) ;
ui - > tabWidget - > setTabEnabled ( 2 , ! noMachines ) ; // daily, STR_TR_Daily);
ui - > tabWidget - > setTabEnabled ( 3 , ! noMachines ) ; // overview, STR_TR_Overview);
2019-08-28 22:23:13 +00:00
ui - > tabWidget - > setTabEnabled ( 4 , ! noMachines ) ; // statistics, STR_TR_Statistics);
2014-04-17 05:52:25 +00:00
2023-06-09 16:47:10 +00:00
2018-06-05 01:16:03 +00:00
progress - > close ( ) ;
delete progress ;
2019-03-10 16:03:19 +00:00
qDebug ( ) < < " Finished opening Profile " ;
2018-06-05 01:16:03 +00:00
2020-07-05 17:58:25 +00:00
if ( updateChecker ! = nullptr )
updateChecker - > showMessage ( ) ;
2020-07-05 01:17:25 +00:00
2018-06-05 00:14:07 +00:00
return true ;
2018-04-22 12:06:48 +00:00
}
2014-07-25 07:53:48 +00:00
2018-04-22 12:06:48 +00:00
void MainWindow : : CloseProfile ( )
{
2020-07-05 17:58:25 +00:00
if ( updateChecker ! = nullptr )
updateChecker - > showMessage ( ) ;
2020-07-05 01:17:25 +00:00
2014-09-24 01:42:14 +00:00
if ( daily ) {
2018-04-22 12:06:48 +00:00
daily - > Unload ( ) ;
daily - > clearLastDay ( ) ; // otherwise Daily will crash
delete daily ;
daily = nullptr ;
}
2018-05-07 15:11:02 +00:00
if ( welcome ) {
delete welcome ;
welcome = nullptr ;
}
2018-04-22 12:06:48 +00:00
if ( overview ) {
delete overview ;
overview = nullptr ;
2014-09-24 01:42:14 +00:00
}
2014-07-25 07:53:48 +00:00
2018-06-12 15:18:26 +00:00
if ( p_profile ) {
p_profile - > StoreMachines ( ) ;
p_profile - > UnloadMachineData ( ) ;
p_profile - > saveChannels ( ) ;
p_profile - > Save ( ) ;
p_profile - > removeLock ( ) ;
p_profile = nullptr ;
}
2018-04-22 12:06:48 +00:00
}
2020-04-25 20:30:35 +00:00
# ifdef Q_OS_WIN
void MainWindow : : TestWindowsOpenGL ( )
{
# if (QT_VERSION >= QT_VERSION_CHECK(5,4,0)) && !defined(BROKEN_OPENGL_BUILD)
// 1. Set OpenGLCompatibilityCheck=1 in registry.
QSettings settings ;
settings . setValue ( " OpenGLCompatibilityCheck " , true ) ;
// 2. See if OpenGL crashes the application:
QOpenGLWidget * gl ;
gl = new QOpenGLWidget ( ui - > tabWidget ) ;
ui - > tabWidget - > insertTab ( 2 , gl , " " ) ;
//qDebug() << __LINE__;
QCoreApplication : : processEvents ( ) ; // this triggers the SIGSEGV
//qDebug() << __LINE__;
// If we get here, OpenGL won't crash the application.
ui - > tabWidget - > removeTab ( 2 ) ;
delete gl ;
// 3. Remove OpenGLCompatibilityCheck from the registry upon success.
settings . remove ( " OpenGLCompatibilityCheck " ) ;
# endif
}
# endif
2018-04-22 12:06:48 +00:00
void MainWindow : : Startup ( )
{
2020-04-25 20:30:35 +00:00
# ifdef Q_OS_WIN
TestWindowsOpenGL ( ) ;
# endif
2018-05-07 00:37:22 +00:00
for ( auto & loader : GetLoaders ( ) ) {
loader - > setParent ( this ) ;
}
2018-04-22 12:06:48 +00:00
QString lastProfile = AppSetting - > profileName ( ) ;
2018-05-07 12:13:07 +00:00
firstRunMessage ( ) ;
2018-05-06 20:43:22 +00:00
if ( Profiles : : profiles . contains ( lastProfile ) & & AppSetting - > autoOpenLastUsed ( ) ) {
2018-06-05 00:14:07 +00:00
if ( OpenProfile ( lastProfile ) ) {
ui - > tabWidget - > setCurrentIndex ( AppSetting - > openTabAtStart ( ) ) ;
2018-04-22 12:06:48 +00:00
2018-06-05 00:14:07 +00:00
if ( AppSetting - > autoLaunchImport ( ) ) {
on_importButton_clicked ( ) ;
}
2018-04-22 12:06:48 +00:00
}
} else {
ui - > tabWidget - > setCurrentWidget ( profileSelector ) ;
}
2014-05-13 01:28:41 +00:00
}
2014-07-28 13:56:29 +00:00
int MainWindow : : importCPAP ( ImportPath import , const QString & message )
2014-05-13 01:28:41 +00:00
{
2014-07-28 13:56:29 +00:00
if ( ! import . loader ) {
return 0 ;
}
2018-06-07 00:09:06 +00:00
ui - > tabWidget - > setCurrentWidget ( welcome ) ;
QApplication : : processEvents ( ) ;
2018-05-07 00:37:22 +00:00
ProgressDialog * progdlg = new ProgressDialog ( this ) ;
2014-09-17 17:20:01 +00:00
QPixmap image = import . loader - > getPixmap ( import . loader - > PeekInfo ( import . path ) . series ) ;
2014-07-29 14:38:59 +00:00
image = image . scaled ( 64 , 64 ) ;
2018-05-07 00:37:22 +00:00
progdlg - > setPixmap ( image ) ;
2014-07-29 14:38:59 +00:00
2018-05-07 01:57:58 +00:00
progdlg - > addAbortButton ( ) ;
2014-07-29 14:38:59 +00:00
2018-05-07 01:30:42 +00:00
progdlg - > setWindowModality ( Qt : : ApplicationModal ) ;
progdlg - > open ( ) ;
2018-05-07 00:37:22 +00:00
progdlg - > setMessage ( message ) ;
2018-06-07 00:09:06 +00:00
2018-05-07 00:37:22 +00:00
connect ( import . loader , SIGNAL ( updateMessage ( QString ) ) , progdlg , SLOT ( setMessage ( QString ) ) ) ;
2018-05-07 18:42:23 +00:00
connect ( import . loader , SIGNAL ( setProgressMax ( int ) ) , progdlg , SLOT ( setProgressMax ( int ) ) ) ;
connect ( import . loader , SIGNAL ( setProgressValue ( int ) ) , progdlg , SLOT ( setProgressValue ( int ) ) ) ;
2018-05-07 01:57:58 +00:00
connect ( progdlg , SIGNAL ( abortClicked ( ) ) , import . loader , SLOT ( abortImport ( ) ) ) ;
2014-07-29 14:38:59 +00:00
2021-09-02 14:27:50 +00:00
ImportUI importui ( p_profile ) ;
ImportContext * ctx = new ProfileImportContext ( p_profile ) ;
import . loader - > SetContext ( ctx ) ;
connect ( ctx , & ImportContext : : importEncounteredUnexpectedData , & importui , & ImportUI : : onUnexpectedData ) ;
connect ( import . loader , & MachineLoader : : deviceReportsUsageOnly , & importui , & ImportUI : : onDeviceReportsUsageOnly ) ;
connect ( import . loader , & MachineLoader : : deviceIsUntested , & importui , & ImportUI : : onDeviceIsUntested ) ;
connect ( import . loader , & MachineLoader : : deviceIsUnsupported , & importui , & ImportUI : : onDeviceIsUnsupported ) ;
2014-07-29 14:38:59 +00:00
int c = import . loader - > Open ( import . path ) ;
2021-09-03 19:42:10 +00:00
progdlg - > setMessage ( QObject : : tr ( " Finishing up... " ) ) ;
QCoreApplication : : processEvents ( ) ;
ctx - > Commit ( ) ;
2021-09-02 14:27:50 +00:00
import . loader - > SetContext ( nullptr ) ;
delete ctx ;
2014-07-29 14:38:59 +00:00
if ( c > 0 ) {
Notify ( tr ( " Imported %1 CPAP session(s) from \n \n %2 " ) . arg ( c ) . arg ( import . path ) , tr ( " Import Success " ) ) ;
} else if ( c = = 0 ) {
Notify ( tr ( " Already up to date with CPAP data at \n \n %1 " ) . arg ( import . path ) , tr ( " Up to date " ) ) ;
} else {
2022-02-27 14:18:39 +00:00
Notify ( tr ( " Couldn't find any valid Device Data at \n \n %1 " ) . arg ( import . path ) , tr ( " Import Problem " ) ) ;
2014-07-29 14:38:59 +00:00
}
2018-05-07 01:57:58 +00:00
disconnect ( progdlg , SIGNAL ( abortClicked ( ) ) , import . loader , SLOT ( abortImport ( ) ) ) ;
2018-05-07 18:42:23 +00:00
disconnect ( import . loader , SIGNAL ( setProgressMax ( int ) ) , progdlg , SLOT ( setProgressMax ( int ) ) ) ;
disconnect ( import . loader , SIGNAL ( setProgressValue ( int ) ) , progdlg , SLOT ( setProgressValue ( int ) ) ) ;
2018-05-07 00:37:22 +00:00
disconnect ( import . loader , SIGNAL ( updateMessage ( QString ) ) , progdlg , SLOT ( setMessage ( QString ) ) ) ;
2018-05-07 15:11:02 +00:00
progdlg - > close ( ) ;
2014-07-29 14:38:59 +00:00
2018-05-07 00:37:22 +00:00
delete progdlg ;
2014-05-13 01:28:41 +00:00
2018-04-22 12:06:48 +00:00
if ( AppSetting - > openTabAfterImport ( ) > 0 ) {
ui - > tabWidget - > setCurrentIndex ( AppSetting - > openTabAfterImport ( ) ) ;
}
2014-07-29 14:38:59 +00:00
2014-05-13 01:28:41 +00:00
return c ;
}
2021-09-20 15:03:34 +00:00
void MainWindow : : updateOverview ( )
{
if ( overview )
overview - > ReloadGraphs ( ) ;
}
2014-05-13 01:28:41 +00:00
void MainWindow : : finishCPAPImport ( )
{
2020-11-21 18:45:43 +00:00
if ( daily )
daily - > Unload ( daily - > getDate ( ) ) ;
2014-09-17 06:12:38 +00:00
p_profile - > StoreMachines ( ) ;
2018-05-29 23:29:21 +00:00
QList < Machine * > machines = p_profile - > GetMachines ( MT_CPAP ) ;
for ( Machine * mach : machines ) {
mach - > saveSessionInfo ( ) ;
2018-05-30 08:51:43 +00:00
mach - > SaveSummaryCache ( ) ;
2018-05-29 23:29:21 +00:00
}
2014-05-13 01:28:41 +00:00
GenerateStatistics ( ) ;
2018-04-22 12:06:48 +00:00
profileSelector - > updateProfileList ( ) ;
2014-05-13 01:28:41 +00:00
2020-05-06 17:40:59 +00:00
if ( welcome )
welcome - > refreshPage ( ) ;
2018-05-07 16:54:08 +00:00
2014-05-13 01:28:41 +00:00
if ( overview ) { overview - > ReloadGraphs ( ) ; }
2014-09-24 01:42:14 +00:00
if ( daily ) {
// daily->populateSessionWidget();
daily - > ReloadGraphs ( ) ;
}
2018-04-22 12:06:48 +00:00
if ( AppSetting - > openTabAfterImport ( ) > 0 ) {
ui - > tabWidget - > setCurrentIndex ( AppSetting - > openTabAfterImport ( ) ) ;
}
2014-05-13 01:28:41 +00:00
}
void MainWindow : : importCPAPBackups ( )
{
2022-02-27 14:18:39 +00:00
// Get BackupPaths for all CPAP devices
2014-07-11 12:09:38 +00:00
QList < Machine * > machlist = p_profile - > GetMachines ( MT_CPAP ) ;
2014-07-28 13:56:29 +00:00
QList < ImportPath > paths ;
2014-05-13 01:28:41 +00:00
Q_FOREACH ( Machine * m , machlist ) {
2014-07-28 13:56:29 +00:00
paths . append ( ImportPath ( m - > getBackupPath ( ) , lookupLoader ( m ) ) ) ;
2014-05-13 01:28:41 +00:00
}
if ( paths . size ( ) > 0 ) {
2014-07-28 13:56:29 +00:00
int c = 0 ;
Q_FOREACH ( ImportPath path , paths ) {
c + = importCPAP ( path , tr ( " Please wait, importing from backup folder(s)... " ) ) ;
}
if ( c > 0 ) {
finishCPAPImport ( ) ;
2014-05-11 18:31:48 +00:00
}
}
2011-06-27 06:26:29 +00:00
}
2014-04-28 18:28:10 +00:00
# ifdef Q_OS_UNIX
2014-05-01 22:45:41 +00:00
# include <stdio.h>
# include <unistd.h>
2014-04-28 18:28:10 +00:00
2014-05-01 22:45:41 +00:00
# if defined(Q_OS_MAC) || defined(Q_OS_BSD4)
# include <sys / mount.h>
2016-01-05 06:06:32 +00:00
# elif defined(Q_OS_HAIKU)
// nothing needed
2014-05-01 22:45:41 +00:00
# else
# include <sys / statfs.h>
# include <mntent.h>
# endif // Q_OS_MAC/BSD
2014-04-28 18:28:10 +00:00
# endif // Q_OS_UNIX
//! \brief Returns a list of drive mountpoints
QStringList getDriveList ( )
2011-06-26 08:30:44 +00:00
{
2014-04-28 18:28:10 +00:00
QStringList drivelist ;
2020-09-10 00:55:42 +00:00
bool crostini_detected = false ;
2014-04-28 18:28:10 +00:00
2020-06-09 21:10:25 +00:00
# if QT_VERSION >= QT_VERSION_CHECK(5,4,0)
# if defined(Q_OS_LINUX)
# define VFAT "vfat"
2020-06-10 19:47:25 +00:00
# elif defined(Q_OS_WIN)
2020-06-09 21:10:25 +00:00
# define VFAT "FAT32"
2020-09-10 01:27:58 +00:00
Q_UNUSED ( crostini_detected )
2020-06-09 21:10:25 +00:00
# elif defined(Q_OS_MAC)
2020-06-10 02:11:34 +00:00
# define VFAT "msdos"
2020-09-10 01:27:58 +00:00
Q_UNUSED ( crostini_detected )
# endif
2020-06-09 21:10:25 +00:00
foreach ( const QStorageInfo & storage , QStorageInfo : : mountedVolumes ( ) ) {
if ( storage . isValid ( ) & & storage . isReady ( ) ) {
2023-06-13 16:32:51 +00:00
# ifdef DEBUG_SDCARD
2020-06-10 02:11:34 +00:00
if ( storage . fileSystemType ( ) ! = " tmpfs " ) { // Don't show all the Linux tmpfs mount points!
qDebug ( ) < < " Device: " < < storage . device ( ) ;
qDebug ( ) < < " Path: " < < storage . rootPath ( ) ;
qDebug ( ) < < " Name: " < < storage . name ( ) ; // ...
qDebug ( ) < < " FS Type: " < < storage . fileSystemType ( ) ;
}
2023-06-13 16:32:51 +00:00
# endif
2020-06-09 21:10:25 +00:00
if ( storage . fileSystemType ( ) = = VFAT ) {
qDebug ( ) < < " Adding " < < storage . name ( ) < < " on " < < storage . rootPath ( ) < < " to drivelist " ;
2020-08-26 01:09:53 +00:00
drivelist . append ( storage . rootPath ( ) ) ;
2020-09-10 00:55:42 +00:00
} else if ( storage . fileSystemType ( ) = = " 9p " ) {
qDebug ( ) < < " Crostini filesystem 9p found " ;
crostini_detected = true ;
2020-06-09 21:10:25 +00:00
}
}
}
2014-04-28 03:27:33 +00:00
# endif
2020-08-26 01:09:53 +00:00
# if defined(Q_OS_LINUX)
2020-09-10 00:55:42 +00:00
if ( crostini_detected ) {
QString mntName ( " /mnt/chromeos/removable " ) ;
QDir mnt ( mntName ) ;
qDebug ( ) < < " Checking for " < < mntName ;
if ( mnt . exists ( ) ) {
qDebug ( ) < < " Checking Crostini removable folders " ;
QFileInfoList mntPts = mnt . entryInfoList ( ) ;
foreach ( const auto dir , mntPts ) {
qDebug ( ) < < " Adding " < < dir . filePath ( ) < < " to drivelist " ;
drivelist . append ( dir . filePath ( ) ) ;
}
} else {
drivelist . clear ( ) ;
drivelist . append ( " CROSTINI " ) ;
2020-08-26 01:09:53 +00:00
}
}
2023-06-13 16:32:51 +00:00
# endif
2014-04-28 18:28:10 +00:00
return drivelist ;
}
2018-06-07 01:53:20 +00:00
extern MainWindow * mainwin ;
2016-03-08 02:17:00 +00:00
void ImportDialogScan : : cancelbutton ( )
{
mainwin - > importScanCancelled = true ;
hide ( ) ;
}
2014-07-28 13:56:29 +00:00
QList < ImportPath > MainWindow : : detectCPAPCards ( )
2014-04-28 18:28:10 +00:00
{
2020-03-30 20:37:43 +00:00
const int timeout = 20000 ; // twenty seconds
2014-04-28 03:27:33 +00:00
2014-07-28 13:56:29 +00:00
QList < ImportPath > detectedCards ;
2020-03-30 20:37:43 +00:00
importScanCancelled = false ;
QString lastpath = ( * p_profile ) [ STR_PREF_LastCPAPPath ] . toString ( ) ;
2011-11-20 23:39:55 +00:00
2014-05-25 07:07:08 +00:00
QList < MachineLoader * > loaders = GetLoaders ( MT_CPAP ) ;
2023-02-12 01:50:02 +00:00
QElapsedTimer time ;
2014-05-11 17:29:26 +00:00
time . start ( ) ;
2014-05-13 01:28:41 +00:00
// Create dialog
2016-03-08 02:17:00 +00:00
ImportDialogScan popup ( this ) ; //, Qt::SplashScreen);
2014-07-25 07:53:48 +00:00
QLabel waitmsg ( tr ( " Please insert your CPAP data card... " ) ) ;
2014-05-13 01:28:41 +00:00
QProgressBar progress ;
2014-07-02 16:16:12 +00:00
QVBoxLayout waitlayout ;
popup . setLayout ( & waitlayout ) ;
QHBoxLayout layout2 ;
QIcon icon ( " ://icons/sdcard.png " ) ;
QPushButton skipbtn ( icon , tr ( " Choose a folder " ) ) ;
2016-03-08 02:17:00 +00:00
QPushButton cancelbtn ( STR_MessageBox_Cancel ) ;
2014-07-02 16:16:12 +00:00
skipbtn . setMinimumHeight ( 40 ) ;
2016-03-08 02:17:00 +00:00
cancelbtn . setMinimumHeight ( 40 ) ;
2014-05-11 17:29:26 +00:00
waitlayout . addWidget ( & waitmsg , 1 , Qt : : AlignCenter ) ;
2014-05-13 01:28:41 +00:00
waitlayout . addWidget ( & progress , 1 ) ;
2014-07-02 16:16:12 +00:00
waitlayout . addLayout ( & layout2 , 1 ) ;
layout2 . addWidget ( & skipbtn ) ;
2016-03-08 02:17:00 +00:00
layout2 . addWidget ( & cancelbtn ) ;
2014-05-11 18:31:48 +00:00
popup . connect ( & skipbtn , SIGNAL ( clicked ( ) ) , & popup , SLOT ( hide ( ) ) ) ;
2016-03-08 02:17:00 +00:00
popup . connect ( & cancelbtn , SIGNAL ( clicked ( ) ) , & popup , SLOT ( cancelbutton ( ) ) ) ;
2014-05-13 01:28:41 +00:00
progress . setValue ( 0 ) ;
progress . setMaximum ( timeout ) ;
progress . setVisible ( true ) ;
2020-03-30 20:37:43 +00:00
// importScanCancelled = false;
2014-05-11 17:29:26 +00:00
popup . show ( ) ;
QApplication : : processEvents ( ) ;
2020-03-30 20:37:43 +00:00
// QString lastpath = (*p_profile)[STR_PREF_LastCPAPPath].toString();
2014-05-13 01:28:41 +00:00
2014-05-11 17:29:26 +00:00
do {
2014-05-13 01:28:41 +00:00
// Rescan in case card inserted
2014-05-11 17:29:26 +00:00
QStringList AutoScannerPaths = getDriveList ( ) ;
2020-11-16 04:38:12 +00:00
if ( AutoScannerPaths . contains ( " CROSTINI " ) ) { // no Crostini removable drives found!
if ( ( lastpath . size ( ) > 0 ) & & ( ! AutoScannerPaths . contains ( lastpath ) ) ) {
if ( QFile ( lastpath ) . exists ( ) ) {
AutoScannerPaths . insert ( 0 , lastpath ) ;
}
}
else {
QMessageBox : : warning ( nullptr , STR_MessageBox_Warning ,
QObject : : tr ( " Chromebook file system detected, but no removable device found \n " ) +
QObject : : tr ( " You must share your SD card with Linux using the ChromeOS Files program " ) ) ;
break ; // break out of the 20 second wait loop
}
}
2020-03-30 20:37:43 +00:00
// AutoScannerPaths.push_back(lastpath);
qDebug ( ) < < " Drive list size: " < < AutoScannerPaths . size ( ) ;
2014-09-29 14:41:31 +00:00
2020-03-30 20:37:43 +00:00
if ( ( lastpath . size ( ) > 0 ) & & ( ! AutoScannerPaths . contains ( lastpath ) ) ) {
2020-06-27 02:57:08 +00:00
if ( QFile ( lastpath ) . exists ( ) )
AutoScannerPaths . insert ( 0 , lastpath ) ;
2014-09-29 14:41:31 +00:00
}
2014-05-13 01:28:41 +00:00
2014-05-11 17:29:26 +00:00
Q_FOREACH ( const QString & path , AutoScannerPaths ) {
2022-02-27 14:18:39 +00:00
// Scan through available device loaders and test if this folder contains valid folder structure
2014-05-11 17:29:26 +00:00
Q_FOREACH ( MachineLoader * loader , loaders ) {
if ( loader - > Detect ( path ) ) {
2014-07-28 13:56:29 +00:00
detectedCards . append ( ImportPath ( path , loader ) ) ;
2014-05-11 17:29:26 +00:00
2014-07-28 13:56:29 +00:00
qDebug ( ) < < " Found " < < loader - > loaderName ( ) < < " datacard at " < < path ;
2014-04-28 03:27:33 +00:00
}
2016-03-08 02:17:00 +00:00
QApplication : : processEvents ( ) ;
2014-04-28 03:27:33 +00:00
}
2014-04-28 18:28:10 +00:00
}
2014-05-11 17:29:26 +00:00
int el = time . elapsed ( ) ;
2014-05-13 01:28:41 +00:00
progress . setValue ( el ) ;
2020-03-30 20:37:43 +00:00
if ( el > timeout )
break ;
if ( ! popup . isVisible ( ) )
break ;
2014-05-13 01:28:41 +00:00
// needs a slight delay here
2020-03-30 20:37:43 +00:00
for ( int i = 0 ; i < 20 ; + + i ) {
2016-03-08 02:17:00 +00:00
QThread : : msleep ( 50 ) ;
QApplication : : processEvents ( ) ;
}
2014-07-28 13:56:29 +00:00
} while ( detectedCards . size ( ) = = 0 ) ;
2014-09-29 14:41:31 +00:00
2014-05-11 17:29:26 +00:00
popup . hide ( ) ;
2014-05-11 18:31:48 +00:00
popup . disconnect ( & skipbtn , SIGNAL ( clicked ( ) ) , & popup , SLOT ( hide ( ) ) ) ;
2016-03-08 02:17:00 +00:00
popup . disconnect ( & cancelbtn , SIGNAL ( clicked ( ) ) , & popup , SLOT ( hide ( ) ) ) ;
2014-05-11 18:31:48 +00:00
2014-07-28 13:56:29 +00:00
return detectedCards ;
2014-05-13 01:28:41 +00:00
}
2014-07-28 13:56:29 +00:00
2014-05-13 01:28:41 +00:00
void MainWindow : : on_action_Import_Data_triggered ( )
{
2015-12-21 21:33:33 +00:00
static bool in_import = false ;
2019-03-25 23:38:16 +00:00
if ( p_profile = = nullptr ) {
Notify ( tr ( " No profile has been selected for Import. " ) , STR_MessageBox_Busy ) ;
return ;
}
2014-05-13 01:28:41 +00:00
if ( m_inRecalculation ) {
2014-05-17 05:04:40 +00:00
Notify ( tr ( " Access to Import has been blocked while recalculations are in progress. " ) , STR_MessageBox_Busy ) ;
2014-05-13 01:28:41 +00:00
return ;
}
2015-12-21 21:33:33 +00:00
if ( in_import ) {
Notify ( tr ( " Import is already running in the background. " ) , STR_MessageBox_Busy ) ;
return ;
}
in_import = true ;
2014-05-13 01:28:41 +00:00
2018-06-07 00:09:06 +00:00
ui - > tabWidget - > setCurrentWidget ( welcome ) ;
QApplication : : processEvents ( ) ;
2020-01-21 16:56:22 +00:00
QList < ImportPath > datacards = selectCPAPDataCards ( tr ( " Would you like to import from this location? " ) ) ;
if ( datacards . size ( ) > 0 ) {
importCPAPDataCards ( datacards ) ;
}
in_import = false ;
}
2021-09-02 19:49:34 +00:00
QList < ImportPath > MainWindow : : selectCPAPDataCards ( const QString & prompt , bool alwaysPrompt )
2020-01-21 16:56:22 +00:00
{
2014-07-28 13:56:29 +00:00
QList < ImportPath > datacards = detectCPAPCards ( ) ;
2014-05-13 01:28:41 +00:00
2016-03-08 12:31:46 +00:00
if ( importScanCancelled ) {
2020-01-21 16:56:22 +00:00
datacards . clear ( ) ;
return datacards ;
2016-03-08 12:31:46 +00:00
}
2016-03-08 02:17:00 +00:00
2014-05-25 07:07:08 +00:00
QList < MachineLoader * > loaders = GetLoaders ( MT_CPAP ) ;
2014-05-13 01:28:41 +00:00
2023-02-12 01:50:02 +00:00
QElapsedTimer time ;
2014-05-13 01:28:41 +00:00
time . start ( ) ;
2018-05-07 18:42:23 +00:00
2014-05-13 01:28:41 +00:00
2014-04-17 05:52:25 +00:00
bool asknew = false ;
2020-01-21 17:56:08 +00:00
// TODO: This should either iterate over all detected cards and prompt for each, or it should only
// provide the one confirmed card in the list.
2014-07-28 13:56:29 +00:00
if ( datacards . size ( ) > 0 ) {
MachineInfo info = datacards [ 0 ] . loader - > PeekInfo ( datacards [ 0 ] . path ) ;
QString infostr ;
if ( ! info . model . isEmpty ( ) ) {
QString infostr2 = info . model + " ( " + info . serial + " ) " ;
infostr = tr ( " A %1 file structure for a %2 was located at: " ) . arg ( info . brand ) . arg ( infostr2 ) ;
} else {
infostr = tr ( " A %1 file structure was located at: " ) . arg ( datacards [ 0 ] . loader - > loaderName ( ) ) ;
}
2014-04-17 05:52:25 +00:00
2021-09-02 19:49:34 +00:00
if ( alwaysPrompt | | ! p_profile - > cpap - > autoImport ( ) ) {
2014-08-20 20:50:55 +00:00
QMessageBox mbox ( QMessageBox : : NoIcon ,
2019-02-15 01:37:29 +00:00
tr ( " CPAP Data Located " ) , infostr + " \n \n " + QDir : : toNativeSeparators ( datacards [ 0 ] . path ) + " \n \n " +
2020-01-21 17:56:08 +00:00
prompt ,
2019-02-15 01:37:29 +00:00
QMessageBox : : Yes | QMessageBox : : No | QMessageBox : : Cancel , this ) ;
2014-08-20 20:50:55 +00:00
mbox . setDefaultButton ( QMessageBox : : Yes ) ;
mbox . setButtonText ( QMessageBox : : No , tr ( " Specify " ) ) ;
2014-09-29 14:41:31 +00:00
QPixmap pixmap = datacards [ 0 ] . loader - > getPixmap ( datacards [ 0 ] . loader - > PeekInfo ( datacards [ 0 ] . path ) . series ) . scaled ( 64 , 64 ) ;
2014-09-17 17:20:01 +00:00
//QPixmap pixmap = QPixmap(getCPAPPixmap(datacards[0].loader->loaderName())).scaled(64,64);
2014-08-20 20:50:55 +00:00
mbox . setIconPixmap ( pixmap ) ;
int res = mbox . exec ( ) ;
if ( res = = QMessageBox : : Cancel ) {
// Give the communal progress bar back
2020-01-21 16:56:22 +00:00
datacards . clear ( ) ;
return datacards ;
2014-08-20 20:50:55 +00:00
} else if ( res = = QMessageBox : : No ) {
2018-05-07 18:42:23 +00:00
//waitmsg->setText(tr("Please wait, launching file dialog..."));
2014-08-20 20:50:55 +00:00
datacards . clear ( ) ;
asknew = true ;
}
}
2014-04-28 04:05:20 +00:00
} else {
2018-05-07 18:42:23 +00:00
//waitmsg->setText(tr("No CPAP data card detected, launching file dialog..."));
2014-04-28 04:05:20 +00:00
asknew = true ;
2012-01-06 16:07:54 +00:00
}
2011-11-20 23:39:55 +00:00
2020-01-21 17:56:08 +00:00
// TODO: Get rid of the reminder and instead validate the user's selection (using the loader detection
// below) and loop until the user either cancels or selects a valid folder.
//
// It doesn't look like there's any way to implement such a programmatic filter within the file
// selection dialog without resorting to a non-native dialog.
2011-11-20 23:39:55 +00:00
if ( asknew ) {
2018-05-07 18:42:23 +00:00
// popup.show();
2020-01-21 17:56:08 +00:00
mainwin - > Notify ( tr ( " Please remember to select the root folder or drive letter of your data card, and not a folder inside it. " ) ,
2014-07-13 10:03:00 +00:00
tr ( " Import Reminder " ) , 8000 ) ;
2014-04-28 03:27:33 +00:00
2014-05-16 09:30:11 +00:00
QFileDialog w ( this ) ;
2014-07-13 10:03:00 +00:00
QString folder ;
if ( p_profile - > contains ( STR_PREF_LastCPAPPath ) ) {
folder = ( * p_profile ) [ STR_PREF_LastCPAPPath ] . toString ( ) ;
} else {
2020-01-21 16:56:22 +00:00
// TODO: Is a writable path really the best place to direct the user to find their SD card data?
2014-07-13 10:03:00 +00:00
folder = QStandardPaths : : writableLocation ( QStandardPaths : : DocumentsLocation ) ;
}
2014-05-18 17:06:58 +00:00
2014-07-13 10:03:00 +00:00
w . setDirectory ( folder ) ;
2011-12-13 12:49:48 +00:00
w . setFileMode ( QFileDialog : : Directory ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , true ) ;
2021-06-07 01:00:33 +00:00
w . setWindowTitle ( tr ( " Find your CPAP data card " ) ) ;
2014-05-18 17:06:58 +00:00
// This doesn't work on WinXP
2014-05-19 21:05:12 +00:00
# if defined(Q_OS_MAC)
2014-05-18 17:06:58 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , false ) ;
2014-05-19 21:05:12 +00:00
# elif defined(Q_OS_UNIX)
2014-05-18 17:06:58 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , false ) ;
2014-05-19 21:05:12 +00:00
# elif defined(Q_OS_WIN)
2014-05-18 17:06:58 +00:00
// check the Os version.. winxp chokes
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
# endif
2014-05-16 09:30:11 +00:00
//#else
// w.setOption(QFileDialog::DontUseNativeDialog, false);
// QListView *l = w.findChild<QListView *>("listView");
// if (l) {
// l->setSelectionMode(QAbstractItemView::MultiSelection);
// }
// QTreeView *t = w.findChild<QTreeView *>();
// if (t) {
// t->setSelectionMode(QAbstractItemView::MultiSelection);
// }
//#endif
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) ! = QDialog : : Accepted ) {
2020-01-21 16:56:22 +00:00
datacards . clear ( ) ;
return datacards ;
2011-11-20 23:39:55 +00:00
}
2014-07-13 10:03:00 +00:00
2014-04-17 05:52:25 +00:00
2023-02-23 23:36:26 +00:00
bool found = false ;
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < w . selectedFiles ( ) . size ( ) ; i + + ) {
2014-07-28 13:56:29 +00:00
Q_FOREACH ( MachineLoader * loader , loaders ) {
if ( loader - > Detect ( w . selectedFiles ( ) . at ( i ) ) ) {
2023-02-23 23:36:26 +00:00
found = true ;
2014-07-28 13:56:29 +00:00
datacards . append ( ImportPath ( w . selectedFiles ( ) . at ( i ) , loader ) ) ;
break ;
}
}
2011-06-30 04:55:20 +00:00
}
2023-02-23 23:36:26 +00:00
if ( ! found ) {
QMessageBox msgBox ( QMessageBox : : Information , tr ( " OSCAR Information " ) , tr ( " No supported data was found " ) , QMessageBox : : Ok ) ;
msgBox . setInformativeText ( w . selectedFiles ( ) . at ( 0 ) ) ;
msgBox . exec ( ) ;
}
2014-04-28 03:27:33 +00:00
}
2023-06-13 16:32:51 +00:00
2020-01-21 16:56:22 +00:00
return datacards ;
}
2011-06-26 08:30:44 +00:00
2020-01-21 16:56:22 +00:00
void MainWindow : : importCPAPDataCards ( const QList < ImportPath > & datacards )
{
2014-07-29 14:38:59 +00:00
bool newdata = false ;
2011-12-03 05:10:23 +00:00
2014-07-29 14:38:59 +00:00
int c = - 1 ;
2014-07-28 13:56:29 +00:00
for ( int i = 0 ; i < datacards . size ( ) ; i + + ) {
QString dir = datacards [ i ] . path ;
MachineLoader * loader = datacards [ i ] . loader ;
if ( ! loader ) continue ;
2014-04-17 05:52:25 +00:00
2011-11-20 23:39:55 +00:00
if ( ! dir . isEmpty ( ) ) {
2014-07-29 14:38:59 +00:00
c = importCPAP ( datacards [ i ] , tr ( " Importing Data " ) ) ;
2011-11-20 23:39:55 +00:00
qDebug ( ) < < " Finished Importing data " < < c ;
2014-04-17 05:52:25 +00:00
2014-07-29 14:38:59 +00:00
if ( c > = 0 ) {
2014-09-29 14:41:31 +00:00
QDir d ( dir . section ( " / " , 0 , - 1 ) ) ;
2014-07-13 10:03:00 +00:00
( * p_profile ) [ STR_PREF_LastCPAPPath ] = d . absolutePath ( ) ;
2014-07-29 14:38:59 +00:00
}
2014-07-13 10:03:00 +00:00
2014-07-29 14:38:59 +00:00
if ( c > 0 ) {
newdata = true ;
2011-11-20 23:39:55 +00:00
}
}
}
2014-04-17 05:52:25 +00:00
2014-07-29 14:38:59 +00:00
if ( newdata ) {
2014-05-13 01:28:41 +00:00
finishCPAPImport ( ) ;
2014-07-29 14:38:59 +00:00
PopulatePurgeMenu ( ) ;
2011-06-26 08:30:44 +00:00
}
}
2014-07-13 10:03:00 +00:00
2020-01-21 16:56:22 +00:00
2014-04-17 05:52:25 +00:00
QMenu * MainWindow : : CreateMenu ( QString title )
2011-07-30 04:54:22 +00:00
{
2014-04-17 05:52:25 +00:00
QMenu * menu = new QMenu ( title , ui - > menubar ) ;
ui - > menubar - > insertMenu ( ui - > menu_Help - > menuAction ( ) , menu ) ;
2011-07-30 04:54:22 +00:00
return menu ;
}
2011-06-26 08:30:44 +00:00
void MainWindow : : on_action_Fullscreen_triggered ( )
{
2014-04-17 05:52:25 +00:00
if ( ui - > action_Fullscreen - > isChecked ( ) ) {
2019-04-03 22:32:33 +00:00
this - > showMaximized ( ) ;
2014-04-17 05:52:25 +00:00
} else {
2011-06-26 08:30:44 +00:00
this - > showNormal ( ) ;
2014-04-17 05:52:25 +00:00
}
2011-06-26 08:30:44 +00:00
}
2013-09-14 23:32:14 +00:00
void MainWindow : : setRecBoxHTML ( QString html )
2011-12-22 13:22:40 +00:00
{
2013-09-14 23:32:14 +00:00
ui - > recordsBox - > setHtml ( html ) ;
2012-01-06 22:44:14 +00:00
}
2019-06-12 20:32:22 +00:00
void MainWindow : : setStatsHTML ( QString html )
{
ui - > statisticsView - > setHtml ( html ) ;
}
2011-12-26 04:41:28 +00:00
void MainWindow : : updateFavourites ( )
{
2014-07-11 12:09:38 +00:00
QDate date = p_profile - > LastDay ( MT_JOURNAL ) ;
2014-04-17 05:52:25 +00:00
if ( ! date . isValid ( ) ) {
2011-12-26 18:26:06 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
2011-12-26 04:41:28 +00:00
2014-04-17 05:52:25 +00:00
QString html = " <html><head><style type='text/css'> "
" p,a,td,body { font-family: ' " + QApplication : : font ( ) . family ( ) + " '; } "
" p,a,td,body { font-size: " + QString : : number ( QApplication : : font ( ) . pointSize ( ) + 2 ) + " px; } "
" a:link,a:visited { color: inherit; text-decoration: none; } " //font-weight: normal;
" a:hover { background-color: inherit; color: white; text-decoration:none; font-weight: bold; } "
" </style></head><body> "
" <table width=100% cellpadding=2 cellspacing=0> " ;
2011-12-28 14:03:09 +00:00
2011-12-26 04:41:28 +00:00
do {
2014-07-11 12:09:38 +00:00
Day * journal = p_profile - > GetDay ( date , MT_JOURNAL ) ;
2014-04-17 05:52:25 +00:00
2011-12-26 04:41:28 +00:00
if ( journal ) {
2014-04-17 05:52:25 +00:00
if ( journal - > size ( ) > 0 ) {
2014-08-20 17:17:13 +00:00
Session * sess = journal - > firstSession ( MT_JOURNAL ) ;
2020-11-04 17:23:14 +00:00
if ( ! sess ) {
qWarning ( ) < < " null session for MT_JOURNAL first session " ;
} else {
2020-11-03 21:50:04 +00:00
QString tmp ;
bool filtered = ! bookmarkFilter . isEmpty ( ) ;
bool found = ! filtered ;
2014-04-17 05:52:25 +00:00
2020-11-03 21:50:04 +00:00
if ( sess - > settings . contains ( Bookmark_Start ) ) {
//QVariantList start=sess->settings[Bookmark_Start].toList();
//QVariantList end=sess->settings[Bookmark_End].toList();
QStringList notes = sess - > settings [ Bookmark_Notes ] . toStringList ( ) ;
2012-01-06 16:07:54 +00:00
2020-11-03 21:50:04 +00:00
if ( notes . size ( ) > 0 ) {
tmp + = QString ( " <tr><td><b><a href='daily=%1'>%2</a></b><br/> " )
. arg ( date . toString ( Qt : : ISODate ) )
. arg ( date . toString ( MedDateFormat ) ) ;
2012-01-06 18:15:21 +00:00
2020-11-03 21:50:04 +00:00
tmp + = " <list> " ;
2014-04-17 05:52:25 +00:00
2020-11-03 21:50:04 +00:00
for ( int i = 0 ; i < notes . size ( ) ; i + + ) {
//QDate d=start[i].toDate();
QString note = notes [ i ] ;
2014-04-17 05:52:25 +00:00
2020-11-03 21:50:04 +00:00
if ( filtered & & note . contains ( bookmarkFilter , Qt : : CaseInsensitive ) ) {
found = true ;
}
tmp + = " <li> " + note + " </li> " ;
2014-04-17 05:52:25 +00:00
}
2020-11-03 21:50:04 +00:00
tmp + = " </list></td> " ;
2011-12-26 18:26:06 +00:00
}
2011-12-26 04:41:28 +00:00
}
2014-04-17 05:52:25 +00:00
2020-11-03 21:50:04 +00:00
if ( found ) { html + = tmp ; }
}
2011-12-26 04:41:28 +00:00
}
}
2014-04-17 05:52:25 +00:00
date = date . addDays ( - 1 ) ;
2014-07-11 12:09:38 +00:00
} while ( date > = p_profile - > FirstDay ( MT_JOURNAL ) ) ;
2014-04-17 05:52:25 +00:00
html + = " </table></body></html> " ;
2012-01-06 16:07:54 +00:00
ui - > bookmarkView - > setHtml ( html ) ;
2011-12-26 04:41:28 +00:00
}
2011-06-26 08:30:44 +00:00
void MainWindow : : on_dailyButton_clicked ( )
{
2018-04-22 12:06:48 +00:00
if ( daily ) {
ui - > tabWidget - > setCurrentWidget ( daily ) ;
daily - > RedrawGraphs ( ) ;
}
2011-06-26 08:30:44 +00:00
}
void MainWindow : : on_overviewButton_clicked ( )
{
2018-04-22 12:06:48 +00:00
if ( overview ) {
ui - > tabWidget - > setCurrentWidget ( overview ) ;
}
2011-06-26 08:30:44 +00:00
}
2014-04-17 05:52:25 +00:00
void MainWindow : : aboutBoxLinkClicked ( const QUrl & url )
2013-01-20 19:39:01 +00:00
{
QDesktopServices : : openUrl ( url ) ;
}
2011-06-26 16:35:54 +00:00
void MainWindow : : on_action_About_triggered ( )
{
2018-05-07 12:13:07 +00:00
AboutDialog * about = new AboutDialog ( this ) ;
2013-01-20 16:31:51 +00:00
2018-05-07 12:13:07 +00:00
about - > exec ( ) ;
2013-01-20 16:31:51 +00:00
2018-05-07 12:13:07 +00:00
about - > deleteLater ( ) ;
2011-06-26 16:35:54 +00:00
}
2011-06-27 15:00:00 +00:00
2011-07-17 15:57:45 +00:00
void MainWindow : : on_actionDebug_toggled ( bool checked )
{
2018-04-22 12:06:48 +00:00
AppSetting - > setShowDebug ( checked ) ;
2014-04-17 05:52:25 +00:00
2014-06-20 05:25:50 +00:00
logger - > strlock . lock ( ) ;
2011-07-17 15:57:45 +00:00
if ( checked ) {
2011-07-17 16:05:16 +00:00
ui - > logText - > show ( ) ;
2011-07-17 15:57:45 +00:00
} else {
2011-07-17 16:05:16 +00:00
ui - > logText - > hide ( ) ;
2011-07-17 15:57:45 +00:00
}
2014-06-20 05:25:50 +00:00
// QApplication::processEvents();
logger - > strlock . unlock ( ) ;
2011-07-17 15:57:45 +00:00
}
2011-07-18 03:36:26 +00:00
2011-07-28 14:20:59 +00:00
void MainWindow : : on_action_Reset_Graph_Layout_triggered ( )
{
2014-04-17 05:52:25 +00:00
if ( daily & & ( ui - > tabWidget - > currentWidget ( ) = = daily ) ) { daily - > ResetGraphLayout ( ) ; }
if ( overview & & ( ui - > tabWidget - > currentWidget ( ) = = overview ) ) { overview - > ResetGraphLayout ( ) ; }
2011-07-28 14:20:59 +00:00
}
2011-08-02 22:37:15 +00:00
2020-02-17 14:39:38 +00:00
/*
2019-07-31 02:59:01 +00:00
void MainWindow : : on_action_Reset_Graph_Order_triggered ( )
{
2019-09-29 03:15:16 +00:00
if ( daily & & ( ui - > tabWidget - > currentWidget ( ) = = daily ) ) { daily - > ResetGraphOrder ( 0 ) ; }
2019-07-31 02:59:01 +00:00
2019-09-29 03:15:16 +00:00
if ( overview & & ( ui - > tabWidget - > currentWidget ( ) = = overview ) ) { overview - > ResetGraphOrder ( 0 ) ; }
}
2020-02-17 14:39:38 +00:00
*/
2019-09-29 03:15:16 +00:00
void MainWindow : : on_action_Standard_Graph_Order_triggered ( )
{
if ( daily & & ( ui - > tabWidget - > currentWidget ( ) = = daily ) ) { daily - > ResetGraphOrder ( 1 ) ; }
if ( overview & & ( ui - > tabWidget - > currentWidget ( ) = = overview ) ) { overview - > ResetGraphOrder ( 1 ) ; }
}
void MainWindow : : on_action_Advanced_Graph_Order_triggered ( )
{
if ( daily & & ( ui - > tabWidget - > currentWidget ( ) = = daily ) ) { daily - > ResetGraphOrder ( 2 ) ; }
if ( overview & & ( ui - > tabWidget - > currentWidget ( ) = = overview ) ) { overview - > ResetGraphOrder ( 2 ) ; }
2019-07-31 02:59:01 +00:00
}
2011-08-02 22:37:15 +00:00
void MainWindow : : on_action_Preferences_triggered ( )
{
2018-04-22 12:06:48 +00:00
if ( ! p_profile ) {
mainwin - > Notify ( tr ( " Please open a profile first. " ) ) ;
return ;
}
2013-09-16 04:30:38 +00:00
2012-01-10 06:19:49 +00:00
if ( m_inRecalculation ) {
2013-09-09 15:56:02 +00:00
mainwin - > Notify ( tr ( " Access to Preferences has been blocked until recalculation completes. " ) ) ;
2012-01-10 06:19:49 +00:00
return ;
}
2014-04-17 05:52:25 +00:00
PreferencesDialog pd ( this , p_profile ) ;
prefdialog = & pd ;
if ( pd . exec ( ) = = PreferencesDialog : : Accepted ) {
2019-07-02 15:04:43 +00:00
// Apply any updates from preference changes (notably fonts)
2019-07-05 01:20:19 +00:00
setApplicationFont ( ) ;
2023-05-27 11:52:10 +00:00
2023-06-09 16:47:10 +00:00
if ( m_clinicalMode ! = p_profile - > cpap - > clinicalMode ( ) ) {
m_clinicalMode = p_profile - > cpap - > clinicalMode ( ) ; ;
2023-05-27 11:52:10 +00:00
reloadProfile ( ) ;
} ;
2011-09-23 03:54:48 +00:00
if ( daily ) {
daily - > RedrawGraphs ( ) ;
}
2014-04-17 05:52:25 +00:00
2011-09-23 03:54:48 +00:00
if ( overview ) {
2019-07-02 15:25:47 +00:00
overview - > ResetFont ( ) ;
2014-09-11 14:23:08 +00:00
overview - > RebuildGraphs ( true ) ;
2011-09-23 03:54:48 +00:00
}
2019-07-02 15:04:43 +00:00
if ( welcome )
welcome - > refreshPage ( ) ;
if ( profileSelector )
profileSelector - > updateProfileList ( ) ;
2023-05-26 21:29:56 +00:00
GenerateStatistics ( ) ;
2019-07-02 15:04:43 +00:00
// These attempts to update calendar after a change to application font do NOT work, and I can find no QT documentation suggesting
// that changing the font after Calendar is created is even possible.
// qDebug() << "application font family set to" << QApplication::font().family() << "and font" << QApplication::font();
// ui->statStartDate->calendarWidget()->setFont(QApplication::font());
// ui->statStartDate->calendarWidget()->repaint();
2011-08-02 22:37:15 +00:00
}
2014-04-17 05:52:25 +00:00
2014-04-23 13:19:56 +00:00
prefdialog = nullptr ;
2011-08-02 22:37:15 +00:00
}
2011-08-05 00:12:23 +00:00
2014-05-25 07:07:08 +00:00
# include "oximeterimport.h"
QDateTime datetimeDialog ( QDateTime datetime , QString message ) ;
2011-08-05 08:20:28 +00:00
void MainWindow : : on_oximetryButton_clicked ( )
{
2018-04-22 12:06:48 +00:00
if ( p_profile ) {
OximeterImport oxiimp ( this ) ;
oxiimp . exec ( ) ;
2020-01-31 20:35:36 +00:00
PopulatePurgeMenu ( ) ;
2019-08-28 22:23:13 +00:00
if ( overview ) overview - > ReloadGraphs ( ) ;
if ( welcome ) welcome - > refreshPage ( ) ;
2018-04-22 12:06:48 +00:00
}
2011-08-05 08:20:28 +00:00
}
2011-09-04 13:09:21 +00:00
2020-07-05 01:17:25 +00:00
// Called for automatic check for updates
void MainWindow : : CheckForUpdates ( bool showWhenCurrent )
2011-10-21 05:50:31 +00:00
{
2020-07-05 01:17:25 +00:00
updateChecker = new CheckUpdates ( this ) ;
# ifdef NO_CHECKUPDATES
if ( showWhenCurrent )
QMessageBox : : information ( nullptr , STR_MessageBox_Information , tr ( " Check for updates not implemented " ) ) ;
2019-03-10 16:03:19 +00:00
# else
2020-07-05 01:17:25 +00:00
updateChecker - > checkForUpdates ( showWhenCurrent ) ;
2019-03-10 16:03:19 +00:00
# endif
2011-10-21 05:50:31 +00:00
}
2020-07-05 01:17:25 +00:00
// Called for manual check for updates
void MainWindow : : on_action_Check_for_Updates_triggered ( )
2011-09-06 07:33:34 +00:00
{
2020-07-05 01:17:25 +00:00
CheckForUpdates ( true ) ;
2011-09-06 07:33:34 +00:00
}
2011-09-07 08:08:27 +00:00
2014-08-09 19:45:46 +00:00
bool toolbox_visible = false ;
2011-09-07 08:08:27 +00:00
void MainWindow : : on_action_Screenshot_triggered ( )
{
2019-05-20 05:41:05 +00:00
setUpdatesEnabled ( false ) ;
2019-05-17 18:23:39 +00:00
if ( daily )
daily - > hideSpaceHogs ( ) ;
2014-08-09 19:45:46 +00:00
toolbox_visible = ui - > toolBox - > isVisible ( ) ;
ui - > toolBox - > hide ( ) ;
2019-05-20 05:41:05 +00:00
setUpdatesEnabled ( true ) ;
2014-04-17 05:52:25 +00:00
QTimer : : singleShot ( 250 , this , SLOT ( DelayedScreenshot ( ) ) ) ;
2011-09-07 08:08:27 +00:00
}
2019-05-05 11:40:15 +00:00
2011-09-07 08:08:27 +00:00
void MainWindow : : DelayedScreenshot ( )
{
2018-05-29 23:29:21 +00:00
// Make sure to scale for high resolution displays (like Retina)
2018-06-06 00:48:31 +00:00
// qreal pr = devicePixelRatio();
2019-05-05 11:40:15 +00:00
auto screenshotRect = geometry ( ) ;
auto titleBarHeight = QApplication : : style ( ) - > pixelMetric ( QStyle : : PM_TitleBarHeight ) ;
auto pixmap = QApplication : : primaryScreen ( ) - > grabWindow ( QDesktopWidget ( ) . winId ( ) ,
screenshotRect . left ( ) ,
screenshotRect . top ( ) - titleBarHeight ,
screenshotRect . width ( ) ,
screenshotRect . height ( ) + titleBarHeight ) ;
2014-04-09 16:14:41 +00:00
2020-01-27 19:00:41 +00:00
QString default_filename = " /screenshot- " + QDateTime : : currentDateTime ( ) . toString ( " yyyyMMdd-hhmmss " ) + " .png " ;
QString png_filepath ;
if ( AppSetting - > dontAskWhenSavingScreenshots ( ) ) {
png_filepath = p_pref - > Get ( " {home}/Screenshots " ) ;
QDir dir ( png_filepath ) ;
if ( ! dir . exists ( ) ) {
dir . mkdir ( png_filepath ) ;
}
png_filepath + = default_filename ;
} else {
QString folder = QStandardPaths : : writableLocation ( QStandardPaths : : PicturesLocation ) + default_filename ;
png_filepath = QFileDialog : : getSaveFileName ( this , tr ( " Choose where to save screenshot " ) , folder , tr ( " Image files (*.png) " ) ) ;
if ( png_filepath . isEmpty ( ) = = false & & png_filepath . toLower ( ) . endsWith ( " .png " ) = = false ) {
png_filepath + = " .png " ;
}
2011-09-07 08:08:27 +00:00
}
2013-09-14 23:32:14 +00:00
2020-01-27 19:00:41 +00:00
// png_filepath will be empty if the user canceled the file selection above.
if ( png_filepath . isEmpty ( ) = = false ) {
qDebug ( ) < < " Saving screenshot to " < < png_filepath ;
if ( ! pixmap . save ( png_filepath ) ) {
Notify ( tr ( " There was an error saving screenshot to file \" %1 \" " ) . arg ( QDir : : toNativeSeparators ( png_filepath ) ) ) ;
} else {
Notify ( tr ( " Screenshot saved to file \" %1 \" " ) . arg ( QDir : : toNativeSeparators ( png_filepath ) ) ) ;
}
2013-09-14 23:32:14 +00:00
}
2019-05-20 05:41:05 +00:00
setUpdatesEnabled ( false ) ;
2019-05-17 18:23:39 +00:00
if ( daily )
daily - > showSpaceHogs ( ) ;
2014-08-09 19:45:46 +00:00
ui - > toolBox - > setVisible ( toolbox_visible ) ;
2019-05-20 05:41:05 +00:00
setUpdatesEnabled ( true ) ;
2011-09-07 08:08:27 +00:00
}
2011-09-07 09:15:33 +00:00
2014-04-15 11:02:51 +00:00
void MainWindow : : on_actionView_Oximetry_triggered ( )
2011-09-07 09:15:33 +00:00
{
on_oximetryButton_clicked ( ) ;
}
2011-09-11 06:16:45 +00:00
void MainWindow : : on_actionPrint_Report_triggered ( )
{
2013-09-14 23:32:14 +00:00
Report report ;
2014-04-17 05:52:25 +00:00
if ( ui - > tabWidget - > currentWidget ( ) = = overview ) {
Report : : PrintReport ( overview - > graphView ( ) , STR_TR_Overview ) ;
} else if ( ui - > tabWidget - > currentWidget ( ) = = daily ) {
Report : : PrintReport ( daily - > graphView ( ) , STR_TR_Daily , daily - > getDate ( ) ) ;
2019-06-11 23:43:13 +00:00
} else if ( ui - > tabWidget - > currentWidget ( ) = = ui - > statisticsTab ) {
Statistics : : printReport ( this ) ;
2019-02-12 17:00:05 +00:00
# ifndef helpless
2019-06-11 23:43:13 +00:00
} else if ( ui - > tabWidget - > currentWidget ( ) = = help ) {
help - > print ( & printer ) ; // **** THIS DID NOT SURVIVE REFACTORING STATISTICS PRINT
2019-02-12 17:00:05 +00:00
# endif
2011-09-11 06:16:45 +00:00
}
}
2011-10-01 12:59:05 +00:00
void MainWindow : : on_action_Edit_Profile_triggered ( )
{
2014-05-25 07:07:08 +00:00
NewProfile * newprof = new NewProfile ( this ) ;
2018-04-22 12:06:48 +00:00
QString name = AppSetting - > profileName ( ) ;
2014-05-25 07:07:08 +00:00
newprof - > edit ( name ) ;
newprof - > setWindowModality ( Qt : : ApplicationModal ) ;
newprof - > setModal ( true ) ;
newprof - > exec ( ) ;
qDebug ( ) < < newprof ;
delete newprof ;
2011-10-01 12:59:05 +00:00
}
2011-10-07 05:28:35 +00:00
2011-10-28 11:31:31 +00:00
void MainWindow : : on_action_CycleTabs_triggered ( )
{
int i ;
qDebug ( ) < < " Switching Tabs " ;
2014-04-17 05:52:25 +00:00
i = ui - > tabWidget - > currentIndex ( ) + 1 ;
if ( i > = ui - > tabWidget - > count ( ) ) {
i = 0 ;
}
2011-10-28 11:31:31 +00:00
ui - > tabWidget - > setCurrentIndex ( i ) ;
}
2011-11-14 14:10:46 +00:00
2011-11-21 10:20:11 +00:00
void MainWindow : : on_actionOnline_Users_Guide_triggered ( )
{
2019-03-10 16:03:19 +00:00
// QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=OSCAR_Users_Guide"));
2019-04-16 17:12:26 +00:00
// QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The User's Guide is not yet available"));
if ( QMessageBox : : question ( nullptr , STR_MessageBox_Question , tr ( " The User's Guide will open in your default browser " ) ,
QMessageBox : : Ok | QMessageBox : : Cancel , QMessageBox : : Ok ) = = QMessageBox : : Ok )
QDesktopServices : : openUrl ( QUrl ( " https://www.apneaboard.com/wiki/index.php?title=OSCAR_Help " ) ) ;
2011-11-21 10:20:11 +00:00
}
void MainWindow : : on_action_Frequently_Asked_Questions_triggered ( )
{
2019-02-13 18:22:54 +00:00
// QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Frequently_Asked_Questions"));
2019-02-15 01:37:29 +00:00
QMessageBox : : information ( nullptr , STR_MessageBox_Information , tr ( " The FAQ is not yet implemented " ) ) ;
2011-11-21 10:20:11 +00:00
}
2011-11-27 14:35:25 +00:00
2011-12-01 01:47:09 +00:00
void MainWindow : : on_action_Rebuild_Oximetry_Index_triggered ( )
{
2011-12-21 17:00:19 +00:00
QVector < ChannelID > invalid ;
2011-12-01 01:47:09 +00:00
2014-07-11 12:09:38 +00:00
QList < Machine * > machines = p_profile - > GetMachines ( MT_OXIMETER ) ;
2011-12-01 03:05:23 +00:00
2014-04-17 05:52:25 +00:00
qint64 f = 0 , l = 0 ;
2011-12-23 10:52:31 +00:00
2014-07-11 12:09:38 +00:00
int discard_threshold = p_profile - > oxi - > oxiDiscardThreshold ( ) ;
2011-12-01 03:05:23 +00:00
Machine * m ;
2014-04-17 05:52:25 +00:00
for ( int z = 0 ; z < machines . size ( ) ; z + + ) {
m = machines . at ( z ) ;
2011-12-01 03:05:23 +00:00
//m->sessionlist.erase(m->sessionlist.find(0));
2021-10-27 16:53:29 +00:00
QList < ChannelID > valid = m - > availableChannels ( schema : : ChanType : : ALL ) ;
valid . removeAll ( OXI_PulseChange ) ; // Delete only these and recalculate.
valid . removeAll ( OXI_SPO2Drop ) ;
2011-12-28 06:27:26 +00:00
// For each Session
2014-04-17 05:52:25 +00:00
for ( QHash < SessionID , Session * > : : iterator s = m - > sessionlist . begin ( ) ; s ! = m - > sessionlist . end ( ) ;
s + + ) {
Session * sess = s . value ( ) ;
if ( ! sess ) { continue ; }
2011-12-01 03:05:23 +00:00
sess - > OpenEvents ( ) ;
2011-12-28 06:27:26 +00:00
// For each EventList contained in session
2011-12-01 03:05:23 +00:00
invalid . clear ( ) ;
2014-04-17 05:52:25 +00:00
f = 0 ;
l = 0 ;
for ( QHash < ChannelID , QVector < EventList * > > : : iterator e = sess - > eventlist . begin ( ) ;
e ! = sess - > eventlist . end ( ) ; e + + ) {
2011-12-28 06:27:26 +00:00
// Discard any non data events.
2011-12-01 03:05:23 +00:00
if ( ! valid . contains ( e . key ( ) ) ) {
2011-12-28 06:27:26 +00:00
// delete and push aside for later to clean up
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < e . value ( ) . size ( ) ; i + + ) {
2011-12-01 03:05:23 +00:00
delete e . value ( ) [ i ] ;
2011-12-01 01:47:09 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-01 03:05:23 +00:00
e . value ( ) . clear ( ) ;
invalid . push_back ( e . key ( ) ) ;
} else {
QVector < EventList * > newlist ;
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < e . value ( ) . size ( ) ; i + + ) {
2011-12-03 05:27:57 +00:00
if ( e . value ( ) [ i ] - > count ( ) > ( unsigned ) discard_threshold ) {
2011-12-01 03:05:23 +00:00
newlist . push_back ( e . value ( ) [ i ] ) ;
} else {
delete e . value ( ) [ i ] ;
}
}
2011-12-23 10:52:31 +00:00
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < newlist . size ( ) ; i + + ) {
EventList * el = newlist [ i ] ;
if ( ! f | | f > el - > first ( ) ) { f = el - > first ( ) ; }
if ( ! l | | l < el - > last ( ) ) { l = el - > last ( ) ; }
2011-12-01 03:05:23 +00:00
}
2014-04-17 05:52:25 +00:00
e . value ( ) = newlist ;
2011-12-01 01:47:09 +00:00
}
}
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < invalid . size ( ) ; i + + ) {
2011-12-01 03:05:23 +00:00
sess - > eventlist . erase ( sess - > eventlist . find ( invalid [ i ] ) ) ;
}
2014-04-17 05:52:25 +00:00
if ( f ) { sess - > really_set_first ( f ) ; }
if ( l ) { sess - > really_set_last ( l ) ; }
2011-12-01 03:05:23 +00:00
sess - > m_cnt . clear ( ) ;
sess - > m_sum . clear ( ) ;
sess - > m_min . clear ( ) ;
sess - > m_max . clear ( ) ;
sess - > m_cph . clear ( ) ;
sess - > m_sph . clear ( ) ;
sess - > m_avg . clear ( ) ;
sess - > m_wavg . clear ( ) ;
2012-01-03 08:10:13 +00:00
sess - > m_valuesummary . clear ( ) ;
sess - > m_timesummary . clear ( ) ;
2011-12-01 03:05:23 +00:00
sess - > m_firstchan . clear ( ) ;
sess - > m_lastchan . clear ( ) ;
sess - > SetChanged ( true ) ;
2011-12-01 01:47:09 +00:00
}
2011-12-01 03:05:23 +00:00
2011-12-01 01:47:09 +00:00
}
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < machines . size ( ) ; i + + ) {
Machine * m = machines [ i ] ;
2011-12-01 01:47:09 +00:00
m - > Save ( ) ;
2018-05-30 08:51:43 +00:00
m - > SaveSummaryCache ( ) ;
2011-12-01 01:47:09 +00:00
}
2014-04-17 05:52:25 +00:00
2018-06-08 03:06:24 +00:00
daily - > LoadDate ( daily - > getDate ( ) ) ;
2014-09-24 01:42:14 +00:00
overview - > ReloadGraphs ( ) ;
2011-12-01 01:47:09 +00:00
}
2018-05-05 10:07:40 +00:00
void MainWindow : : reloadProfile ( )
{
QString username = p_profile - > user - > userName ( ) ;
int tabidx = ui - > tabWidget - > currentIndex ( ) ;
CloseProfile ( ) ;
OpenProfile ( username ) ;
ui - > tabWidget - > setCurrentIndex ( tabidx ) ;
}
2011-12-03 05:27:57 +00:00
2014-10-02 17:46:08 +00:00
void MainWindow : : RestartApplication ( bool force_login , QString cmdline )
2011-12-03 05:27:57 +00:00
{
2018-06-12 12:55:44 +00:00
CloseProfile ( ) ;
2019-03-25 23:38:16 +00:00
p_pref - > Save ( ) ;
2014-10-02 17:46:08 +00:00
2011-12-03 05:27:57 +00:00
QString apppath ;
# ifdef Q_OS_MAC
2014-04-17 05:52:25 +00:00
// In Mac OS the full path of aplication binary is:
// <base-path>/myApp.app/Contents/MacOS/myApp
// prune the extra bits to just get the app bundle path
apppath = QApplication : : instance ( ) - > applicationDirPath ( ) . section ( " / " , 0 , - 3 ) ;
2011-12-03 05:27:57 +00:00
2014-04-17 05:52:25 +00:00
QStringList args ;
args < < " -n " ; // -n option is important, as it opens a new process
args < < apppath ;
2011-12-03 05:27:57 +00:00
2019-02-24 00:58:25 +00:00
args < < " --args " ; // OSCAR binary options after this
2014-04-17 05:52:25 +00:00
args < < " -p " ; // -p starts with 1 second delay, to give this process time to save..
2011-12-18 06:22:02 +00:00
2014-04-17 05:52:25 +00:00
if ( force_login ) { args < < " -l " ; }
2011-12-18 05:17:48 +00:00
2014-10-02 17:46:08 +00:00
args < < cmdline ;
2011-12-03 05:27:57 +00:00
2014-04-17 05:52:25 +00:00
if ( QProcess : : startDetached ( " /usr/bin/open " , args ) ) {
QApplication : : instance ( ) - > exit ( ) ;
2023-06-13 16:32:51 +00:00
} else {
2020-06-03 17:02:20 +00:00
QMessageBox : : warning ( nullptr , STR_MessageBox_Error ,
2019-02-15 01:37:29 +00:00
tr ( " If you can read this, the restart command didn't work. You will have to do it yourself manually. " ) , QMessageBox : : Ok ) ;
}
2011-12-03 05:27:57 +00:00
# else
2014-04-17 05:52:25 +00:00
apppath = QApplication : : instance ( ) - > applicationFilePath ( ) ;
// If this doesn't work on windoze, try uncommenting this method
// Technically should be the same thing..
//if (QDesktopServices::openUrl(apppath)) {
// QApplication::instance()->exit();
//} else
QStringList args ;
args < < " -p " ;
if ( force_login ) { args < < " -l " ; }
2014-10-02 17:46:08 +00:00
args < < cmdline ;
//if (change_datafolder) { args << "-d"; }
2014-04-17 05:52:25 +00:00
if ( QProcess : : startDetached ( apppath , args ) ) {
2016-03-15 00:09:09 +00:00
QApplication : : instance ( ) - > exit ( ) ;
// ::exit(0);
2023-06-13 16:32:51 +00:00
} else {
2020-06-03 17:02:20 +00:00
QMessageBox : : warning ( nullptr , STR_MessageBox_Error ,
2019-02-15 01:37:29 +00:00
tr ( " If you can read this, the restart command didn't work. You will have to do it yourself manually. " ) , QMessageBox : : Ok ) ;
}
2014-04-17 05:52:25 +00:00
2011-12-03 05:27:57 +00:00
# endif
2011-12-13 08:05:33 +00:00
}
2011-12-03 05:27:57 +00:00
2011-12-08 04:10:35 +00:00
void MainWindow : : on_actionPurge_Current_Day_triggered ( )
2021-04-05 02:05:05 +00:00
{
this - > purgeDay ( MT_CPAP ) ;
}
void MainWindow : : on_actionPurgeCurrentDayOximetry_triggered ( )
{
this - > purgeDay ( MT_OXIMETER ) ;
}
void MainWindow : : on_actionPurgeCurrentDaySleepStage_triggered ( )
{
this - > purgeDay ( MT_SLEEPSTAGE ) ;
}
void MainWindow : : on_actionPurgeCurrentDayPosition_triggered ( )
{
this - > purgeDay ( MT_POSITION ) ;
}
void MainWindow : : on_actionPurgeCurrentDayAllExceptNotes_triggered ( )
{
this - > purgeDay ( MT_UNKNOWN ) ;
}
void MainWindow : : on_actionPurgeCurrentDayAll_triggered ( )
{
this - > purgeDay ( MT_JOURNAL ) ;
}
2022-02-27 14:18:39 +00:00
// Purge data for a given device type.
2021-04-05 02:05:05 +00:00
// Special handling: MT_JOURNAL == All data. MT_UNKNOWN == All except journal
void MainWindow : : purgeDay ( MachineType type )
2011-12-08 04:10:35 +00:00
{
2020-05-07 20:43:52 +00:00
if ( ! daily )
return ;
2018-06-08 03:06:24 +00:00
QDate date = daily - > getDate ( ) ;
2021-04-05 02:05:05 +00:00
qDebug ( ) < < " Purging data from " < < date ;
2018-06-08 03:06:24 +00:00
daily - > Unload ( date ) ;
2021-04-05 02:05:05 +00:00
Day * day = p_profile - > GetDay ( date , MT_UNKNOWN ) ;
2014-08-20 17:17:13 +00:00
Machine * cpap = nullptr ;
2021-04-05 02:05:05 +00:00
if ( ! day )
return ;
2011-12-08 04:10:35 +00:00
2021-04-05 02:05:05 +00:00
QList < Session * > : : iterator s ;
QList < Session * > list ;
for ( s = day - > begin ( ) ; s ! = day - > end ( ) ; + + s ) {
Session * sess = * s ;
if ( type = = MT_JOURNAL | | ( type = = MT_UNKNOWN & & sess - > type ( ) ! = MT_JOURNAL ) | |
sess - > type ( ) = = type ) {
list . append ( * s ) ;
qDebug ( ) < < " Purging session from " < < ( * s ) - > machine ( ) - > loaderName ( ) < < " ID: " < < ( * s ) - > session ( ) < < " [ " + QDateTime : : fromTime_t ( ( * s ) - > session ( ) ) . toString ( ) + " ] " ;
qDebug ( ) < < " First Time: " < < QDateTime : : fromMSecsSinceEpoch ( ( * s ) - > realFirst ( ) ) . toString ( ) ;
qDebug ( ) < < " Last Time: " < < QDateTime : : fromMSecsSinceEpoch ( ( * s ) - > realLast ( ) ) . toString ( ) ;
2020-11-21 18:45:43 +00:00
if ( sess - > type ( ) = = MT_CPAP ) {
2021-04-05 02:05:05 +00:00
cpap = day - > machine ( MT_CPAP ) ;
2020-11-21 18:45:43 +00:00
}
2021-04-05 02:05:05 +00:00
} else {
qDebug ( ) < < " Skipping session from " < < ( * s ) - > machine ( ) - > loaderName ( ) < < " ID: " < < ( * s ) - > session ( ) < < " [ " + QDateTime : : fromTime_t ( ( * s ) - > session ( ) ) . toString ( ) + " ] " ;
2011-12-08 04:10:35 +00:00
}
2021-04-05 02:05:05 +00:00
}
2014-04-17 05:52:25 +00:00
2021-04-05 02:05:05 +00:00
if ( list . size ( ) > 0 ) {
if ( cpap ) {
QFile rxcache ( p_profile - > Get ( " { " + STR_GEN_DataFolder + " }/RXChanges.cache " ) ) ;
rxcache . remove ( ) ;
2014-10-07 03:06:00 +00:00
2021-04-05 02:05:05 +00:00
QFile sumfile ( cpap - > getDataPath ( ) + " Summaries.xml.gz " ) ;
sumfile . remove ( ) ;
}
2014-07-28 13:56:29 +00:00
2014-07-27 16:35:49 +00:00
// m->day.erase(m->day.find(date));
2021-04-05 02:05:05 +00:00
QSet < Machine * > machines ;
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < list . size ( ) ; i + + ) {
Session * sess = list . at ( i ) ;
2021-04-05 02:05:05 +00:00
machines + = sess - > machine ( ) ;
2020-08-03 18:01:04 +00:00
sess - > Destroy ( ) ; // remove the summary and event files
2013-10-22 11:42:57 +00:00
delete sess ;
}
2014-10-07 03:06:00 +00:00
2021-04-05 02:05:05 +00:00
for ( auto & mach : machines ) {
mach - > SaveSummaryCache ( ) ;
}
if ( cpap ) {
// save purge date where later import should start
QDate pd = cpap - > purgeDate ( ) ;
if ( pd . isNull ( ) | | day - > date ( ) < pd )
cpap - > setPurgeDate ( day - > date ( ) ) ;
}
} else {
// No data purged... could notify user?
return ;
2014-07-27 16:35:49 +00:00
}
2021-04-05 02:05:05 +00:00
day = p_profile - > GetDay ( date , MT_UNKNOWN ) ;
2018-03-28 06:22:42 +00:00
Q_UNUSED ( day ) ;
2013-10-22 11:42:57 +00:00
2018-06-08 03:06:24 +00:00
daily - > clearLastDay ( ) ;
daily - > LoadDate ( date ) ;
2020-05-07 20:43:52 +00:00
if ( overview )
overview - > ReloadGraphs ( ) ;
if ( welcome )
welcome - > refreshPage ( ) ;
GenerateStatistics ( ) ;
2011-12-08 04:10:35 +00:00
}
2011-12-13 08:05:33 +00:00
2014-08-04 19:57:48 +00:00
void MainWindow : : on_actionRebuildCPAP ( QAction * action )
2011-12-13 08:05:33 +00:00
{
2018-06-07 01:53:20 +00:00
ui - > tabWidget - > setCurrentWidget ( welcome ) ; // Daily view can't run during rebuild
QApplication : : processEvents ( ) ;
2014-05-18 17:06:58 +00:00
QString data = action - > data ( ) . toString ( ) ;
QString cls = data . section ( " : " , 0 , 0 ) ;
QString serial = data . section ( " : " , 1 ) ;
2014-07-11 12:09:38 +00:00
QList < Machine * > machines = p_profile - > GetMachines ( MT_CPAP ) ;
2014-05-18 17:06:58 +00:00
Machine * mach = nullptr ;
for ( int i = 0 ; i < machines . size ( ) ; + + i ) {
Machine * m = machines . at ( i ) ;
2014-07-28 13:56:29 +00:00
if ( ( m - > loaderName ( ) = = cls ) & & ( m - > serial ( ) = = serial ) ) {
2014-05-18 17:06:58 +00:00
mach = m ;
break ;
}
}
if ( ! mach ) return ;
2014-07-28 13:56:29 +00:00
QString bpath = mach - > getBackupPath ( ) ;
bool backups = ( dirCount ( bpath ) > 0 ) ? true : false ;
2014-04-17 05:52:25 +00:00
2014-07-26 12:46:11 +00:00
if ( backups ) {
2019-03-10 16:03:19 +00:00
if ( QMessageBox : : question ( this , STR_MessageBox_Question ,
2022-02-27 14:18:39 +00:00
tr ( " Are you sure you want to rebuild all CPAP data for the following device: \n \n " ) +
2019-02-13 18:22:54 +00:00
mach - > brand ( ) + " " + mach - > model ( ) + " " +
2019-02-15 01:37:29 +00:00
mach - > modelnumber ( ) + " ( " + mach - > serial ( ) + " ) \n \n " +
2019-03-10 16:03:19 +00:00
tr ( " Please note, that this could result in loss of data if OSCAR's backups have been disabled. " ) ,
2019-02-13 18:22:54 +00:00
QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : No ) {
2014-07-26 12:46:11 +00:00
return ;
}
} else {
if ( QMessageBox : : question ( this ,
2019-02-13 18:22:54 +00:00
STR_MessageBox_Warning ,
2022-02-27 14:18:39 +00:00
" <p><b> " + STR_MessageBox_Warning + " : </b> " + tr ( " For some reason, OSCAR does not have any backups for the following device: " ) + " </p> " +
2019-02-13 18:22:54 +00:00
" <p> " + mach - > brand ( ) + " " + mach - > model ( ) + " " + mach - > modelnumber ( ) + " ( " + mach - > serial ( ) + " )</p> " +
2019-02-15 01:37:29 +00:00
" <p> " + tr ( " Provided you have made <i>your <b>own</b> backups for ALL of your CPAP data</i>, you can still complete this operation, but you will have to restore from your backups manually. " ) + " </p> " +
2019-02-13 18:22:54 +00:00
" <p><b> " + tr ( " Are you really sure you want to do this? " ) + " </b></p> " ,
QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : No ) {
2014-07-26 12:46:11 +00:00
return ;
}
2014-05-18 17:06:58 +00:00
}
2014-08-04 19:57:48 +00:00
2018-05-07 18:42:23 +00:00
QString path = mach - > getBackupPath ( ) ;
MachineLoader * loader = lookupLoader ( mach ) ;
2022-02-27 14:18:39 +00:00
purgeMachine ( mach ) ; // purge destroys device record
2014-08-04 19:57:48 +00:00
if ( backups ) {
2018-05-07 18:42:23 +00:00
importCPAP ( ImportPath ( path , loader ) , tr ( " Please wait, importing from backup folder(s)... " ) ) ;
2014-08-04 19:57:48 +00:00
} else {
if ( QMessageBox : : information ( this , STR_MessageBox_Warning ,
2019-02-15 01:37:29 +00:00
tr ( " Because there are no internal backups to rebuild from, you will have to restore from your own. " ) + " \n \n " +
2022-02-27 14:18:39 +00:00
tr ( " Would you like to import from your own backups now? (you will have no data visible for this device until you do) " ) ,
2019-02-15 01:37:29 +00:00
QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) = = QMessageBox : : Yes ) {
2014-08-04 19:57:48 +00:00
on_action_Import_Data_triggered ( ) ;
} else {
}
}
2020-05-07 20:43:52 +00:00
if ( overview )
overview - > ReloadGraphs ( ) ;
2014-08-04 19:57:48 +00:00
if ( daily ) {
2014-09-17 06:12:38 +00:00
daily - > Unload ( ) ;
2014-08-04 19:57:48 +00:00
daily - > clearLastDay ( ) ; // otherwise Daily will crash
daily - > ReloadGraphs ( ) ;
}
2020-05-07 20:43:52 +00:00
if ( welcome )
welcome - > refreshPage ( ) ;
2018-05-07 18:42:23 +00:00
PopulatePurgeMenu ( ) ;
2014-08-04 19:57:48 +00:00
GenerateStatistics ( ) ;
2014-09-17 06:12:38 +00:00
p_profile - > StoreMachines ( ) ;
2014-08-04 19:57:48 +00:00
}
void MainWindow : : on_actionPurgeMachine ( QAction * action )
{
QString data = action - > data ( ) . toString ( ) ;
QString cls = data . section ( " : " , 0 , 0 ) ;
QString serial = data . section ( " : " , 1 ) ;
2020-01-31 20:16:31 +00:00
QList < Machine * > machines = p_profile - > GetMachines ( ) ;
2014-08-04 19:57:48 +00:00
Machine * mach = nullptr ;
for ( int i = 0 ; i < machines . size ( ) ; + + i ) {
Machine * m = machines . at ( i ) ;
if ( ( m - > loaderName ( ) = = cls ) & & ( m - > serial ( ) = = serial ) ) {
mach = m ;
break ;
}
}
if ( ! mach ) return ;
2020-01-31 20:35:36 +00:00
QString machname = mach - > brand ( ) ;
if ( machname . isEmpty ( ) ) {
machname = mach - > loaderName ( ) ;
}
machname + = " " + mach - > model ( ) + " " + mach - > modelnumber ( ) ;
2020-01-31 20:16:31 +00:00
if ( ! mach - > serial ( ) . isEmpty ( ) ) {
machname + = QString ( " (%1) " ) . arg ( mach - > serial ( ) ) ;
}
QString backupnotice ;
QString bpath = mach - > getBackupPath ( ) ;
bool backups = ( dirCount ( bpath ) > 0 ) ? true : false ;
if ( backups ) {
backupnotice = " <p> " + tr ( " Note as a precaution, the backup folder will be left in place. " ) + " </p> " ;
} else {
2022-02-27 14:18:39 +00:00
backupnotice = " <p> " + tr ( " OSCAR does not have any backups for this device! " ) + " </p> " +
" <p> " + tr ( " Unless you have made <i>your <b>own</b> backups for ALL of your data for this device</i>, "
" <font size=+2>you will lose this device's data <b>permanently</b>!</font> " ) + " </p> " ;
2020-01-31 20:16:31 +00:00
}
2023-06-13 16:32:51 +00:00
if ( QMessageBox : : question ( this , STR_MessageBox_Warning ,
2019-02-13 18:22:54 +00:00
" <p><b> " + STR_MessageBox_Warning + " :</b> " +
2022-02-27 14:18:39 +00:00
tr ( " You are about to <font size=+2>obliterate</font> OSCAR's device database for the following device:</p> " ) +
2020-01-31 20:16:31 +00:00
" <p><font size=+2> " + machname + " </font></p> " +
backupnotice +
2020-01-31 20:35:36 +00:00
" <p> " + tr ( " Are you <b>absolutely sure</b> you want to proceed? " ) + " </p> " ,
2019-02-13 18:22:54 +00:00
QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : Yes ) {
2020-01-31 20:16:31 +00:00
qDebug ( ) < < " Purging " < < machname ;
2014-08-04 19:57:48 +00:00
purgeMachine ( mach ) ;
}
}
void MainWindow : : purgeMachine ( Machine * mach )
{
// detect backups
2014-07-13 09:47:27 +00:00
daily - > Unload ( daily - > getDate ( ) ) ;
2014-05-18 17:06:58 +00:00
2014-05-19 03:46:02 +00:00
// Technicially the above won't sessions under short session limit.. Using Purge to clean up the rest.
if ( mach - > Purge ( 3478216 ) ) {
2014-05-18 17:06:58 +00:00
mach - > sessionlist . clear ( ) ;
mach - > day . clear ( ) ;
2018-05-07 16:54:08 +00:00
QDir dir ;
QString path = mach - > getDataPath ( ) ;
path . chop ( 1 ) ;
2022-02-27 14:18:39 +00:00
qDebug ( ) < < " path to device " < < path ;
2018-05-07 16:54:08 +00:00
p_profile - > DelMachine ( mach ) ;
delete mach ;
// remove the directory unless it's got unexpected crap in it..
bool deleted = false ;
2020-08-03 18:01:04 +00:00
if ( ! dir . rmdir ( path ) ) {
2018-05-07 16:54:08 +00:00
# ifdef Q_OS_WIN
wchar_t * directoryPtr = ( wchar_t * ) path . utf16 ( ) ;
SetFileAttributes ( directoryPtr , GetFileAttributes ( directoryPtr ) & ~ FILE_ATTRIBUTE_READONLY ) ;
if ( ! : : RemoveDirectory ( directoryPtr ) ) {
DWORD lastError = : : GetLastError ( ) ;
2019-06-22 05:09:19 +00:00
qDebug ( ) < < " RemoveDirectory " < < path < < " GetLastError: " < < lastError < < " (Error 145 is expected) " ;
if ( lastError = = 145 ) {
qDebug ( ) < < path < < " remaining directory contents are " < < QDir ( path ) . entryList ( ) ;
}
2018-05-07 16:54:08 +00:00
} else {
qDebug ( ) < < " Success on second attempt deleting folder with windows API " < < path ;
deleted = true ;
}
# else
2020-08-03 18:01:04 +00:00
qWarning ( ) < < " Couldn't remove directory " < < path ;
2018-05-07 16:54:08 +00:00
# endif
} else {
deleted = true ;
}
2020-08-03 18:01:04 +00:00
if ( ! deleted ) {
qWarning ( ) < < " Leaving backup folder intact " ;
2018-05-07 16:54:08 +00:00
}
PopulatePurgeMenu ( ) ;
p_profile - > StoreMachines ( ) ;
2014-05-18 17:06:58 +00:00
} else {
QMessageBox : : warning ( this , STR_MessageBox_Error ,
2022-05-29 20:36:38 +00:00
tr ( " A file permission error caused the purge process to fail; you will have to delete the following folder manually: " ) +
2019-02-15 01:37:29 +00:00
" \n \n " + QDir : : toNativeSeparators ( mach - > getDataPath ( ) ) , QMessageBox : : Ok , QMessageBox : : Ok ) ;
2023-06-13 16:32:51 +00:00
if ( overview )
2019-02-15 01:37:29 +00:00
overview - > ReloadGraphs ( ) ;
2014-05-19 07:30:10 +00:00
2014-05-18 17:06:58 +00:00
if ( daily ) {
daily - > clearLastDay ( ) ; // otherwise Daily will crash
2014-05-19 07:30:10 +00:00
daily - > ReloadGraphs ( ) ;
2014-05-18 17:06:58 +00:00
}
2023-06-13 16:32:51 +00:00
if ( welcome )
2019-02-15 01:37:29 +00:00
welcome - > refreshPage ( ) ;
2018-05-08 08:12:32 +00:00
2014-09-17 06:59:58 +00:00
//GenerateStatistics();
2014-05-18 17:06:58 +00:00
return ;
}
2014-05-11 18:31:48 +00:00
2018-05-07 16:54:08 +00:00
2023-06-13 16:32:51 +00:00
if ( overview )
2019-02-15 01:37:29 +00:00
overview - > ReloadGraphs ( ) ;
2014-09-17 06:59:58 +00:00
QFile rxcache ( p_profile - > Get ( " { " + STR_GEN_DataFolder + " }/RXChanges.cache " ) ) ;
rxcache . remove ( ) ;
2014-05-19 07:30:10 +00:00
2014-05-18 17:06:58 +00:00
if ( daily ) {
daily - > clearLastDay ( ) ; // otherwise Daily will crash
2014-05-19 07:30:10 +00:00
daily - > ReloadGraphs ( ) ;
2014-05-18 17:06:58 +00:00
}
2019-07-02 15:04:43 +00:00
if ( welcome )
welcome - > refreshPage ( ) ;
2018-05-07 16:54:08 +00:00
2014-05-18 17:06:58 +00:00
QApplication : : processEvents ( ) ;
2011-12-13 08:05:33 +00:00
}
2011-12-23 14:12:04 +00:00
2014-04-17 05:52:25 +00:00
void MainWindow : : keyPressEvent ( QKeyEvent * event )
2011-12-25 05:05:12 +00:00
{
2012-01-05 04:37:22 +00:00
Q_UNUSED ( event )
2012-01-03 03:50:54 +00:00
//qDebug() << "Keypress:" << event->key();
2011-12-25 05:05:12 +00:00
}
2011-12-25 11:27:10 +00:00
void MainWindow : : on_action_Sidebar_Toggle_toggled ( bool visible )
{
ui - > toolBox - > setVisible ( visible ) ;
2018-04-22 12:06:48 +00:00
AppSetting - > setRightSidebarVisible ( visible ) ;
2011-12-25 11:27:10 +00:00
}
2011-12-25 13:27:47 +00:00
2011-12-25 16:19:08 +00:00
void MainWindow : : on_helpButton_clicked ( )
{
2019-02-12 17:00:05 +00:00
# ifndef helpless
2018-06-06 16:03:51 +00:00
ui - > tabWidget - > setCurrentWidget ( help ) ;
2019-02-12 17:00:05 +00:00
# else
2019-02-15 01:37:29 +00:00
QMessageBox : : information ( nullptr , STR_MessageBox_Error , tr ( " No help is available. " ) ) ;
2019-02-12 17:00:05 +00:00
# endif
2011-12-25 16:19:08 +00:00
}
2014-04-15 11:02:51 +00:00
void MainWindow : : on_actionView_Statistics_triggered ( )
2011-12-25 16:19:08 +00:00
{
2014-04-25 05:28:10 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ;
2011-12-25 16:19:08 +00:00
}
2011-12-26 03:06:39 +00:00
2011-12-26 19:25:17 +00:00
void MainWindow : : on_tabWidget_currentChanged ( int index )
{
Q_UNUSED ( index ) ;
2014-08-17 17:03:50 +00:00
// QWidget *widget = ui->tabWidget->currentWidget();
2011-12-26 19:25:17 +00:00
}
2011-12-27 13:21:10 +00:00
2012-01-06 16:07:54 +00:00
2012-01-06 18:15:21 +00:00
void MainWindow : : on_filterBookmarks_editingFinished ( )
{
2014-04-17 05:52:25 +00:00
bookmarkFilter = ui - > filterBookmarks - > text ( ) ;
2012-01-06 18:15:21 +00:00
updateFavourites ( ) ;
}
void MainWindow : : on_filterBookmarksButton_clicked ( )
{
if ( ! bookmarkFilter . isEmpty ( ) ) {
ui - > filterBookmarks - > setText ( " " ) ;
2014-04-17 05:52:25 +00:00
bookmarkFilter = " " ;
2012-01-06 18:15:21 +00:00
updateFavourites ( ) ;
}
}
2012-01-10 06:19:49 +00:00
2018-05-03 10:53:42 +00:00
void MainWindow : : recompressEvents ( )
{
QTimer : : singleShot ( 0 , this , SLOT ( doRecompressEvents ( ) ) ) ;
}
2012-01-10 06:19:49 +00:00
void MainWindow : : reprocessEvents ( bool restart )
{
2014-04-17 05:52:25 +00:00
m_restartRequired = restart ;
QTimer : : singleShot ( 0 , this , SLOT ( doReprocessEvents ( ) ) ) ;
2012-01-10 06:19:49 +00:00
}
2012-01-10 10:16:52 +00:00
void MainWindow : : FreeSessions ( )
{
2014-07-11 12:09:38 +00:00
QDate first = p_profile - > FirstDay ( ) ;
QDate date = p_profile - > LastDay ( ) ;
2012-01-10 10:16:52 +00:00
Day * day ;
2014-04-17 05:52:25 +00:00
QDate current = daily - > getDate ( ) ;
2012-01-10 10:16:52 +00:00
do {
2014-07-11 12:09:38 +00:00
day = p_profile - > GetDay ( date , MT_CPAP ) ;
2014-04-17 05:52:25 +00:00
2012-01-10 10:16:52 +00:00
if ( day ) {
2014-04-17 05:52:25 +00:00
if ( date ! = current ) {
2012-01-10 10:16:52 +00:00
day - > CloseEvents ( ) ;
}
}
2014-04-17 05:52:25 +00:00
date = date . addDays ( - 1 ) ;
} while ( date > = first ) ;
2012-01-10 10:16:52 +00:00
}
2018-05-03 10:53:42 +00:00
void MainWindow : : doRecompressEvents ( )
{
2018-06-06 00:48:31 +00:00
if ( ! p_profile ) return ;
ProgressDialog progress ( this ) ;
2020-04-11 19:59:45 +00:00
progress . setMessage ( QObject : : tr ( " Recompressing Session Files " ) ) ;
2018-06-06 00:48:31 +00:00
progress . setProgressMax ( p_profile - > daylist . size ( ) ) ;
2019-04-16 17:12:26 +00:00
QPixmap icon = QPixmap ( " :/icons/logo-md.png " ) . scaled ( 64 , 64 ) ;
2018-06-06 00:48:31 +00:00
progress . setPixmap ( icon ) ;
progress . open ( ) ;
2018-05-03 10:53:42 +00:00
bool isopen ;
2018-06-06 00:48:31 +00:00
int idx = 0 ;
for ( Day * day : p_profile - > daylist ) {
for ( Session * sess : day - > sessions ) {
isopen = sess - > eventsLoaded ( ) ;
// Load the events and summary if they aren't loaded already
sess - > LoadSummary ( ) ;
sess - > OpenEvents ( ) ;
sess - > SetChanged ( true ) ;
sess - > machine ( ) - > SaveSession ( sess ) ;
2018-05-03 10:53:42 +00:00
2018-06-06 00:48:31 +00:00
if ( ! isopen ) {
sess - > TrashEvents ( ) ;
2018-05-03 10:53:42 +00:00
}
}
2018-06-06 00:48:31 +00:00
progress . setProgressValue ( + + idx ) ;
2018-05-03 10:53:42 +00:00
QApplication : : processEvents ( ) ;
2018-06-06 00:48:31 +00:00
}
progress . close ( ) ;
2018-05-03 10:53:42 +00:00
}
2012-01-10 06:19:49 +00:00
void MainWindow : : doReprocessEvents ( )
{
2018-06-06 00:48:31 +00:00
if ( ! p_profile ) return ;
2018-05-03 10:53:42 +00:00
2018-06-06 00:48:31 +00:00
ProgressDialog progress ( this ) ;
progress . setMessage ( " Recalculating summaries " ) ;
progress . setProgressMax ( p_profile - > daylist . size ( ) ) ;
2019-04-16 17:12:26 +00:00
QPixmap icon = QPixmap ( " :/icons/logo-md.png " ) . scaled ( 64 , 64 ) ;
2018-06-06 00:48:31 +00:00
progress . setPixmap ( icon ) ;
progress . open ( ) ;
2014-04-17 05:52:25 +00:00
2018-06-06 00:48:31 +00:00
if ( daily ) {
daily - > Unload ( ) ;
daily - > clearLastDay ( ) ; // otherwise Daily will crash
delete daily ;
daily = nullptr ;
2012-01-10 10:26:34 +00:00
}
2018-06-06 00:48:31 +00:00
if ( welcome ) {
delete welcome ;
welcome = nullptr ;
}
if ( overview ) {
delete overview ;
overview = nullptr ;
2012-01-10 06:19:49 +00:00
}
2014-04-17 05:52:25 +00:00
2018-06-06 00:48:31 +00:00
for ( Day * day : p_profile - > daylist ) {
for ( Session * sess : day - > sessions ) {
bool isopen = sess - > eventsLoaded ( ) ;
2012-01-10 06:19:49 +00:00
2018-06-06 00:48:31 +00:00
// Load the events if they aren't loaded already
sess - > LoadSummary ( ) ;
sess - > OpenEvents ( ) ;
2014-08-20 20:50:55 +00:00
2018-06-06 00:48:31 +00:00
// Destroy any current user flags..
sess - > destroyEvent ( CPAP_UserFlag1 ) ;
sess - > destroyEvent ( CPAP_UserFlag2 ) ;
sess - > destroyEvent ( CPAP_UserFlag3 ) ;
2014-04-17 05:52:25 +00:00
2018-06-06 00:48:31 +00:00
// AHI flags
sess - > destroyEvent ( CPAP_AHI ) ;
sess - > destroyEvent ( CPAP_RDI ) ;
2014-04-17 05:52:25 +00:00
2018-06-06 00:48:31 +00:00
if ( sess - > machine ( ) - > loaderName ( ) ! = STR_MACH_PRS1 ) {
sess - > destroyEvent ( CPAP_LargeLeak ) ;
} else {
sess - > destroyEvent ( CPAP_Leak ) ;
2012-01-10 06:19:49 +00:00
}
2014-04-17 05:52:25 +00:00
2018-06-06 00:48:31 +00:00
sess - > SetChanged ( true ) ;
2012-01-10 10:00:08 +00:00
2018-06-06 00:48:31 +00:00
sess - > UpdateSummaries ( ) ;
sess - > machine ( ) - > SaveSession ( sess ) ;
2014-04-17 05:52:25 +00:00
2018-06-06 00:48:31 +00:00
if ( ! isopen ) {
sess - > TrashEvents ( ) ;
}
2012-01-10 10:26:34 +00:00
}
}
2018-06-06 00:48:31 +00:00
progress . close ( ) ;
2012-01-10 07:37:15 +00:00
2018-06-06 00:48:31 +00:00
welcome = new Welcome ( ui - > tabWidget ) ;
ui - > tabWidget - > insertTab ( 1 , welcome , tr ( " Welcome " ) ) ;
2014-04-17 05:52:25 +00:00
2018-06-06 00:48:31 +00:00
daily = new Daily ( ui - > tabWidget , nullptr ) ;
ui - > tabWidget - > insertTab ( 2 , daily , STR_TR_Daily ) ;
daily - > ReloadGraphs ( ) ;
2012-01-10 10:00:08 +00:00
2018-06-06 00:48:31 +00:00
overview = new Overview ( ui - > tabWidget , daily - > graphView ( ) ) ;
ui - > tabWidget - > insertTab ( 3 , overview , STR_TR_Overview ) ;
overview - > ReloadGraphs ( ) ;
// Should really create welcome and statistics here, but they need redoing later anyway to kill off webkit
ui - > tabWidget - > setCurrentIndex ( AppSetting - > openTabAtStart ( ) ) ;
GenerateStatistics ( ) ;
PopulatePurgeMenu ( ) ;
2014-04-17 05:52:25 +00:00
2012-01-10 06:19:49 +00:00
}
2012-01-11 13:55:46 +00:00
void MainWindow : : on_actionImport_ZEO_Data_triggered ( )
{
ZEOLoader zeo ;
2021-04-24 07:44:27 +00:00
importNonCPAP ( zeo ) ;
2020-01-30 00:59:05 +00:00
}
2012-01-11 13:55:46 +00:00
2020-01-30 00:59:05 +00:00
void MainWindow : : on_actionImport_Dreem_Data_triggered ( )
{
DreemLoader dreem ;
2021-04-24 07:44:27 +00:00
importNonCPAP ( dreem ) ;
2012-01-11 13:55:46 +00:00
}
2012-01-24 15:51:11 +00:00
void MainWindow : : on_actionImport_RemStar_MSeries_Data_triggered ( )
{
2013-09-09 15:56:02 +00:00
# ifdef REMSTAR_M_SUPPORT
2012-01-24 15:51:11 +00:00
QFileDialog w ;
w . setFileMode ( QFileDialog : : ExistingFiles ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2013-01-20 16:31:51 +00:00
w . setNameFilters ( QStringList ( " M-Series data file (*.bin) " ) ) ;
2012-01-24 15:51:11 +00:00
MSeriesLoader mseries ;
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
if ( ! mseries . Open ( filename , p_profile ) ) {
Notify ( tr ( " There was a problem opening MSeries block File: " ) + filename ) ;
2012-01-24 15:51:11 +00:00
return ;
}
2014-04-17 05:52:25 +00:00
2013-09-09 15:56:02 +00:00
Notify ( tr ( " MSeries Import complete " ) ) ;
2012-01-24 15:51:11 +00:00
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
2014-04-17 05:52:25 +00:00
2013-09-09 15:56:02 +00:00
# endif
2012-01-24 15:51:11 +00:00
}
2012-01-29 04:17:02 +00:00
void MainWindow : : on_actionSleep_Disorder_Terms_Glossary_triggered ( )
{
2019-02-12 21:57:03 +00:00
// QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Glossary"));
2019-04-16 17:12:26 +00:00
// QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The Glossary is not yet implemented"));
if ( QMessageBox : : question ( nullptr , STR_MessageBox_Question , tr ( " The Glossary will open in your default browser " ) ,
QMessageBox : : Ok | QMessageBox : : Cancel , QMessageBox : : Ok ) = = QMessageBox : : Ok )
QDesktopServices : : openUrl ( QUrl ( " https://www.apneaboard.com/wiki/index.php?title=Definitions " ) ) ;
2012-01-29 04:17:02 +00:00
}
2020-02-17 14:39:38 +00:00
/*
2019-02-24 00:58:25 +00:00
void MainWindow : : on_actionHelp_Support_OSCAR_Development_triggered ( )
2012-01-29 04:17:02 +00:00
{
2019-02-12 21:57:03 +00:00
// QDesktopServices().openUrl(QUrl("https://sleepyhead.jedimark.net/donate.php"));
2019-02-24 00:58:25 +00:00
QMessageBox : : information ( nullptr , STR_MessageBox_Information , tr ( " Donations are not implemented " ) ) ;
2012-01-29 04:17:02 +00:00
}
2020-02-17 14:39:38 +00:00
*/
2013-09-15 04:20:26 +00:00
void MainWindow : : on_actionChange_Language_triggered ( )
{
2018-06-12 15:18:26 +00:00
// if (QMessageBox::question(this,STR_MessageBox_Warning,tr("Changing the language will reset custom Event and Waveform names/labels/descriptions.")+"\n\n"+tr("Are you sure you want to do this?"), QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) {
// return;
// }
2013-09-15 04:20:26 +00:00
2018-06-12 12:55:44 +00:00
RestartApplication ( true , " --language " ) ;
2013-09-15 04:20:26 +00:00
}
2013-10-19 02:59:52 +00:00
void MainWindow : : on_actionChange_Data_Folder_triggered ( )
{
2018-04-22 12:06:48 +00:00
if ( p_profile ) {
p_profile - > Save ( ) ;
p_profile - > removeLock ( ) ;
}
2019-03-25 23:38:16 +00:00
p_pref - > Save ( ) ;
2014-07-16 17:12:52 +00:00
2014-10-02 17:46:08 +00:00
RestartApplication ( false , " -d " ) ;
2013-10-19 02:59:52 +00:00
}
2014-04-15 13:59:24 +00:00
2021-04-24 07:44:27 +00:00
void MainWindow : : importNonCPAP ( MachineLoader & loader )
2014-04-15 13:59:24 +00:00
{
QFileDialog w ;
w . setFileMode ( QFileDialog : : ExistingFiles ) ;
2019-04-08 03:28:54 +00:00
w . setWindowFlags ( this - > windowFlags ( ) & ~ Qt : : WindowContextHelpButtonHint ) ;
2014-04-15 13:59:24 +00:00
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
2021-04-24 07:44:27 +00:00
# if defined(Q_OS_WIN)
// Windows can't handle Viatom name filter - use non-native for all non-CPAP loaders.
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2021-04-24 07:44:27 +00:00
# endif
w . setNameFilters ( loader . getNameFilter ( ) ) ;
2014-04-15 13:59:24 +00:00
2021-02-21 22:30:24 +00:00
// Display progress if we have more than 1 file to load...
ProgressDialog progress ( this ) ;
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
2021-04-24 07:44:27 +00:00
QStringList files = w . selectedFiles ( ) ;
int size = files . size ( ) ;
2021-02-21 22:30:24 +00:00
if ( size > 1 ) {
progress . setMessage ( QObject : : tr ( " Importing Sessions... " ) ) ;
progress . setProgressMax ( size ) ;
progress . setProgressValue ( 0 ) ;
2021-04-24 07:44:27 +00:00
progress . addAbortButton ( ) ;
2021-02-21 22:30:24 +00:00
progress . setWindowModality ( Qt : : ApplicationModal ) ;
2021-04-24 07:44:27 +00:00
connect ( & loader , SIGNAL ( setProgressValue ( int ) ) , & progress , SLOT ( setProgressValue ( int ) ) ) ;
connect ( & progress , SIGNAL ( abortClicked ( ) ) , & loader , SLOT ( abortImport ( ) ) ) ;
2021-02-21 22:30:24 +00:00
progress . open ( ) ;
QCoreApplication : : processEvents ( ) ;
}
2021-04-24 07:44:27 +00:00
QString name = loader . loaderName ( ) ;
2023-06-13 16:32:51 +00:00
2021-09-02 17:00:37 +00:00
ImportUI importui ( p_profile ) ;
ImportContext * ctx = new ProfileImportContext ( p_profile ) ;
loader . SetContext ( ctx ) ;
connect ( ctx , & ImportContext : : importEncounteredUnexpectedData , & importui , & ImportUI : : onUnexpectedData ) ;
connect ( & loader , & MachineLoader : : deviceReportsUsageOnly , & importui , & ImportUI : : onDeviceReportsUsageOnly ) ;
connect ( & loader , & MachineLoader : : deviceIsUntested , & importui , & ImportUI : : onDeviceIsUntested ) ;
connect ( & loader , & MachineLoader : : deviceIsUnsupported , & importui , & ImportUI : : onDeviceIsUnsupported ) ;
2021-04-24 07:44:27 +00:00
int res = loader . Open ( files ) ;
2021-09-02 17:00:37 +00:00
2021-09-03 19:42:10 +00:00
progress . setMessage ( QObject : : tr ( " Finishing up... " ) ) ;
QCoreApplication : : processEvents ( ) ;
ctx - > Commit ( ) ;
2021-09-02 17:00:37 +00:00
loader . SetContext ( nullptr ) ;
delete ctx ;
2021-04-24 07:44:27 +00:00
if ( size > 1 ) {
disconnect ( & loader , SIGNAL ( setProgressValue ( int ) ) , & progress , SLOT ( setProgressValue ( int ) ) ) ;
disconnect ( & progress , SIGNAL ( abortClicked ( ) ) , & loader , SLOT ( abortImport ( ) ) ) ;
progress . close ( ) ;
2021-02-21 22:30:24 +00:00
QCoreApplication : : processEvents ( ) ;
2014-04-15 13:59:24 +00:00
}
2021-04-24 07:44:27 +00:00
if ( res = = 0 ) {
Notify ( tr ( " There was a problem opening %1 Data File: %2 " ) . arg ( name , files [ 0 ] ) ) ;
return ;
} else if ( res < size ) {
Notify ( tr ( " %1 Data Import of %2 file(s) complete " ) . arg ( name ) . arg ( res ) + " \n \n " +
tr ( " There was a problem opening %1 Data File: %2 " ) . arg ( name , files [ res ] ) ,
tr ( " %1 Import Partial Success " ) . arg ( name ) ) ;
} else {
Notify ( tr ( " %1 Data Import complete " ) . arg ( name ) ) ;
2021-02-21 22:30:24 +00:00
}
2020-01-31 19:35:15 +00:00
PopulatePurgeMenu ( ) ;
2020-04-04 21:37:19 +00:00
if ( overview ) overview - > ReloadGraphs ( ) ;
if ( welcome ) welcome - > refreshPage ( ) ;
2014-04-15 13:59:24 +00:00
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
2021-04-24 07:44:27 +00:00
}
2014-04-15 13:59:24 +00:00
2021-04-24 07:44:27 +00:00
void MainWindow : : on_actionImport_Somnopose_Data_triggered ( )
{
SomnoposeLoader somno ;
importNonCPAP ( somno ) ;
2014-04-15 13:59:24 +00:00
}
2014-04-25 05:28:10 +00:00
2020-01-23 17:51:58 +00:00
void MainWindow : : on_actionImport_Viatom_Data_triggered ( )
{
2020-01-26 22:51:56 +00:00
ViatomLoader viatom ;
2021-04-24 07:44:27 +00:00
importNonCPAP ( viatom ) ;
2020-01-23 17:51:58 +00:00
}
2014-04-25 05:28:10 +00:00
void MainWindow : : GenerateStatistics ( )
{
2023-06-20 12:37:00 +00:00
reset_reportModeUi ( ) ;
2014-05-06 09:11:31 +00:00
Statistics stats ;
2019-06-12 20:32:22 +00:00
QString htmlStats = stats . GenerateHTML ( ) ;
QString htmlRecords = stats . UpdateRecordsBox ( ) ;
2014-04-25 05:28:10 +00:00
updateFavourites ( ) ;
2019-06-12 20:32:22 +00:00
setStatsHTML ( htmlStats ) ;
setRecBoxHTML ( htmlRecords ) ;
2014-07-25 07:53:48 +00:00
2018-05-07 15:11:02 +00:00
}
2014-07-25 07:53:48 +00:00
2018-05-07 15:11:02 +00:00
void MainWindow : : JumpDaily ( )
{
2019-03-10 16:03:19 +00:00
qDebug ( ) < < " Set current Widget to Daily " ;
2019-04-07 16:07:25 +00:00
// sleep(3);
2018-05-07 15:11:02 +00:00
ui - > tabWidget - > setCurrentWidget ( daily ) ;
}
void MainWindow : : JumpOverview ( )
{
ui - > tabWidget - > setCurrentWidget ( overview ) ;
}
void MainWindow : : JumpStatistics ( )
{
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ;
}
void MainWindow : : JumpImport ( )
{
on_importButton_clicked ( ) ;
}
void MainWindow : : JumpOxiWizard ( )
{
on_oximetryButton_clicked ( ) ;
2014-04-25 05:28:10 +00:00
}
void MainWindow : : on_statisticsButton_clicked ( )
{
2018-04-22 12:06:48 +00:00
if ( p_profile ) {
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ;
}
2014-04-25 05:28:10 +00:00
}
2023-06-20 12:37:00 +00:00
void MainWindow : : init_reportModeUi ( )
{
2023-06-20 13:58:13 +00:00
QTextCharFormat format = ui - > statStartDate - > calendarWidget ( ) - > weekdayTextFormat ( Qt : : Saturday ) ;
format . setForeground ( QBrush ( Qt : : black , Qt : : SolidPattern ) ) ;
Qt : : DayOfWeek dow = firstDayOfWeekFromLocale ( ) ;
2023-06-20 12:37:00 +00:00
ui - > statStartDate - > blockSignals ( true ) ;
ui - > statEndDate - > blockSignals ( true ) ;
ui - > statStartDate - > calendarWidget ( ) - > setWeekdayTextFormat ( Qt : : Saturday , format ) ;
ui - > statStartDate - > calendarWidget ( ) - > setWeekdayTextFormat ( Qt : : Sunday , format ) ;
ui - > statStartDate - > calendarWidget ( ) - > setVerticalHeaderFormat ( QCalendarWidget : : NoVerticalHeader ) ;
ui - > statStartDate - > calendarWidget ( ) - > setFirstDayOfWeek ( dow ) ;
ui - > statEndDate - > calendarWidget ( ) - > setWeekdayTextFormat ( Qt : : Saturday , format ) ;
ui - > statEndDate - > calendarWidget ( ) - > setWeekdayTextFormat ( Qt : : Sunday , format ) ;
ui - > statEndDate - > calendarWidget ( ) - > setVerticalHeaderFormat ( QCalendarWidget : : NoVerticalHeader ) ;
ui - > statEndDate - > calendarWidget ( ) - > setFirstDayOfWeek ( dow ) ;
ui - > statStartDate - > blockSignals ( false ) ;
ui - > statEndDate - > blockSignals ( false ) ;
}
void MainWindow : : reset_reportModeUi ( )
2023-06-13 16:32:51 +00:00
{
2023-07-08 15:13:35 +00:00
Statistics : : updateReportDate ( ) ;
2023-06-13 16:32:51 +00:00
int mode = STAT_MODE_STANDARD ;
2023-06-20 12:37:00 +00:00
ui - > statStartDate - > blockSignals ( true ) ;
ui - > statEndDate - > blockSignals ( true ) ;
2023-06-13 16:32:51 +00:00
if ( p_profile ) {
mode = p_profile - > general - > statReportMode ( ) ;
QDate first = p_profile - > FirstDay ( ) ;
QDate last = p_profile - > LastDay ( ) ;
ui - > statStartDate - > setMinimumDate ( first ) ;
ui - > statStartDate - > setMaximumDate ( last ) ;
ui - > statEndDate - > setMinimumDate ( first ) ;
ui - > statEndDate - > setMaximumDate ( last ) ;
}
switch ( mode ) {
default :
case STAT_MODE_STANDARD :
{
ui - > reportModeStandard - > setChecked ( true ) ;
ui - > statEndDate - > setVisible ( true ) ;
ui - > statStartDate - > setVisible ( false ) ;
ui - > statEnableEndDisplay - > setVisible ( true ) ;
if ( p_profile ) {
2023-06-13 23:25:55 +00:00
ui - > statEndDate - > setDate ( p_profile - > general - > statReportDate ( ) ) ;
2023-06-13 16:32:51 +00:00
}
}
break ;
case STAT_MODE_MONTHLY :
ui - > statStartDate - > setVisible ( false ) ;
ui - > statEndDate - > setVisible ( true ) ;
ui - > reportModeMonthly - > setChecked ( true ) ;
ui - > statEnableEndDisplay - > setVisible ( true ) ;
if ( p_profile ) {
2023-06-13 23:25:55 +00:00
ui - > statEndDate - > setDate ( p_profile - > general - > statReportDate ( ) ) ;
2023-06-13 16:32:51 +00:00
}
break ;
case STAT_MODE_RANGE :
ui - > reportModeRange - > setChecked ( true ) ;
ui - > statStartDate - > setVisible ( true ) ;
ui - > statEndDate - > setVisible ( true ) ;
ui - > statEnableEndDisplay - > setVisible ( false ) ;
if ( p_profile ) {
ui - > statStartDate - > setDate ( p_profile - > general - > statReportRangeStart ( ) ) ;
ui - > statEndDate - > setDate ( p_profile - > general - > statReportRangeEnd ( ) ) ;
}
break ;
}
2023-06-20 12:37:00 +00:00
ui - > statStartDate - > blockSignals ( false ) ;
ui - > statEndDate - > blockSignals ( false ) ;
2023-06-13 16:32:51 +00:00
return ;
} ;
2014-05-06 11:54:41 +00:00
void MainWindow : : on_reportModeMonthly_clicked ( )
{
2023-06-13 16:32:51 +00:00
if ( p_profile - > general - > statReportMode ( ) ! = STAT_MODE_MONTHLY ) {
p_profile - > general - > setStatReportMode ( STAT_MODE_MONTHLY ) ;
2014-05-06 11:54:41 +00:00
GenerateStatistics ( ) ;
}
}
void MainWindow : : on_reportModeStandard_clicked ( )
{
2023-06-13 16:32:51 +00:00
if ( p_profile - > general - > statReportMode ( ) ! = STAT_MODE_STANDARD ) {
p_profile - > general - > setStatReportMode ( STAT_MODE_STANDARD ) ;
2014-05-06 11:54:41 +00:00
GenerateStatistics ( ) ;
}
}
2014-05-25 07:07:08 +00:00
void MainWindow : : on_reportModeRange_clicked ( )
{
2023-06-13 16:32:51 +00:00
if ( p_profile - > general - > statReportMode ( ) ! = STAT_MODE_RANGE ) {
p_profile - > general - > setStatReportMode ( STAT_MODE_RANGE ) ;
2014-05-25 07:07:08 +00:00
GenerateStatistics ( ) ;
}
}
2014-05-28 17:45:42 +00:00
2021-12-10 07:54:14 +00:00
void MainWindow : : on_statEndDate_dateChanged ( const QDate & date )
{
2023-06-13 16:32:51 +00:00
if ( p_profile - > general - > statReportMode ( ) = = STAT_MODE_RANGE ) {
p_profile - > general - > setStatReportRangeEnd ( date ) ;
} else {
2023-06-13 23:25:55 +00:00
p_profile - > general - > setStatReportDate ( date ) ;
2023-06-13 16:32:51 +00:00
} ;
2021-12-10 07:54:14 +00:00
GenerateStatistics ( ) ;
}
void MainWindow : : on_statStartDate_dateChanged ( const QDate & date )
{
p_profile - > general - > setStatReportRangeStart ( date ) ;
GenerateStatistics ( ) ;
}
2014-05-28 17:45:42 +00:00
void MainWindow : : on_actionPurgeCurrentDaysOximetry_triggered ( )
{
2018-06-08 03:06:24 +00:00
if ( ! daily )
2014-05-31 21:25:07 +00:00
return ;
2018-06-08 03:06:24 +00:00
QDate date = daily - > getDate ( ) ;
2014-07-11 12:09:38 +00:00
Day * day = p_profile - > GetDay ( date , MT_OXIMETER ) ;
2014-05-28 17:45:42 +00:00
if ( day ) {
2014-05-31 21:25:07 +00:00
if ( QMessageBox : : question ( this , STR_MessageBox_Warning ,
tr ( " Are you sure you want to delete oximetry data for %1 " ) .
2018-06-08 03:06:24 +00:00
arg ( daily - > getDate ( ) . toString ( Qt : : DefaultLocaleLongDate ) ) + " <br/><br/> " +
2014-05-31 21:25:07 +00:00
tr ( " <b>Please be aware you can not undo this operation!</b> " ) ,
QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : No ) {
return ;
}
2018-06-11 03:40:23 +00:00
QList < Session * > sessionlist = day - > getSessions ( MT_OXIMETER ) ;
2020-03-26 23:59:54 +00:00
QSet < Machine * > machines ;
2014-05-28 17:45:42 +00:00
2018-05-08 08:12:32 +00:00
for ( auto & sess : sessionlist ) {
2020-03-26 23:59:54 +00:00
machines + = sess - > machine ( ) ;
2014-07-25 07:53:48 +00:00
sess - > Destroy ( ) ;
delete sess ;
2014-05-28 17:45:42 +00:00
}
2023-06-13 16:32:51 +00:00
2022-02-27 14:18:39 +00:00
// We have to update the summary cache for the affected device(s),
2020-03-26 23:59:54 +00:00
// otherwise OSCAR will still think this day has oximetry data at next launch.
for ( auto & mach : machines ) {
mach - > SaveSummaryCache ( ) ;
}
2014-05-28 17:45:42 +00:00
2018-05-08 08:12:32 +00:00
if ( daily ) {
2020-11-21 18:45:43 +00:00
daily - > Unload ( date ) ;
2018-05-08 08:12:32 +00:00
daily - > clearLastDay ( ) ; // otherwise Daily will crash
daily - > ReloadGraphs ( ) ;
}
if ( overview ) overview - > ReloadGraphs ( ) ;
if ( welcome ) welcome - > refreshPage ( ) ;
2014-05-31 21:25:07 +00:00
} else {
QMessageBox : : information ( this , STR_MessageBox_Information ,
tr ( " Select the day with valid oximetry data in daily view first. " ) , QMessageBox : : Ok ) ;
2014-05-28 17:45:42 +00:00
}
}
2014-07-02 16:16:12 +00:00
void MainWindow : : on_importButton_clicked ( )
{
on_action_Import_Data_triggered ( ) ;
}
2014-07-21 08:45:35 +00:00
2019-07-13 21:53:57 +00:00
void MainWindow : : on_actionLine_Cursor_toggled ( bool b )
2014-07-21 08:45:35 +00:00
{
2018-04-22 12:06:48 +00:00
AppSetting - > setLineCursorMode ( b ) ;
2018-06-08 03:06:24 +00:00
if ( ui - > tabWidget - > currentWidget ( ) = = daily ) {
daily - > graphView ( ) - > timedRedraw ( 0 ) ;
} else if ( ui - > tabWidget - > currentWidget ( ) = = overview ) {
overview - > graphView ( ) - > timedRedraw ( 0 ) ;
2014-07-21 08:45:35 +00:00
}
}
2014-08-04 21:28:27 +00:00
2019-07-13 21:53:57 +00:00
void MainWindow : : on_actionPie_Chart_toggled ( bool visible )
{
2019-07-15 03:25:49 +00:00
AppSetting - > setShowPieChart ( visible ) ;
2019-07-25 13:26:19 +00:00
if ( ! setupRunning & & daily ) {
daily - > updateLeftSidebar ( ) ;
// daily->ReloadGraphs();
2019-07-13 21:53:57 +00:00
}
}
2014-08-04 21:28:27 +00:00
void MainWindow : : on_actionLeft_Daily_Sidebar_toggled ( bool visible )
{
2018-06-08 03:06:24 +00:00
if ( daily ) daily - > setSidebarVisible ( visible ) ;
2014-08-04 21:28:27 +00:00
}
void MainWindow : : on_actionDaily_Calendar_toggled ( bool visible )
{
2018-06-08 03:06:24 +00:00
if ( daily ) daily - > setCalendarVisible ( visible ) ;
2014-08-04 21:28:27 +00:00
}
2014-08-17 12:56:05 +00:00
2020-06-05 04:25:23 +00:00
void MainWindow : : on_actionShowPersonalData_toggled ( bool visible )
{
2022-08-10 23:01:04 +00:00
// This uses the Prefs routines, which require p_profile to be set
if ( p_profile ! = nullptr ) {
AppSetting - > setShowPersonalData ( visible ) ;
if ( ! setupRunning )
GenerateStatistics ( ) ;
} else {
QMessageBox : : information ( this , " OSCAR " , tr ( " You must select and open the profile you wish to modify " ) ,
QMessageBox : : Ok ) ;
}
2020-06-05 04:25:23 +00:00
}
2014-08-17 17:03:50 +00:00
# include "SleepLib/journal.h"
2014-08-17 12:56:05 +00:00
void MainWindow : : on_actionExport_Journal_triggered ( )
{
QString folder ;
2018-05-05 07:14:44 +00:00
2014-08-17 12:56:05 +00:00
folder = QStandardPaths : : writableLocation ( QStandardPaths : : DocumentsLocation ) ;
2018-05-05 07:14:44 +00:00
2014-08-17 12:56:05 +00:00
folder + = QDir : : separator ( ) + tr ( " %1's Journal " ) . arg ( p_profile - > user - > userName ( ) ) + " .xml " ;
QString filename = QFileDialog : : getSaveFileName ( this , tr ( " Choose where to save journal " ) , folder , tr ( " XML Files (*.xml) " ) ) ;
2014-08-17 17:03:50 +00:00
BackupJournal ( filename ) ;
2014-08-17 12:56:05 +00:00
}
2014-09-13 11:34:18 +00:00
void MainWindow : : on_actionShow_Performance_Counters_toggled ( bool arg1 )
{
2018-04-22 12:06:48 +00:00
AppSetting - > setShowPerformance ( arg1 ) ;
2014-09-13 11:34:18 +00:00
}
2014-10-02 03:39:37 +00:00
void MainWindow : : on_actionExport_CSV_triggered ( )
{
ExportCSV ex ( this ) ;
if ( ex . exec ( ) = = ExportCSV : : Accepted ) {
}
}
void MainWindow : : on_actionExport_Review_triggered ( )
{
2019-02-15 01:37:29 +00:00
QMessageBox : : information ( nullptr , STR_MessageBox_Information , tr ( " Export review is not yet implemented " ) ) ;
2014-10-02 03:39:37 +00:00
}
2014-10-02 11:22:30 +00:00
2014-10-03 02:31:51 +00:00
void MainWindow : : on_mainsplitter_splitterMoved ( int , int )
2014-10-02 11:22:30 +00:00
{
2018-04-22 12:06:48 +00:00
AppSetting - > setRightPanelWidth ( ui - > mainsplitter - > sizes ( ) [ 1 ] ) ;
2014-10-02 11:22:30 +00:00
}
2016-04-03 12:48:24 +00:00
2020-01-21 16:22:49 +00:00
void MainWindow : : on_actionCreate_Card_zip_triggered ( )
{
2021-09-02 19:49:34 +00:00
QList < ImportPath > datacards = selectCPAPDataCards ( tr ( " Would you like to zip this card? " ) , true ) ;
2020-01-21 17:56:08 +00:00
for ( auto & datacard : datacards ) {
2020-01-21 22:37:37 +00:00
QString cardPath = QDir ( datacard . path ) . canonicalPath ( ) ;
2020-01-21 17:56:08 +00:00
QString filename ;
2020-04-24 20:58:10 +00:00
QString prefix ;
2023-06-13 16:32:51 +00:00
2020-01-21 17:56:08 +00:00
// Loop until a valid folder is selected or the user cancels. Disallow the SD card itself!
while ( true ) {
// Note: macOS ignores this and points to OSCAR's most recently used directory for saving.
QString folder = QStandardPaths : : writableLocation ( QStandardPaths : : DocumentsLocation ) ;
2023-06-13 16:32:51 +00:00
2020-01-21 17:56:08 +00:00
MachineInfo info = datacard . loader - > PeekInfo ( datacard . path ) ;
QString infostr ;
if ( ! info . modelnumber . isEmpty ( ) ) {
infostr = datacard . loader - > loaderName ( ) + " - " + info . modelnumber + " - " + info . serial ;
} else {
infostr = datacard . loader - > loaderName ( ) ;
}
2020-04-24 20:58:10 +00:00
prefix = infostr ;
2020-07-20 01:34:08 +00:00
folder + = " / " + infostr + " .zip " ;
2020-01-21 17:56:08 +00:00
2020-01-27 19:13:41 +00:00
filename = QFileDialog : : getSaveFileName ( this , tr ( " Choose where to save zip " ) , folder , tr ( " ZIP files (*.zip) " ) ) ;
2020-01-21 17:56:08 +00:00
if ( filename . isEmpty ( ) ) {
return ; // aborted
}
2023-06-13 16:32:51 +00:00
2020-01-21 17:56:08 +00:00
// Try again if the selected filename is within the SD card itself.
QString selectedPath = QFileInfo ( filename ) . dir ( ) . canonicalPath ( ) ;
if ( selectedPath . startsWith ( cardPath ) ) {
if ( QMessageBox : : warning ( nullptr , STR_MessageBox_Error ,
2020-01-27 19:13:41 +00:00
QObject : : tr ( " Please select a location for your zip other than the data card itself! " ) ,
2020-01-21 17:56:08 +00:00
QMessageBox : : Ok ) ) {
continue ;
}
}
break ;
}
if ( ! filename . toLower ( ) . endsWith ( " .zip " ) ) {
filename + = " .zip " ;
}
2023-06-13 16:32:51 +00:00
2020-01-21 22:37:37 +00:00
qDebug ( ) < < " Create zip of SD card: " < < cardPath ;
ZipFile z ;
bool ok = z . Open ( filename ) ;
if ( ok ) {
2020-01-22 17:59:58 +00:00
ProgressDialog * prog = new ProgressDialog ( this ) ;
2023-06-13 16:32:51 +00:00
2021-09-15 18:54:08 +00:00
// Very full cards can sometimes take nearly a minute to scan,
// so display the progress dialog immediately.
prog - > setMessage ( tr ( " Calculating size... " ) ) ;
prog - > setWindowModality ( Qt : : ApplicationModal ) ;
prog - > open ( ) ;
// Build the list of files.
FileQueue files ;
bool ok = files . AddDirectory ( cardPath , prefix ) ;
// If there were any unexpected errors scanning the media, add the debug log to the zip.
if ( ! ok ) {
qWarning ( ) < < " Unexpected errors when scanning SD card, adding debug log to zip. " ;
QString debugLog = logger - > logFileName ( ) ;
files . AddFile ( debugLog , prefix + " -debug.txt " ) ;
}
2020-01-27 19:13:41 +00:00
prog - > setMessage ( tr ( " Creating zip... " ) ) ;
2021-09-15 18:54:08 +00:00
// Create the zip.
ok = z . AddFiles ( files , prog ) ;
2020-01-21 22:37:37 +00:00
z . Close ( ) ;
2020-01-22 17:59:58 +00:00
} else {
qWarning ( ) < < " Unable to open " < < filename ;
2020-01-21 22:37:37 +00:00
}
if ( ! ok ) {
QMessageBox : : warning ( nullptr , STR_MessageBox_Error ,
2020-01-27 19:13:41 +00:00
QObject : : tr ( " Unable to create zip! " ) ,
2020-01-21 22:37:37 +00:00
QMessageBox : : Ok ) ;
}
2020-01-21 17:56:08 +00:00
}
2020-01-21 16:22:49 +00:00
}
2020-07-21 17:21:29 +00:00
void MainWindow : : on_actionCreate_Log_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 + = " /OSCAR-logs.zip " ;
QString filename = QFileDialog : : getSaveFileName ( this , tr ( " Choose where to save zip " ) , folder , tr ( " ZIP files (*.zip) " ) ) ;
if ( filename . isEmpty ( ) ) {
return ; // aborted
}
if ( ! filename . toLower ( ) . endsWith ( " .zip " ) ) {
filename + = " .zip " ;
}
2023-06-13 16:32:51 +00:00
2020-07-21 17:21:29 +00:00
qDebug ( ) < < " Create zip of OSCAR diagnostic logs: " < < filename ;
ZipFile z ;
bool ok = z . Open ( filename ) ;
if ( ok ) {
ProgressDialog * prog = new ProgressDialog ( this ) ;
prog - > setMessage ( tr ( " Creating zip... " ) ) ;
// Build the list of files.
FileQueue files ;
files . AddDirectory ( GetLogDir ( ) , " logs " ) ;
// Defer the current debug log to the end.
QString debugLog = logger - > logFileName ( ) ;
QString debugLogZipName ;
int exists = files . Remove ( debugLog , & debugLogZipName ) ;
if ( exists ) {
files . AddFile ( debugLog , debugLogZipName ) ;
}
// Create the zip.
ok = z . AddFiles ( files , prog ) ;
z . Close ( ) ;
} else {
qWarning ( ) < < " Unable to open " < < filename ;
}
if ( ! ok ) {
QMessageBox : : warning ( nullptr , STR_MessageBox_Error ,
QObject : : tr ( " Unable to create zip! " ) ,
QMessageBox : : Ok ) ;
}
}
2020-01-21 16:22:49 +00:00
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 ) ;
2020-07-20 01:34:08 +00:00
folder + = " / " + STR_AppData + " .zip " ;
2020-01-21 16:22:49 +00:00
2020-01-27 19:13:41 +00:00
QString filename = QFileDialog : : getSaveFileName ( this , tr ( " Choose where to save zip " ) , folder , tr ( " ZIP files (*.zip) " ) ) ;
2020-01-21 16:22:49 +00:00
if ( filename . isEmpty ( ) ) {
return ; // aborted
}
if ( ! filename . toLower ( ) . endsWith ( " .zip " ) ) {
filename + = " .zip " ;
}
2023-06-13 16:32:51 +00:00
2020-01-21 16:22:49 +00:00
qDebug ( ) < < " Create zip of OSCAR data folder: " < < filename ;
2020-01-22 22:33:15 +00:00
QDir oscarData ( GetAppData ( ) ) ;
ZipFile z ;
bool ok = z . Open ( filename ) ;
if ( ok ) {
ProgressDialog * prog = new ProgressDialog ( this ) ;
prog - > setMessage ( tr ( " Calculating size... " ) ) ;
prog - > setWindowModality ( Qt : : ApplicationModal ) ;
prog - > open ( ) ;
2020-07-20 01:34:08 +00:00
// Build the list of files.
2020-01-22 22:33:15 +00:00
FileQueue files ;
files . AddDirectory ( oscarData . canonicalPath ( ) , oscarData . dirName ( ) ) ;
2020-07-20 01:34:08 +00:00
// Defer the current debug log to the end.
QString debugLog = logger - > logFileName ( ) ;
QString debugLogZipName ;
int exists = files . Remove ( debugLog , & debugLogZipName ) ;
if ( exists ) {
files . AddFile ( debugLog , debugLogZipName ) ;
}
2020-01-22 22:33:15 +00:00
2020-01-27 19:13:41 +00:00
prog - > setMessage ( tr ( " Creating zip... " ) ) ;
2020-01-22 22:33:15 +00:00
// Create the zip.
ok = z . AddFiles ( files , prog ) ;
z . Close ( ) ;
} else {
qWarning ( ) < < " Unable to open " < < filename ;
}
if ( ! ok ) {
QMessageBox : : warning ( nullptr , STR_MessageBox_Error ,
2020-01-27 19:13:41 +00:00
QObject : : tr ( " Unable to create zip! " ) ,
2020-01-22 22:33:15 +00:00
QMessageBox : : Ok ) ;
}
2020-01-21 16:22:49 +00:00
}
2016-04-03 12:48:24 +00:00
# include "translation.h"
void MainWindow : : on_actionReport_a_Bug_triggered ( )
{
2019-02-12 21:57:03 +00:00
// QSettings settings;
// QString language = settings.value(LangSetting).toString();
//
2020-01-16 00:45:46 +00:00
// QDesktopServices::openUrl(QUrl(QString("https://sleepyhead.jedimark.net/report_bugs.php?lang=%1&version=%2&platform=%3").arg(language).arg(getVersion()).arg(PlatformString)));
2019-02-25 19:08:17 +00:00
QMessageBox : : information ( nullptr , STR_MessageBox_Error , tr ( " Reporting issues is not yet implemented " ) ) ;
2016-04-03 12:48:24 +00:00
}
2018-04-22 12:06:48 +00:00
2019-06-02 02:51:18 +00:00
void MainWindow : : on_actionSystem_Information_triggered ( )
{
QString text = " " ; // tr("OSCAR version:") + "<br/>";
QStringList info = getBuildInfo ( ) ;
for ( int i = 0 ; i < info . size ( ) ; + + i )
text + = info . at ( i ) + " <br/> " ;
QMessageBox : : information ( nullptr , tr ( " OSCAR Information " ) , text ) ;
}
2018-04-22 12:06:48 +00:00
void MainWindow : : on_profilesButton_clicked ( )
{
ui - > tabWidget - > setCurrentWidget ( profileSelector ) ;
}
2018-05-07 19:32:16 +00:00
void MainWindow : : on_bookmarkView_anchorClicked ( const QUrl & arg1 )
{
on_recordsBox_anchorClicked ( arg1 ) ;
}
void MainWindow : : on_recordsBox_anchorClicked ( const QUrl & linkurl )
{
QString link = linkurl . toString ( ) . section ( " = " , 0 , 0 ) . toLower ( ) ;
QString data = linkurl . toString ( ) . section ( " = " , 1 ) . toLower ( ) ;
qDebug ( ) < < linkurl . toString ( ) < < link < < data ;
if ( link = = " daily " ) {
QDate date = QDate : : fromString ( data , Qt : : ISODate ) ;
ui - > tabWidget - > setCurrentWidget ( daily ) ;
QApplication : : processEvents ( ) ;
daily - > LoadDate ( date ) ;
} else if ( link = = " overview " ) {
QString date1 = data . section ( " , " , 0 , 0 ) ;
QString date2 = data . section ( " , " , 1 ) ;
QDate d1 = QDate : : fromString ( date1 , Qt : : ISODate ) ;
QDate d2 = QDate : : fromString ( date2 , Qt : : ISODate ) ;
overview - > setRange ( d1 , d2 ) ;
ui - > tabWidget - > setCurrentWidget ( overview ) ;
} else if ( link = = " import " ) {
// Don't run the importer directly from here because it destroys the object that called this function..
// Schedule it instead
if ( data = = " cpap " ) QTimer : : singleShot ( 0 , mainwin , SLOT ( on_importButton_clicked ( ) ) ) ;
if ( data = = " oximeter " ) QTimer : : singleShot ( 0 , mainwin , SLOT ( on_oximetryButton_clicked ( ) ) ) ;
} else if ( link = = " statistics " ) {
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ;
}
}
2018-05-29 01:30:52 +00:00
void MainWindow : : on_statisticsView_anchorClicked ( const QUrl & url )
{
on_recordsBox_anchorClicked ( url ) ;
}