2020-01-13 23:18:14 +00:00
/* OSCAR MainWindow Implementation
2014-04-09 21:01:57 +00:00
*
2020-01-13 23:18:14 +00:00
* Copyright ( c ) 2020 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
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>
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>
2018-04-22 12:06:48 +00:00
# include <cmath>
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"
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"
2011-12-16 18:15:57 +00:00
# include "UpdaterWindow.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"
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
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 ( ) ) ) ;
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 ;
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
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
2014-05-25 07:07:08 +00:00
QTextCharFormat format = ui - > statStartDate - > calendarWidget ( ) - > weekdayTextFormat ( Qt : : Saturday ) ;
format . setForeground ( QBrush ( Qt : : black , Qt : : SolidPattern ) ) ;
Qt : : DayOfWeek dow = firstDayOfWeekFromLocale ( ) ;
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 - > statEndDate - > setVisible ( false ) ;
ui - > statStartDate - > setVisible ( false ) ;
ui - > reportModeRange - > setVisible ( false ) ;
2018-04-22 12:06:48 +00:00
int srm = 0 ;
if ( p_profile ) {
srm = p_profile - > general - > statReportMode ( ) ;
}
switch ( srm ) {
2014-05-06 11:54:41 +00:00
case 0 :
ui - > reportModeStandard - > setChecked ( true ) ;
break ;
case 1 :
ui - > reportModeMonthly - > setChecked ( true ) ;
break ;
2014-05-25 07:07:08 +00:00
case 2 :
ui - > reportModeRange - > setChecked ( true ) ;
ui - > statEndDate - > setVisible ( true ) ;
ui - > statStartDate - > setVisible ( true ) ;
break ;
2014-05-06 11:54:41 +00:00
default :
2018-04-22 12:06:48 +00:00
if ( p_profile ) {
p_profile - > general - > setStatReportMode ( 0 ) ;
}
break ;
2014-05-06 11:54:41 +00:00
}
2018-04-22 12:06:48 +00:00
if ( ! AppSetting - > showDebug ( ) ) {
2011-07-17 16:07:37 +00:00
ui - > logText - > hide ( ) ;
}
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 ) ;
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
2011-12-25 13:27:47 +00:00
ui - > toolBox - > setCurrentIndex ( 0 ) ;
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 ) ;
2019-07-15 03:25:49 +00:00
ui - > actionPie_Chart - > setChecked ( AppSetting - > showPieChart ( ) ) ;
ui - > actionDaily_Calendar - > setChecked ( AppSetting - > calendarVisible ( ) ) ;
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
2014-07-12 10:52:14 +00:00
qsrand ( QDateTime : : currentDateTime ( ) . toTime_t ( ) ) ;
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
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 ( ) ) {
2019-02-24 00:58:25 +00:00
Notify ( QObject : : tr ( " Don't forget to place your datacard back in your CPAP machine " ) , 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
}
// Add any imported machine (except the built-in journal) to the purge menu.
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 ) ;
if ( pit = = Profiles : : profiles . end ( ) ) return false ;
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
}
}
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 ( ) ;
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 ( ) ) {
qDebug ( ) < < " No machines in profile " ;
} 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 ) {
2019-02-24 00:58:25 +00:00
qDebug ( ) < < " ResMed machine 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 ;
}
2014-09-29 14:41:31 +00:00
QList < MachineLoader * > loaders = GetLoaders ( ) ;
for ( int i = 0 ; i < loaders . size ( ) ; + + i ) {
connect ( loaders . at ( i ) , SIGNAL ( machineUnsupported ( Machine * ) ) , this , SLOT ( MachineUnsupported ( Machine * ) ) ) ;
}
2018-06-05 01:16:03 +00:00
p_profile - > LoadMachineData ( progress ) ;
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
ui - > statStartDate - > setDate ( p_profile - > FirstDay ( ) ) ;
ui - > statEndDate - > setDate ( p_profile - > LastDay ( ) ) ;
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 ( ) ) ;
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
2019-04-16 17:12:26 +00:00
int srm = 0 ;
if ( p_profile ) {
srm = p_profile - > general - > statReportMode ( ) ;
}
switch ( srm ) {
case 0 :
ui - > reportModeStandard - > setChecked ( true ) ;
break ;
case 1 :
ui - > reportModeMonthly - > setChecked ( true ) ;
break ;
case 2 :
ui - > reportModeRange - > setChecked ( true ) ;
ui - > statEndDate - > setVisible ( true ) ;
ui - > statStartDate - > setVisible ( true ) ;
break ;
default :
if ( p_profile ) {
p_profile - > general - > setStatReportMode ( 0 ) ;
}
break ;
}
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
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 ( )
{
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
}
void MainWindow : : Startup ( )
{
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
int c = import . loader - > Open ( import . path ) ;
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 {
Notify ( tr ( " Couldn't find any valid Machine Data at \n \n %1 " ) . arg ( import . path ) , tr ( " Import Problem " ) ) ;
}
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 ;
}
void MainWindow : : finishCPAPImport ( )
{
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
2018-05-07 16:54:08 +00:00
welcome - > refreshPage ( ) ;
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 ( )
{
// Get BackupPaths for all CPAP machines
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 ;
# if defined(Q_OS_MAC) || defined(Q_OS_BSD4)
struct statfs * mounts ;
int num_mounts = getmntinfo ( & mounts , MNT_WAIT ) ;
if ( num_mounts > = 0 ) {
for ( int i = 0 ; i < num_mounts ; i + + ) {
QString name = mounts [ i ] . f_mntonname ;
2014-04-28 18:39:58 +00:00
// Only interested in drives mounted under /Volumes
2014-04-28 18:28:10 +00:00
if ( name . toLower ( ) . startsWith ( " /volumes/ " ) ) {
drivelist . push_back ( name ) ;
// qDebug() << QString("Disk type '%1' mounted at: %2").arg(mounts[i].f_fstypename).arg(mounts[i].f_mntonname);
}
}
2012-01-10 10:00:08 +00:00
}
2016-01-05 06:06:32 +00:00
# elif defined(Q_OS_UNIX) && !defined(Q_OS_HAIKU)
2014-04-28 18:28:10 +00:00
// Unix / Linux (except BSD)
FILE * mtab = setmntent ( " /etc/mtab " , " r " ) ;
struct mntent * m ;
struct mntent mnt ;
char strings [ 4096 ] ;
2014-05-01 22:45:41 +00:00
// NOTE: getmntent_r is a GNU extension, requiring glibc.
2014-04-28 18:28:10 +00:00
while ( ( m = getmntent_r ( mtab , & mnt , strings , sizeof ( strings ) ) ) ) {
struct statfs fs ;
if ( ( mnt . mnt_dir ! = NULL ) & & ( statfs ( mnt . mnt_dir , & fs ) = = 0 ) ) {
QString name = mnt . mnt_dir ;
quint64 size = fs . f_blocks * fs . f_bsize ;
2014-04-28 18:39:58 +00:00
if ( size > 0 ) { // this should theoretically ignore /dev, /proc, /sys etc..
drivelist . push_back ( name ) ;
}
// quint64 free = fs.f_bfree * fs.f_bsize;
// quint64 avail = fs.f_bavail * fs.f_bsize;
2014-04-28 18:28:10 +00:00
}
}
endmntent ( mtab ) ;
2014-04-28 09:10:34 +00:00
2016-01-05 06:06:32 +00:00
# elif defined(Q_OS_WIN) || defined(Q_OS_HAIKU)
2014-04-28 18:28:10 +00:00
QFileInfoList list = QDir : : drives ( ) ;
2014-04-28 09:10:34 +00:00
2014-04-28 18:28:10 +00:00
for ( int i = 0 ; i < list . size ( ) ; + + i ) {
QFileInfo fileInfo = list . at ( i ) ;
2014-05-13 04:03:24 +00:00
QString name = fileInfo . filePath ( ) ;
if ( name . at ( 0 ) . toUpper ( ) ! = QChar ( ' C ' ) ) { // Ignore the C drive
2014-04-28 18:28:10 +00:00
drivelist . push_back ( name ) ;
}
}
2014-04-28 09:10:34 +00:00
2014-04-28 03:27:33 +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
{
2014-05-13 01:28:41 +00:00
const int timeout = 20000 ;
2014-04-28 03:27:33 +00:00
2014-07-28 13:56:29 +00:00
QList < ImportPath > detectedCards ;
2011-11-20 23:39:55 +00:00
2014-05-25 07:07:08 +00:00
QList < MachineLoader * > loaders = GetLoaders ( MT_CPAP ) ;
2014-05-11 17:29:26 +00:00
QTime time ;
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 ) ;
2016-03-08 02:17:00 +00:00
importScanCancelled = false ;
2014-05-11 17:29:26 +00:00
popup . show ( ) ;
QApplication : : processEvents ( ) ;
2014-09-29 14:41:31 +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 ( ) ;
2014-09-29 14:41:31 +00:00
//AutoScannerPaths.push_back(lastpath);
if ( ! AutoScannerPaths . contains ( lastpath ) ) {
AutoScannerPaths . append ( lastpath ) ;
}
2014-05-13 01:28:41 +00:00
2014-05-11 17:29:26 +00:00
Q_FOREACH ( const QString & path , AutoScannerPaths ) {
// Scan through available machine loaders and test if this folder contains valid folder structure
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 ) ;
2014-05-11 17:29:26 +00:00
if ( el > timeout ) break ;
2014-05-11 18:31:48 +00:00
if ( ! popup . isVisible ( ) ) break ;
2014-05-13 01:28:41 +00:00
// needs a slight delay here
2016-03-08 02:17:00 +00:00
for ( int i = 0 ; i < 5 ; + + i ) {
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 ;
}
2020-01-21 17:56:08 +00:00
QList < ImportPath > MainWindow : : selectCPAPDataCards ( const QString & prompt )
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
QTime time ;
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
2014-08-20 20:50:55 +00:00
if ( ! p_profile - > cpap - > autoImport ( ) ) {
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 ) ;
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
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 ) ) ) {
datacards . append ( ImportPath ( w . selectedFiles ( ) . at ( i ) , loader ) ) ;
break ;
}
}
2011-06-30 04:55:20 +00:00
}
2014-04-28 03:27:33 +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 ) ;
}
2019-05-07 01:08:49 +00:00
/***
2014-04-15 04:47:23 +00:00
QString MainWindow : : getWelcomeHTML ( )
2011-12-23 14:12:04 +00:00
{
2014-04-15 04:47:23 +00:00
// This is messy, but allows it to be translated easier
return " <html> \n <head> "
2014-04-17 05:52:25 +00:00
" <style type='text/css'> "
" <!--h1,p,a,td,body { font-family: 'FreeSans', 'Sans Serif' } --/> "
" p,a,td,body { font-size: 14px } "
" a:link,a:visited { color: \" #000020 \" ; text-decoration: none; font-weight: bold;} "
" a:hover { background-color: inherit; color: red; text-decoration:none; font-weight: bold; } "
" </style> \n "
" </head> "
" <body leftmargin=0 topmargin=0 rightmargin=0> "
" <table width= \" 100% \" cellspacing=0 cellpadding=4 border=0 > "
" <tr><td bgcolor= \" #d0d0d0 \" colspan=2 cellpadding=0 valign=center align=center><font color= \" black \" size=+1><b> "
2019-02-24 00:58:25 +00:00
+ tr ( " Welcome to OSCAR " ) + " </b></font></td></tr> "
2014-04-17 05:52:25 +00:00
" <tr> "
" <td valign= \" top \" leftmargin=0 cellpadding=6> "
2019-02-24 00:58:25 +00:00
" <h3> " + tr ( " About OSCAR " ) + " </h3> "
2014-04-17 05:52:25 +00:00
" <p> " + tr ( " This software has been created to assist you in reviewing the data produced by CPAP Machines, used in the treatment of various Sleep Disorders. " )
+ " </p> "
2019-02-24 00:58:25 +00:00
" <p> " + tr ( " OSCAR has been designed by a software developer with personal experience with a sleep disorder, and shaped by the feedback of many other willing testers dealing with similar conditions. " )
2014-04-17 05:52:25 +00:00
+ " </p> "
" <p><i><b> " + tr ( " This is a beta release, some features may not yet behave as expected. " ) +
2019-02-24 00:58:25 +00:00
" </b></i><br/> " + tr ( " Please report any bugs you find to the OSCAR developer's group. " ) + " </p> "
2014-04-17 05:52:25 +00:00
" <h3> " + tr ( " Currenly supported machines: " ) + " </h3> "
" <b> " + tr ( " CPAP " ) + " </b> "
2014-05-15 06:20:54 +00:00
" <li> " + tr ( " Philips Respironics System One (CPAP Pro, Auto, BiPAP & ASV models) " ) + " </li> "
2014-04-17 05:52:25 +00:00
" <li> " + tr ( " ResMed S9 models (CPAP, Auto, VPAP) " ) + " </li> "
" <li> " + tr ( " DeVilbiss Intellipap (Auto) " ) + " </li> "
2014-05-15 06:20:54 +00:00
" <li> " + tr ( " Fisher & Paykel ICON (CPAP, Auto) " ) + " </li> "
2014-04-17 05:52:25 +00:00
" <b> " + tr ( " Oximetry " ) + " </b> "
" <li> " + tr ( " Contec CMS50D+, CMS50E and CMS50F (not 50FW) Oximeters " ) + " </li> "
" <li> " + tr ( " ResMed S9 Oximeter Attachment " ) + " </li> "
" <p><h3> " + tr ( " Online Help Resources " ) + " </h3></p> "
" <p><b> " + tr ( " Note: " ) + " </b> " +
tr ( " I don't recommend using this built in web browser to do any major surfing in, it will work, but it's mainly meant as a help browser. " )
+
tr ( " (It doesn't support SSL encryption, so it's not a good idea to type your passwords or personal details anywhere.) " )
+ " </p> " +
2019-03-10 16:03:19 +00:00
// tr("OSCAR's Online <a href=\"http://sleepyhead.sourceforge.net/wiki/index.php?title=OSCAR_Users_Guide\">Users Guide</a><br/>")
2019-02-12 21:57:03 +00:00
// +
// tr("<a href=\"http://sleepyhead.sourceforge.net/wiki/index.php?title=Frequently_Asked_Questions\">Frequently Asked Questions</a><br/>")
// +
// tr("<a href=\"http://sleepyhead.sourceforge.net/wiki/index.php?title=Glossary\">Glossary of Sleep Disorder Terms</a><br/>")
// +
2019-03-10 16:03:19 +00:00
// tr("<a href=\"http://sleepyhead.sourceforge.net/wiki/index.php?title=Main_Page\">OSCAR Wiki</a><br/>")
2019-02-12 21:57:03 +00:00
// +
2019-03-10 16:03:19 +00:00
// tr("OSCAR's <a href='http://www.sourceforge.net/projects/sleepyhead'>Project Website</a> on SourceForge<br/>")
2019-02-12 21:57:03 +00:00
// +
2014-04-17 05:52:25 +00:00
" <p><h3> " + tr ( " Further Information " ) + " </h3></p> "
" <p> " +
2019-03-20 13:49:17 +00:00
tr ( " The release notes for this version can be found in the About OSCAR menu item. " ) +
2014-04-17 05:52:25 +00:00
" <br/> " +
tr ( " Plus a few <a href='qrc:/docs/usage.html'>usage notes</a>, and some important information for Mac users. " )
+ " <br/> " +
" <p> " + tr ( " About <a href='http://en.wikipedia.org/wiki/Sleep_apnea'>Sleep Apnea</a> on Wikipedia " )
+ " </p> "
" <p> " + tr ( " Friendly forums to talk and learn about Sleep Apnea: " ) + " <br/> " +
tr ( " <a href='http://www.cpaptalk.com'>CPAPTalk Forum</a>, " ) +
2014-06-30 15:47:19 +00:00
tr ( " <a href='http://www.apneaboard.com/forums/'>Apnea Board</a> " ) + " </p> "
2014-04-17 05:52:25 +00:00
" </td> "
2019-04-16 17:12:26 +00:00
" <td><image src='qrc:/icons/logo-lg.png' width=220 height=220><br/> "
2014-04-17 05:52:25 +00:00
" </td> "
" </tr> "
" <tr> "
" <td colspan=2> "
" <hr/> "
2019-02-12 21:57:03 +00:00
" <p><b> " + tr ( " Copyright: " ) + " </b> " + " ©2011-2018 " +
" <a href= \" http://jedimark64.blogspot.com \" >Mark Watkins</a> (jedimark) and portions ©2019 Nightowl Software</p> "
2014-04-17 05:52:25 +00:00
" <p><b> " + tr ( " License: " ) + " </b> " +
2019-02-12 21:57:03 +00:00
tr ( " This software is released freely under the <a href= \" qrc:/COPYING \" >GNU Public License version 3</a>. " ) +
2014-04-17 05:52:25 +00:00
" </p> "
" <hr/> "
" <p><b> " + tr ( " DISCLAIMER: " ) + " </b></p> "
" <b><p> " +
tr ( " This is <font color='red'><u>NOT</u></font> medical software. This application is merely a data viewer, and no guarantee is made regarding accuracy or correctness of any calculations or data displayed. " )
+ " </p> "
2019-02-12 21:57:03 +00:00
" <p> " + tr ( " The authors will NOT be held liable by anyone who harms themselves or others by use or misuse of this software. " )
2014-04-17 05:52:25 +00:00
+ " </p> "
" <p> " + tr ( " Your doctor should always be your first and best source of guidance regarding the important matter of managing your health. " )
+ " </p> "
" <p> " + tr ( " *** <u>Use at your own risk</u> *** " ) + " </p></b> "
" <hr/> "
" </td></tr> "
" </table> "
" </body> "
" </html> "
;
}
2019-05-07 01:08:49 +00:00
* * */
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 ) ;
2012-01-06 18:15:21 +00:00
QString tmp ;
2014-04-17 05:52:25 +00:00
bool filtered = ! bookmarkFilter . isEmpty ( ) ;
bool found = ! filtered ;
2011-12-26 04:41:28 +00:00
if ( sess - > settings . contains ( Bookmark_Start ) ) {
2012-01-06 16:07:54 +00:00
//QVariantList start=sess->settings[Bookmark_Start].toList();
//QVariantList end=sess->settings[Bookmark_End].toList();
2014-04-17 05:52:25 +00:00
QStringList notes = sess - > settings [ Bookmark_Notes ] . toStringList ( ) ;
2012-01-06 16:07:54 +00:00
2014-04-17 05:52:25 +00:00
if ( notes . size ( ) > 0 ) {
tmp + = QString ( " <tr><td><b><a href='daily=%1'>%2</a></b><br/> " )
. arg ( date . toString ( Qt : : ISODate ) )
2019-08-06 17:51:14 +00:00
. arg ( date . toString ( MedDateFormat ) ) ;
2012-01-06 18:15:21 +00:00
2014-04-17 05:52:25 +00:00
tmp + = " <list> " ;
for ( int i = 0 ; i < notes . size ( ) ; i + + ) {
2012-01-06 16:07:54 +00:00
//QDate d=start[i].toDate();
2014-04-17 05:52:25 +00:00
QString note = notes [ i ] ;
if ( filtered & & note . contains ( bookmarkFilter , Qt : : CaseInsensitive ) ) {
found = true ;
}
tmp + = " <li> " + note + " </li> " ;
2011-12-26 18:26:06 +00:00
}
2014-04-17 05:52:25 +00:00
tmp + = " </list></td> " ;
2011-12-26 04:41:28 +00:00
}
}
2014-04-17 05:52:25 +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 ( ) ;
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 ( ) ;
// 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
2011-10-21 05:50:31 +00:00
void MainWindow : : CheckForUpdates ( )
{
2019-02-15 01:37:29 +00:00
qDebug ( ) < < " procedure <CheckForUpdates> called " ;
2019-03-10 16:03:19 +00:00
# ifndef NO_UPDATER
2011-12-16 16:31:58 +00:00
on_actionCheck_for_Updates_triggered ( ) ;
2019-03-10 16:03:19 +00:00
# else
QMessageBox : : information ( nullptr , STR_MessageBox_Information , tr ( " Updates are not yet implemented " ) ) ;
# endif
2011-10-21 05:50:31 +00:00
}
2020-02-17 14:39:38 +00:00
# ifndef NO_UPDATER
2011-09-06 07:33:34 +00:00
void MainWindow : : on_actionCheck_for_Updates_triggered ( )
{
2019-02-15 01:37:29 +00:00
qDebug ( ) < < " procedure <on_actionCheck_for_Updates_triggered> called " ;
2014-04-17 05:52:25 +00:00
UpdaterWindow * w = new UpdaterWindow ( this ) ;
2011-12-16 16:31:58 +00:00
w - > checkForUpdates ( ) ;
2011-09-06 07:33:34 +00:00
}
2020-02-17 14:39:38 +00:00
# endif
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
2014-04-17 05:52:25 +00:00
void packEventList ( EventList * el , EventDataType minval = 0 )
2011-12-23 10:52:31 +00:00
{
2014-04-17 05:52:25 +00:00
if ( el - > count ( ) < 2 ) { return ; }
2011-12-23 10:52:31 +00:00
EventList nel ( EVL_Waveform ) ;
2014-04-17 05:52:25 +00:00
EventDataType t = 0 , lastt = 0 ; //el->data(0);
qint64 ti = 0 ; //=el->time(0);
2011-12-23 10:52:31 +00:00
//nel.AddEvent(ti,lastt);
2014-04-17 05:52:25 +00:00
bool f = false ;
qint64 lasttime = 0 ;
EventDataType min = 999 , max = 0 ;
for ( quint32 i = 0 ; i < el - > count ( ) ; i + + ) {
t = el - > data ( i ) ;
ti = el - > time ( i ) ;
f = false ;
2013-09-15 04:20:26 +00:00
2014-04-17 05:52:25 +00:00
if ( t > minval ) {
if ( t ! = lastt ) {
2011-12-23 10:52:31 +00:00
if ( ! lasttime ) {
nel . setFirst ( ti ) ;
}
2014-04-17 05:52:25 +00:00
nel . AddEvent ( ti , t ) ;
if ( t < min ) { min = t ; }
if ( t > max ) { max = t ; }
lasttime = ti ;
f = true ;
2011-12-23 10:52:31 +00:00
}
} else {
2014-04-17 05:52:25 +00:00
if ( lastt > minval ) {
nel . AddEvent ( ti , lastt ) ;
lasttime = ti ;
f = true ;
2011-12-23 10:52:31 +00:00
}
}
2014-04-17 05:52:25 +00:00
lastt = t ;
2011-12-23 10:52:31 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-23 10:52:31 +00:00
if ( ! f ) {
2014-04-17 05:52:25 +00:00
if ( t > minval ) {
nel . AddEvent ( ti , t ) ;
2011-12-23 10:52:31 +00:00
}
}
2014-04-17 05:52:25 +00:00
2011-12-23 10:52:31 +00:00
el - > setFirst ( nel . first ( ) ) ;
el - > setLast ( nel . last ( ) ) ;
el - > setMin ( min ) ;
el - > setMax ( max ) ;
el - > getData ( ) . clear ( ) ;
el - > getTime ( ) . clear ( ) ;
el - > setCount ( nel . count ( ) ) ;
2014-04-17 05:52:25 +00:00
el - > getData ( ) = nel . getData ( ) ;
el - > getTime ( ) = nel . getTime ( ) ;
2011-12-23 10:52:31 +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 > valid ;
2011-12-01 01:47:09 +00:00
valid . push_back ( OXI_Pulse ) ;
valid . push_back ( OXI_SPO2 ) ;
valid . push_back ( OXI_Plethy ) ;
2011-12-01 03:05:23 +00:00
//valid.push_back(OXI_PulseChange); // Delete these and recalculate..
//valid.push_back(OXI_SPO2Drop);
2011-12-01 01:47:09 +00:00
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));
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 {
2011-12-28 06:27:26 +00:00
// Valid event
2013-09-15 04:20:26 +00:00
2014-04-17 05:52:25 +00:00
// // Clean up outliers at start of eventlist chunks
// EventDataType baseline=sess->wavg(OXI_SPO2);
// if (e.key()==OXI_SPO2) {
// const int o2start_threshold=10000; // seconds since start of event
// EventDataType zz;
// int ii;
// // Trash suspect outliers in the first o2start_threshold milliseconds
// for (int j=0;j<e.value().size();j++) {
// EventList *ev=e.value()[j];
// if ((ev->count() <= (unsigned)discard_threshold))
// continue;
// qint64 ti=ev->time(0);
// zz=-1;
// // Peek o2start_threshold ms ahead and grab the value
// for (ii=0;ii<ev->count();ii++) {
// if (((ev->time(ii)-ti) > o2start_threshold)) {
// zz=ev->data(ii);
// break;
// }
// }
// if (zz<0)
// continue;
// // Trash any suspect outliers
// for (int i=0;i<ii;i++) {
// if (ev->data(i) < baseline) { //(zz-10)) {
// ev->getData()[i]=0;
// }
// }
// }
// }
2011-12-01 03:05:23 +00:00
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 + + ) {
packEventList ( newlist [ i ] , 8 ) ;
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 ( ) ;
2019-02-15 01:37:29 +00:00
} else {
QMessageBox : : warning ( nullptr , tr ( " Gah! " ) ,
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);
2019-02-15 01:37:29 +00:00
} else {
QMessageBox : : warning ( nullptr , tr ( " Gah! " ) ,
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 ( )
{
2018-06-08 03:06:24 +00:00
if ( ! daily ) return ;
QDate date = daily - > getDate ( ) ;
daily - > Unload ( date ) ;
2014-07-11 12:09:38 +00:00
Day * day = p_profile - > GetDay ( date , MT_CPAP ) ;
2014-08-20 17:17:13 +00:00
Machine * cpap = nullptr ;
if ( day ) cpap = day - > machine ( MT_CPAP ) ;
2011-12-08 04:10:35 +00:00
2014-08-20 17:17:13 +00:00
if ( cpap ) {
2013-10-22 11:42:57 +00:00
QList < Session * > : : iterator s ;
2011-12-08 04:10:35 +00:00
2013-10-22 11:42:57 +00:00
QList < Session * > list ;
2014-07-28 13:56:29 +00:00
QList < SessionID > sidlist ;
2014-04-17 05:52:25 +00:00
for ( s = day - > begin ( ) ; s ! = day - > end ( ) ; + + s ) {
2013-10-22 11:42:57 +00:00
list . push_back ( * s ) ;
2014-07-28 13:56:29 +00:00
sidlist . push_back ( ( * s ) - > session ( ) ) ;
2011-12-08 04:10:35 +00:00
}
2014-04-17 05:52:25 +00:00
2014-07-28 13:56:29 +00:00
QHash < QString , SessionID > skipfiles ;
// Read the already imported file list
2014-08-20 17:17:13 +00:00
QFile impfile ( cpap - > getDataPath ( ) + " /imported_files.csv " ) ;
2014-07-28 13:56:29 +00:00
if ( impfile . exists ( ) ) {
if ( impfile . open ( QFile : : ReadOnly ) ) {
QTextStream impstream ( & impfile ) ;
QString serial ;
impstream > > serial ;
2014-08-20 17:17:13 +00:00
if ( cpap - > serial ( ) = = serial ) {
2014-07-28 13:56:29 +00:00
QString line , file , str ;
SessionID sid ;
bool ok ;
do {
line = impstream . readLine ( ) ;
file = line . section ( ' , ' , 0 , 0 ) ;
str = line . section ( ' , ' , 1 ) ;
sid = str . toInt ( & ok ) ;
if ( ! sidlist . contains ( sid ) ) {
skipfiles [ file ] = sid ;
}
} while ( ! impstream . atEnd ( ) ) ;
}
}
impfile . close ( ) ;
// Delete the file
impfile . remove ( ) ;
// Rewrite the file without the sessions being removed.
if ( impfile . open ( QFile : : WriteOnly ) ) {
QTextStream out ( & impfile ) ;
2014-08-20 17:17:13 +00:00
out < < cpap - > serial ( ) ;
2014-07-28 13:56:29 +00:00
QHash < QString , SessionID > : : iterator skit ;
QHash < QString , SessionID > : : iterator skit_end = skipfiles . end ( ) ;
for ( skit = skipfiles . begin ( ) ; skit ! = skit_end ; + + skit ) {
QString a = QString ( " %1,%2 \n " ) . arg ( skit . key ( ) ) . arg ( skit . value ( ) ) ; ;
out < < a ;
}
out . flush ( ) ;
}
impfile . close ( ) ;
}
2014-10-07 03:06:00 +00:00
QFile rxcache ( p_profile - > Get ( " { " + STR_GEN_DataFolder + " }/RXChanges.cache " ) ) ;
rxcache . remove ( ) ;
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));
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < list . size ( ) ; i + + ) {
Session * sess = list . at ( i ) ;
2014-07-27 16:35:49 +00:00
sess - > Destroy ( ) ;
2013-10-22 11:42:57 +00:00
delete sess ;
}
2014-10-07 03:06:00 +00:00
2014-07-27 16:35:49 +00:00
}
day = p_profile - > GetDay ( date , MT_CPAP ) ;
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 ) ;
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 ,
2019-02-15 01:37:29 +00:00
tr ( " Are you sure you want to rebuild all CPAP data for the following machine: \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 ,
2019-02-24 00:58:25 +00:00
" <p><b> " + STR_MessageBox_Warning + " : </b> " + tr ( " For some reason, OSCAR does not have any backups for the following machine: " ) + " </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 ) ;
purgeMachine ( mach ) ; // purge destroys machine 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 " +
tr ( " Would you like to import from your own backups now? (you will have no data visible for this machine until you do) " ) ,
QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) = = QMessageBox : : Yes ) {
2014-08-04 19:57:48 +00:00
on_action_Import_Data_triggered ( ) ;
} else {
}
}
if ( overview ) overview - > ReloadGraphs ( ) ;
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 ( ) ;
}
2018-05-08 08:12:32 +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 {
backupnotice = " <p> " + tr ( " OSCAR does not have any backups for this machine! " ) + " </p> " +
" <p> " + tr ( " Unless you have made <i>your <b>own</b> backups for ALL of your data for this machine</i>, "
" <font size=+2>you will lose this machine's data <b>permanently</b>!</font> " ) + " </p> " ;
}
2019-02-13 18:22:54 +00:00
if ( QMessageBox : : question ( this , STR_MessageBox_Warning ,
" <p><b> " + STR_MessageBox_Warning + " :</b> " +
2019-02-24 00:58:25 +00:00
tr ( " You are about to <font size=+2>obliterate</font> OSCAR's machine database for the following machine:</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 ) ;
2020-01-31 20:16:31 +00:00
qDebug ( ) < < " path to machine " < < 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-01-31 20:16:31 +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
qDebug ( ) < < " Couldn't remove directory " < < path ;
# endif
} else {
deleted = true ;
}
if ( ! deleted ) {
qDebug ( ) < < " Leaving backup folder intact " ;
}
PopulatePurgeMenu ( ) ;
p_profile - > StoreMachines ( ) ;
2014-05-18 17:06:58 +00:00
} else {
QMessageBox : : warning ( this , STR_MessageBox_Error ,
2019-02-15 01:37:29 +00:00
tr ( " A file permission error casued the purge process to fail; you will have to delete the following folder manually: " ) +
" \n \n " + QDir : : toNativeSeparators ( mach - > getDataPath ( ) ) , QMessageBox : : Ok , QMessageBox : : Ok ) ;
if ( overview )
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
}
2019-02-15 01:37:29 +00:00
if ( welcome )
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
2019-02-15 01:37:29 +00:00
if ( overview )
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
}
2014-09-29 14:41:31 +00:00
void MainWindow : : MachineUnsupported ( Machine * m )
{
2018-04-25 10:34:23 +00:00
if ( m = = nullptr ) {
qCritical ( ) < < " MainWindow::MachineUnsupported called with null machine object " ;
return ;
}
2014-09-29 14:41:31 +00:00
QMessageBox : : information ( this , STR_MessageBox_Error , QObject : : tr ( " Sorry, your %1 %2 machine is not currently supported. " ) . arg ( m - > brand ( ) ) . arg ( m - > model ( ) ) , QMessageBox : : Ok ) ;
}
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 ( )
{
QFileDialog w ;
w . setFileMode ( QFileDialog : : ExistingFiles ) ;
2019-04-08 03:28:54 +00:00
w . setWindowFlags ( this - > windowFlags ( ) & ~ Qt : : WindowContextHelpButtonHint ) ;
2012-01-11 13:55:46 +00:00
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
2013-01-20 16:31:51 +00:00
w . setNameFilters ( QStringList ( " Zeo CSV File (*.csv) " ) ) ;
2012-01-11 13:55:46 +00:00
ZEOLoader zeo ;
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
2020-01-29 21:21:42 +00:00
qDebug ( ) < < " Loading ZEO data from " < < filename ;
int c = zeo . OpenFile ( filename ) ;
if ( c > 0 ) {
Notify ( tr ( " Imported %1 ZEO session(s) from \n \n %2 " ) . arg ( c ) . arg ( filename ) , tr ( " Import Success " ) ) ;
qDebug ( ) < < " Imported " < < c < < " ZEO sessions " ;
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 ( ) ;
2020-01-29 21:21:42 +00:00
} else if ( c = = 0 ) {
Notify ( tr ( " Already up to date with ZEO data at \n \n %1 " ) . arg ( filename ) , tr ( " Up to date " ) ) ;
} else {
Notify ( tr ( " Couldn't find any valid ZEO CSV data at \n \n %1 " ) . arg ( filename ) , tr ( " Import Problem " ) ) ;
2012-01-11 13:55:46 +00:00
}
2014-04-17 05:52:25 +00:00
2012-01-11 13:55:46 +00:00
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
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 ( )
{
QFileDialog w ;
w . setFileMode ( QFileDialog : : ExistingFiles ) ;
w . setWindowFlags ( this - > windowFlags ( ) & ~ Qt : : WindowContextHelpButtonHint ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
w . setNameFilters ( QStringList ( " Dreem CSV File (*.csv) " ) ) ;
DreemLoader dreem ;
2012-01-11 13:55:46 +00:00
2020-01-30 00:59:05 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
qDebug ( ) < < " Loading Dreem data from " < < filename ;
int c = dreem . OpenFile ( filename ) ;
if ( c > 0 ) {
Notify ( tr ( " Imported %1 Dreem session(s) from \n \n %2 " ) . arg ( c ) . arg ( filename ) , tr ( " Import Success " ) ) ;
qDebug ( ) < < " Imported " < < c < < " Dreem sessions " ;
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 ( ) ;
2020-01-30 00:59:05 +00:00
} else if ( c = = 0 ) {
Notify ( tr ( " Already up to date with Dreem data at \n \n %1 " ) . arg ( filename ) , tr ( " Up to date " ) ) ;
} else {
Notify ( tr ( " Couldn't find any valid Dreem CSV data at \n \n %1 " ) . arg ( filename ) , tr ( " Import Problem " ) ) ;
}
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
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
void MainWindow : : on_actionImport_Somnopose_Data_triggered ( )
{
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 ) ;
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2014-04-15 13:59:24 +00:00
w . setNameFilters ( QStringList ( " Somnopause CSV File (*.csv) " ) ) ;
SomnoposeLoader somno ;
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
2014-04-15 13:59:24 +00:00
if ( ! somno . OpenFile ( filename ) ) {
2014-04-17 05:52:25 +00:00
Notify ( tr ( " There was a problem opening Somnopose Data File: " ) + filename ) ;
2014-04-15 13:59:24 +00:00
return ;
}
Notify ( tr ( " Somnopause Data Import complete " ) ) ;
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 ( ) ) ;
}
}
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 ;
2020-01-23 17:51:58 +00:00
QFileDialog w ;
2020-01-26 22:51:56 +00:00
w . setFileMode ( QFileDialog : : AnyFile ) ;
2020-01-23 17:51:58 +00:00
w . setWindowFlags ( this - > windowFlags ( ) & ~ Qt : : WindowContextHelpButtonHint ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
2020-01-26 22:51:56 +00:00
w . setNameFilters ( viatom . getNameFilter ( ) ) ;
2020-02-17 02:02:30 +00:00
# if defined(Q_OS_WIN)
// Windows can't handle this name filter.
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
# endif
2020-01-23 17:51:58 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
2020-01-26 23:13:09 +00:00
int c = viatom . Open ( filename ) ;
if ( c > 0 ) {
Notify ( tr ( " Imported %1 oximetry session(s) from \n \n %2 " ) . arg ( c ) . arg ( filename ) , tr ( " Import Success " ) ) ;
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 ( ) ;
2020-01-26 23:13:09 +00:00
} else if ( c = = 0 ) {
Notify ( tr ( " Already up to date with oximetry data at \n \n %1 " ) . arg ( filename ) , tr ( " Up to date " ) ) ;
} else {
Notify ( tr ( " Couldn't find any valid data at \n \n %1 " ) . arg ( filename ) , tr ( " Import Problem " ) ) ;
2020-01-23 17:51:58 +00:00
}
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
}
2014-04-25 05:28:10 +00:00
void MainWindow : : GenerateStatistics ( )
{
2014-07-11 12:09:38 +00:00
QDate first = p_profile - > FirstDay ( ) ;
QDate last = p_profile - > LastDay ( ) ;
2014-05-25 07:07:08 +00:00
ui - > statStartDate - > setMinimumDate ( first ) ;
ui - > statStartDate - > setMaximumDate ( last ) ;
ui - > statEndDate - > setMinimumDate ( first ) ;
ui - > statEndDate - > setMaximumDate ( last ) ;
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
}
2014-05-06 11:54:41 +00:00
void MainWindow : : on_reportModeMonthly_clicked ( )
{
2014-05-25 07:07:08 +00:00
ui - > statStartDate - > setVisible ( false ) ;
ui - > statEndDate - > setVisible ( false ) ;
2014-07-11 12:09:38 +00:00
if ( p_profile - > general - > statReportMode ( ) ! = 1 ) {
p_profile - > general - > setStatReportMode ( 1 ) ;
2014-05-06 11:54:41 +00:00
GenerateStatistics ( ) ;
}
}
void MainWindow : : on_reportModeStandard_clicked ( )
{
2014-05-25 07:07:08 +00:00
ui - > statStartDate - > setVisible ( false ) ;
ui - > statEndDate - > setVisible ( false ) ;
2014-07-11 12:09:38 +00:00
if ( p_profile - > general - > statReportMode ( ) ! = 0 ) {
p_profile - > general - > setStatReportMode ( 0 ) ;
2014-05-06 11:54:41 +00:00
GenerateStatistics ( ) ;
}
}
2014-05-25 07:07:08 +00:00
void MainWindow : : on_reportModeRange_clicked ( )
{
ui - > statStartDate - > setVisible ( true ) ;
ui - > statEndDate - > setVisible ( true ) ;
2014-07-11 12:09:38 +00:00
if ( p_profile - > general - > statReportMode ( ) ! = 2 ) {
p_profile - > general - > setStatReportMode ( 2 ) ;
2014-05-25 07:07:08 +00:00
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
}
2020-03-26 23:59:54 +00:00
// We have to update the summary cache for the affected machine(s),
// 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 ) {
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
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 ( )
{
2020-01-27 19:13:41 +00:00
QList < ImportPath > datacards = selectCPAPDataCards ( tr ( " Would you like to zip this card? " ) ) ;
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 ;
// 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 ) ;
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 ( ) ;
}
folder + = QDir : : separator ( ) + infostr + " .zip " ;
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
}
// 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 " ;
}
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 ) ;
2020-01-27 19:13:41 +00:00
prog - > setMessage ( tr ( " Creating zip... " ) ) ;
2020-01-22 17:59:58 +00:00
ok = z . AddDirectory ( cardPath , 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
}
void MainWindow : : on_actionCreate_OSCAR_Data_zip_triggered ( )
{
QString folder ;
// Note: macOS ignores this and points to OSCAR's most recently used directory for saving.
folder = QStandardPaths : : writableLocation ( QStandardPaths : : DocumentsLocation ) ;
folder + = QDir : : separator ( ) + STR_AppData + " .zip " ;
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 " ;
}
qDebug ( ) < < " Create zip of OSCAR data folder: " < < filename ;
2020-01-22 22:33:15 +00:00
QDir oscarData ( GetAppData ( ) ) ;
QFile debugLog ( oscarData . canonicalPath ( ) + QDir : : separator ( ) + " debuglog.txt " ) ;
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 ( ) ;
// Build the list of files and exclude any existing debug log.
FileQueue files ;
files . AddDirectory ( oscarData . canonicalPath ( ) , oscarData . dirName ( ) ) ;
files . Remove ( debugLog . fileName ( ) ) ;
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 ) ;
if ( ok & & z . aborted ( ) = = false ) {
// Update the debug log and add it last.
ok = debugLog . open ( QIODevice : : WriteOnly ) ;
if ( ok ) {
debugLog . write ( ui - > logText - > toPlainText ( ) . toLocal8Bit ( ) . data ( ) ) ;
debugLog . close ( ) ;
QString debugLogName = oscarData . dirName ( ) + QDir : : separator ( ) + QFileInfo ( debugLog ) . fileName ( ) ;
ok = z . AddFile ( debugLog . fileName ( ) , debugLogName ) ;
if ( ! ok ) {
2020-01-27 19:13:41 +00:00
qWarning ( ) < < " Unable to add debug log to zip! " ;
2020-01-22 22:33:15 +00:00
}
}
}
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 ) ;
}