2014-08-17 12:56:05 +00:00
|
|
|
/* SleepLib Profiles Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
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
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef PROFILES_H
|
|
|
|
#define PROFILES_H
|
|
|
|
|
|
|
|
#include <QString>
|
2011-12-21 11:09:50 +00:00
|
|
|
#include <QCryptographicHash>
|
|
|
|
#include <QThread>
|
2014-04-20 05:25:09 +00:00
|
|
|
|
2014-07-09 03:49:20 +00:00
|
|
|
#include "version.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "machine.h"
|
|
|
|
#include "machine_loader.h"
|
|
|
|
#include "preferences.h"
|
2011-12-21 12:47:47 +00:00
|
|
|
#include "common.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
class Machine;
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
enum Gender { GenderNotSpecified, Male, Female };
|
|
|
|
enum MaskType { Mask_Unknown, Mask_NasalPillows, Mask_Hybrid, Mask_StandardNasal, Mask_FullFace };
|
2013-11-19 04:42:10 +00:00
|
|
|
enum OverviewLinechartModes { OLC_Bartop, OLC_Lines };
|
2011-12-21 11:09:50 +00:00
|
|
|
|
|
|
|
class DoctorInfo;
|
|
|
|
class UserInfo;
|
|
|
|
class UserSettings;
|
|
|
|
class OxiSettings;
|
|
|
|
class CPAPSettings;
|
|
|
|
class AppearanceSettings;
|
2011-12-21 12:47:47 +00:00
|
|
|
class SessionSettings;
|
2011-12-21 11:09:50 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
/*!
|
|
|
|
\class Profile
|
|
|
|
\author Mark Watkins
|
|
|
|
\date 28/04/11
|
2011-12-19 02:20:24 +00:00
|
|
|
\brief The User profile system, containing all information for a user, and an index into all Machine data
|
2011-06-26 08:30:44 +00:00
|
|
|
*/
|
2014-04-20 05:25:09 +00:00
|
|
|
class Profile : public Preferences
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Constructor.. Does not open profile
|
2014-04-20 05:25:09 +00:00
|
|
|
Profile(QString path);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~Profile();
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Open profile, parse profile.xml file, and initialize helper classes
|
2016-03-03 04:48:08 +00:00
|
|
|
virtual bool Load(QString filename = "");
|
2012-01-12 22:46:06 +00:00
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
//! \brief Parse machines.xml
|
|
|
|
bool OpenMachines();
|
|
|
|
bool StoreMachines();
|
|
|
|
|
2014-07-12 10:52:14 +00:00
|
|
|
//! \brief Returns hostname that locked profile, or empty string if unlocked
|
|
|
|
QString checkLock();
|
|
|
|
|
|
|
|
//! \brief Removes a lockfile
|
|
|
|
bool removeLock();
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Save Profile object (This is an extension to Preference::Save(..))
|
2014-04-17 05:58:57 +00:00
|
|
|
virtual bool Save(QString filename = "");
|
2011-12-11 10:59:30 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Add machine to this profiles machlist
|
2011-06-26 08:30:44 +00:00
|
|
|
void AddMachine(Machine *m);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Remove machine from this profiles machlist
|
2011-06-26 08:30:44 +00:00
|
|
|
void DelMachine(Machine *m);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Loads all machine (summary) data belonging to this profile
|
2011-06-26 08:30:44 +00:00
|
|
|
void LoadMachineData();
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Barf because data format has changed. This does a purge of CPAP data for machine *m
|
2011-07-29 22:55:24 +00:00
|
|
|
void DataFormatError(Machine *m);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
QString path() { return p_path; }
|
|
|
|
|
|
|
|
/*! \brief Import Machine Data
|
2011-12-19 02:20:24 +00:00
|
|
|
\param path containing import location
|
2011-12-18 16:39:36 +00:00
|
|
|
*/
|
2011-07-15 13:30:41 +00:00
|
|
|
int Import(QString path);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2014-07-25 07:53:48 +00:00
|
|
|
//! \brief Removes a given day from the date, destroying the daylist date record if empty
|
|
|
|
bool unlinkDay(Day * day);
|
|
|
|
|
|
|
|
// bool trashMachine(Machine * mach);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Add Day record to Profile Day list
|
2014-08-20 17:17:13 +00:00
|
|
|
Day *addDay(QDate date);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2014-04-23 13:19:56 +00:00
|
|
|
//! \brief Get Day record if data available for date and machine type, else return nullptr
|
2014-04-17 05:58:57 +00:00
|
|
|
Day *GetDay(QDate date, MachineType type = MT_UNKNOWN);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
//! \brief Same as GetDay but does not open the summaries
|
|
|
|
Day *FindDay(QDate date, MachineType type = MT_UNKNOWN);
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
//! \brief Get Day record if data available for date and machine type,
|
2014-04-23 13:19:56 +00:00
|
|
|
// and has enabled session data, else return nullptr
|
2014-04-17 05:58:57 +00:00
|
|
|
Day *GetGoodDay(QDate date, MachineType type);
|
2011-12-28 12:36:40 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
//! \breif Same as GetGoodDay but does not open the summaries
|
|
|
|
Day *FindGoodDay(QDate date, MachineType type);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Returns a list of all machines of type t
|
2014-04-17 05:58:57 +00:00
|
|
|
QList<Machine *> GetMachines(MachineType t = MT_UNKNOWN);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2014-04-23 13:19:56 +00:00
|
|
|
//! \brief Returns the machine of type t used on date, nullptr if none..
|
2014-04-17 05:58:57 +00:00
|
|
|
Machine *GetMachine(MachineType t, QDate date);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief return the first machine of type t
|
2014-04-17 05:58:57 +00:00
|
|
|
Machine *GetMachine(MachineType t);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Returns true if this profile stores this variable identified by key
|
|
|
|
bool contains(QString key) { return p_preferences.contains(key); }
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Get all days records of machine type between start and end dates
|
|
|
|
QList<Day *> getDays(MachineType mt, QDate start, QDate end);
|
|
|
|
|
|
|
|
//! \brief Returns a count of all days (with data) of machine type, between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
int countDays(MachineType mt = MT_UNKNOWN, QDate start = QDate(), QDate end = QDate());
|
2014-05-06 09:11:31 +00:00
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Returns a count of all compliant days of machine type between start and end dates
|
2014-05-06 09:11:31 +00:00
|
|
|
int countCompliantDays(MachineType mt, QDate start, QDate end);
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Returns a count of all event entries for code, matching machine type between start an end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcCount(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Returns a sum of all event data for Channel code, matching machine type between start an end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
double calcSum(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Returns a sum of all session durations for machine type, between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcHours(MachineType mt = MT_CPAP, QDate start = QDate(), QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Calculates Channel Average (Sums and counts all events, returning the sum divided by the count.)
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcAvg(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Calculates Channel Weighted Average between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcWavg(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Calculates the minimum value for channel code, between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcMin(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Calculates the maximum value for channel code, between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcMax(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Calculates a percentile value percent for channel code, between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcPercentile(ChannelID code, EventDataType percent, MachineType mt = MT_CPAP,
|
|
|
|
QDate start = QDate(), QDate end = QDate());
|
2011-12-22 13:22:40 +00:00
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Tests if Channel code is available in all day sets
|
2012-01-25 22:34:21 +00:00
|
|
|
bool hasChannel(ChannelID code);
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
//! \brief Looks up if any machines report channel is available
|
|
|
|
bool channelAvailable(ChannelID code);
|
|
|
|
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Calculates the minimum session settings value for channel code, between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcSettingsMin(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Calculates the maximum session settings value for channel code, between start and end dates
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType calcSettingsMax(ChannelID code, MachineType mt = MT_CPAP, QDate start = QDate(),
|
|
|
|
QDate end = QDate());
|
2011-12-23 10:52:31 +00:00
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Calculates the time channel code spends above threshold value for machine type, between start and end dates
|
2014-05-15 20:48:05 +00:00
|
|
|
EventDataType calcAboveThreshold(ChannelID code, EventDataType threshold, MachineType mt = MT_CPAP,
|
|
|
|
QDate start = QDate(), QDate end = QDate());
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Calculates the time channel code spends below threshold value for machine type, between start and end dates
|
2014-05-15 20:48:05 +00:00
|
|
|
EventDataType calcBelowThreshold(ChannelID code, EventDataType threshold, MachineType mt = MT_CPAP,
|
|
|
|
QDate start = QDate(), QDate end = QDate());
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
|
2014-10-11 03:07:29 +00:00
|
|
|
Day * findSessionDay(Session * session);
|
2014-05-31 21:25:07 +00:00
|
|
|
// XML load components
|
2014-04-17 05:58:57 +00:00
|
|
|
virtual void ExtraLoad(QDomElement &root);
|
2011-07-24 16:34:53 +00:00
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Looks for the first date containing a day record matching machinetype
|
2014-04-17 05:58:57 +00:00
|
|
|
QDate FirstDay(MachineType mt = MT_UNKNOWN);
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Looks for the last date containing a day record matching machinetype
|
2014-04-17 05:58:57 +00:00
|
|
|
QDate LastDay(MachineType mt = MT_UNKNOWN);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Looks for the first date containing a day record with enabled sessions matching machinetype
|
2014-04-17 05:58:57 +00:00
|
|
|
QDate FirstGoodDay(MachineType mt = MT_UNKNOWN);
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Looks for the last date containing a day record with enabled sessions matching machinetype
|
2014-04-17 05:58:57 +00:00
|
|
|
QDate LastGoodDay(MachineType mt = MT_UNKNOWN);
|
2011-12-28 12:36:40 +00:00
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Returns this profiles data folder
|
2011-12-21 11:09:50 +00:00
|
|
|
QString dataFolder() { return (*this).Get("{DataFolder}"); }
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
//! \brief Return if this profile has been opened or not
|
2014-04-25 05:28:10 +00:00
|
|
|
bool isOpen() { return m_opened; }
|
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
//! \brief QMap of day records (iterates in order).
|
|
|
|
QMap<QDate, Day *> daylist;
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief List of machines, indexed by MachineID.
|
|
|
|
QHash<MachineID, Machine *> machlist;
|
2014-04-20 05:25:09 +00:00
|
|
|
|
|
|
|
bool is_first_day;
|
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
UserInfo *user;
|
|
|
|
CPAPSettings *cpap;
|
|
|
|
OxiSettings *oxi;
|
|
|
|
DoctorInfo *doctor;
|
|
|
|
AppearanceSettings *appearance;
|
2011-12-21 12:47:47 +00:00
|
|
|
UserSettings *general;
|
|
|
|
SessionSettings *session;
|
2011-12-21 11:09:50 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
2014-04-20 05:25:09 +00:00
|
|
|
QDate m_first;
|
|
|
|
QDate m_last;
|
2014-04-25 05:28:10 +00:00
|
|
|
|
|
|
|
bool m_opened;
|
2014-09-14 15:29:07 +00:00
|
|
|
bool m_machopened;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class MachineLoader;
|
2014-04-17 05:58:57 +00:00
|
|
|
extern MachineLoader *GetLoader(QString name);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
extern Preferences *p_pref;
|
|
|
|
extern Preferences *p_layout;
|
2014-04-17 05:58:57 +00:00
|
|
|
extern Profile *p_profile;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
// these are bad and must change
|
2011-10-05 07:41:56 +00:00
|
|
|
#define PREF (*p_pref)
|
|
|
|
#define LAYOUT (*p_layout)
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2012-01-12 22:46:06 +00:00
|
|
|
// DoctorInfo Strings
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_DI_Name = "DoctorName";
|
|
|
|
const QString STR_DI_Phone = "DoctorPhone";
|
|
|
|
const QString STR_DI_Email = "DoctorEmail";
|
|
|
|
const QString STR_DI_Practice = "DoctorPractice";
|
|
|
|
const QString STR_DI_Address = "DoctorAddress";
|
|
|
|
const QString STR_DI_PatientID = "DoctorPatientID";
|
2012-01-12 22:46:06 +00:00
|
|
|
|
|
|
|
// UserInfo Strings
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_UI_DOB = "DOB";
|
|
|
|
const QString STR_UI_FirstName = "FirstName";
|
|
|
|
const QString STR_UI_LastName = "LastName";
|
|
|
|
const QString STR_UI_UserName = "UserName";
|
|
|
|
const QString STR_UI_Password = "Password";
|
|
|
|
const QString STR_UI_Address = "Address";
|
|
|
|
const QString STR_UI_Phone = "Phone";
|
|
|
|
const QString STR_UI_EmailAddress = "EmailAddress";
|
|
|
|
const QString STR_UI_Country = "Country";
|
|
|
|
const QString STR_UI_Height = "Height";
|
|
|
|
const QString STR_UI_Gender = "Gender";
|
|
|
|
const QString STR_UI_TimeZone = "TimeZone";
|
|
|
|
const QString STR_UI_DST = "DST";
|
2012-01-12 22:46:06 +00:00
|
|
|
|
|
|
|
// OxiSettings Strings
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_OS_EnableOximetry = "EnableOximetry";
|
2014-09-18 10:53:59 +00:00
|
|
|
const QString STR_OS_DefaultDevice = "DefaultOxiDevice";
|
2014-08-23 12:31:28 +00:00
|
|
|
const QString STR_OS_SyncOximeterClock = "SyncOximeterClock";
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_OS_OximeterType = "OximeterType";
|
|
|
|
const QString STR_OS_OxiDiscardThreshold = "OxiDiscardThreshold";
|
|
|
|
const QString STR_OS_SPO2DropDuration = "SPO2DropDuration";
|
|
|
|
const QString STR_OS_SPO2DropPercentage = "SPO2DropPercentage";
|
|
|
|
const QString STR_OS_PulseChangeDuration = "PulseChangeDuration";
|
|
|
|
const QString STR_OS_PulseChangeBPM = "PulseChangeBPM";
|
2014-05-26 10:22:38 +00:00
|
|
|
const QString STR_OS_SkipOxiIntroScreen = "SkipOxiIntroScreen";
|
|
|
|
|
2012-01-12 22:46:06 +00:00
|
|
|
|
|
|
|
// CPAPSettings Strings
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_CS_ComplianceHours = "ComplianceHours";
|
|
|
|
const QString STR_CS_ShowCompliance = "ShowCompliance";
|
|
|
|
const QString STR_CS_ShowLeaksMode = "ShowLeaksMode";
|
|
|
|
const QString STR_CS_MaskStartDate = "MaskStartDate";
|
|
|
|
const QString STR_CS_MaskDescription = "MaskDescription";
|
|
|
|
const QString STR_CS_MaskType = "MaskType";
|
|
|
|
const QString STR_CS_PrescribedMode = "CPAPPrescribedMode";
|
|
|
|
const QString STR_CS_PrescribedMinPressure = "CPAPPrescribedMinPressure";
|
|
|
|
const QString STR_CS_PrescribedMaxPressure = "CPAPPrescribedMaxPressure";
|
|
|
|
const QString STR_CS_UntreatedAHI = "UntreatedAHI";
|
|
|
|
const QString STR_CS_Notes = "CPAPNotes";
|
|
|
|
const QString STR_CS_DateDiagnosed = "DateDiagnosed";
|
|
|
|
const QString STR_CS_UserEventFlagging = "UserEventFlagging";
|
2014-07-20 09:22:31 +00:00
|
|
|
const QString STR_CS_UserEventPieChart = "UserEventPieChart";
|
2014-08-20 20:50:55 +00:00
|
|
|
const QString STR_CS_AutoImport = "AutoImport";
|
2014-09-01 11:39:38 +00:00
|
|
|
const QString STR_CS_BrickWarning = "BrickWarning";
|
2014-07-20 09:22:31 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_CS_UserFlowRestriction = "UserFlowRestriction";
|
|
|
|
const QString STR_CS_UserEventDuration = "UserEventDuration";
|
2014-07-20 05:24:49 +00:00
|
|
|
const QString STR_CS_UserFlowRestriction2 = "UserFlowRestriction2";
|
|
|
|
const QString STR_CS_UserEventDuration2 = "UserEventDuration2";
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_CS_UserEventDuplicates = "UserEventDuplicates";
|
2014-07-20 13:25:57 +00:00
|
|
|
const QString STR_CS_ResyncFromUserFlagging = "ResyncFromUserFlagging";
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_CS_AHIWindow = "AHIWindow";
|
|
|
|
const QString STR_CS_AHIReset = "AHIReset";
|
|
|
|
const QString STR_CS_ClockDrift = "ClockDrift";
|
2014-05-15 19:45:46 +00:00
|
|
|
const QString STR_CS_LeakRedline = "LeakRedline";
|
|
|
|
const QString STR_CS_ShowLeakRedline = "ShowLeakRedline";
|
2012-01-12 22:46:06 +00:00
|
|
|
|
2016-03-04 21:27:33 +00:00
|
|
|
const QString STR_CS_CalculateUnintentionalLeaks = "CalculateUnintentionalLeaks";
|
2016-03-03 04:48:08 +00:00
|
|
|
const QString STR_CS_4cmH2OLeaks = "Custom4cmH2OLeaks";
|
|
|
|
const QString STR_CS_20cmH2OLeaks = "Custom20cmH2OLeaks";
|
|
|
|
|
2012-01-12 22:46:06 +00:00
|
|
|
// ImportSettings Strings
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_IS_DaySplitTime = "DaySplitTime";
|
2014-09-13 11:34:18 +00:00
|
|
|
const QString STR_IS_PreloadSummaries = "PreloadSummaries";
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_IS_CacheSessions = "MemoryHog";
|
|
|
|
const QString STR_IS_CombineCloseSessions = "CombineCloserSessions";
|
|
|
|
const QString STR_IS_IgnoreShorterSessions = "IgnoreShorterSessions";
|
|
|
|
const QString STR_IS_Multithreading = "EnableMultithreading";
|
|
|
|
const QString STR_IS_BackupCardData = "BackupCardData";
|
|
|
|
const QString STR_IS_CompressBackupData = "CompressBackupData";
|
|
|
|
const QString STR_IS_CompressSessionData = "CompressSessionData";
|
2014-05-19 07:30:10 +00:00
|
|
|
const QString STR_IS_IgnoreOlderSessions = "IgnoreOlderSessions";
|
|
|
|
const QString STR_IS_IgnoreOlderSessionsDate = "IgnoreOlderSessionsDate";
|
2014-07-30 20:25:06 +00:00
|
|
|
const QString STR_IS_LockSummarySessions = "LockSummarySessions";
|
2012-01-12 22:46:06 +00:00
|
|
|
|
|
|
|
// AppearanceSettings Strings
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_AS_GraphHeight = "GraphHeight";
|
2014-10-02 11:22:30 +00:00
|
|
|
const QString STR_AS_DailyPanelWidth = "DailyPanelWidth";
|
|
|
|
const QString STR_AS_RightPanelWidth = "RightPanelWidth";
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_AS_AntiAliasing = "UseAntiAliasing";
|
|
|
|
const QString STR_AS_GraphSnapshots = "EnableGraphSnapshots";
|
|
|
|
const QString STR_AS_Animations = "AnimationsAndTransitions";
|
|
|
|
const QString STR_AS_SquareWave = "SquareWavePlots";
|
|
|
|
const QString STR_AS_OverlayType = "OverlayType";
|
|
|
|
const QString STR_AS_OverviewLinechartMode = "OverviewLinechartMode";
|
|
|
|
const QString STR_AS_UsePixmapCaching = "UsePixmapCaching";
|
|
|
|
const QString STR_AS_AllowYAxisScaling = "AllowYAxisScaling";
|
|
|
|
const QString STR_AS_GraphTooltips = "GraphTooltips";
|
2014-05-10 02:53:50 +00:00
|
|
|
const QString STR_AS_LineThickness = "LineThickness";
|
2014-07-21 08:33:04 +00:00
|
|
|
const QString STR_AS_LineCursorMode = "LineCursorMode";
|
2014-08-06 20:10:40 +00:00
|
|
|
const QString STR_AS_CalendarVisible = "CalendarVisible";
|
2014-08-23 12:31:28 +00:00
|
|
|
const QString STR_AS_RightSidebarVisible = "RightSidebarVisible";
|
2012-01-12 22:46:06 +00:00
|
|
|
|
|
|
|
// UserSettings Strings
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_US_UnitSystem = "UnitSystem";
|
|
|
|
const QString STR_US_EventWindowSize = "EventWindowSize";
|
|
|
|
const QString STR_US_SkipEmptyDays = "SkipEmptyDays";
|
|
|
|
const QString STR_US_RebuildCache = "RebuildCache";
|
|
|
|
const QString STR_US_ShowDebug = "ShowDebug";
|
2014-09-13 11:34:18 +00:00
|
|
|
const QString STR_US_ShowPerformance = "ShowPerformance";
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString STR_US_LinkGroups = "LinkGroups";
|
|
|
|
const QString STR_US_CalculateRDI = "CalculateRDI";
|
|
|
|
const QString STR_US_ShowSerialNumbers = "ShowSerialNumbers";
|
|
|
|
const QString STR_US_PrefCalcMiddle = "PrefCalcMiddle";
|
|
|
|
const QString STR_US_PrefCalcPercentile = "PrefCalcPercentile";
|
|
|
|
const QString STR_US_PrefCalcMax = "PrefCalcMax";
|
|
|
|
const QString STR_US_TooltipTimeout = "TooltipTimeout";
|
|
|
|
const QString STR_US_ScrollDampening = "ScrollDampening";
|
2014-08-07 20:27:23 +00:00
|
|
|
const QString STR_US_ShowUnknownFlags = "ShowUnknownFlags";
|
2014-05-06 11:54:41 +00:00
|
|
|
const QString STR_US_StatReportMode = "StatReportMode";
|
2014-08-29 12:08:06 +00:00
|
|
|
const QString STR_US_LastOverviewRange = "LastOverviewRange";
|
2012-01-12 22:46:06 +00:00
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
// Parent class for subclasses that manipulate the profile.
|
|
|
|
class ProfileSettings
|
2011-12-21 11:09:50 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-04-20 05:25:09 +00:00
|
|
|
ProfileSettings(Profile *profile)
|
|
|
|
: m_profile(profile)
|
|
|
|
{ }
|
2014-04-17 05:58:57 +00:00
|
|
|
|
2014-05-15 19:45:46 +00:00
|
|
|
inline void setPref(QString name, QVariant value) {
|
2014-04-20 05:25:09 +00:00
|
|
|
(*m_profile)[name] = value;
|
|
|
|
}
|
2014-04-17 05:58:57 +00:00
|
|
|
|
2014-05-15 19:45:46 +00:00
|
|
|
inline void initPref(QString name, QVariant value) {
|
2014-04-25 05:28:10 +00:00
|
|
|
m_profile->init(name, value);
|
2014-04-20 05:25:09 +00:00
|
|
|
}
|
2014-04-17 05:58:57 +00:00
|
|
|
|
2014-05-15 19:45:46 +00:00
|
|
|
inline QVariant getPref(QString name) const {
|
2014-04-20 05:25:09 +00:00
|
|
|
return (*m_profile)[name];
|
|
|
|
}
|
2014-04-17 05:58:57 +00:00
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
void setProfile(Profile *profile) {
|
|
|
|
m_profile = profile;
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
public:
|
2011-12-21 11:09:50 +00:00
|
|
|
Profile *m_profile;
|
|
|
|
};
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
class DoctorInfo : public ProfileSettings
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DoctorInfo(Profile *profile)
|
|
|
|
: ProfileSettings(profile)
|
|
|
|
{
|
|
|
|
initPref(STR_DI_Name, QString());
|
|
|
|
initPref(STR_DI_Phone, QString());
|
|
|
|
initPref(STR_DI_Email, QString());
|
|
|
|
initPref(STR_DI_Practice, QString());
|
|
|
|
initPref(STR_DI_Address, QString());
|
|
|
|
initPref(STR_DI_PatientID, QString());
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString name() const { return getPref(STR_DI_Name).toString(); }
|
|
|
|
const QString phone() const { return getPref(STR_DI_Phone).toString(); }
|
|
|
|
const QString email() const { return getPref(STR_DI_Email).toString(); }
|
|
|
|
const QString practiceName() const { return getPref(STR_DI_Practice).toString(); }
|
|
|
|
const QString address() const { return getPref(STR_DI_Address).toString(); }
|
|
|
|
const QString patientID() const { return getPref(STR_DI_PatientID).toString(); }
|
|
|
|
|
|
|
|
void setName(QString name) { setPref(STR_DI_Name, name); }
|
|
|
|
void setPhone(QString phone) { setPref(STR_DI_Phone, phone); }
|
|
|
|
void setEmail(QString phone) { setPref(STR_DI_Email, phone); }
|
|
|
|
void setPracticeName(QString practice) { setPref(STR_DI_Practice, practice); }
|
|
|
|
void setAddress(QString address) { setPref(STR_DI_Address, address); }
|
|
|
|
void setPatientID(QString pid) { setPref(STR_DI_PatientID, pid); }
|
|
|
|
};
|
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
|
|
|
|
/*! \class UserInfo
|
|
|
|
\brief Profile Options relating to the User Information
|
|
|
|
*/
|
2014-04-20 05:25:09 +00:00
|
|
|
class UserInfo : public ProfileSettings
|
2011-12-21 11:09:50 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-04-20 05:25:09 +00:00
|
|
|
UserInfo(Profile *profile)
|
|
|
|
: ProfileSettings(profile)
|
|
|
|
{
|
|
|
|
initPref(STR_UI_DOB, QDate(1970, 1, 1));
|
|
|
|
initPref(STR_UI_FirstName, QString());
|
|
|
|
initPref(STR_UI_LastName, QString());
|
|
|
|
initPref(STR_UI_UserName, QString());
|
|
|
|
initPref(STR_UI_Password, QString());
|
|
|
|
initPref(STR_UI_Address, QString());
|
|
|
|
initPref(STR_UI_Phone, QString());
|
|
|
|
initPref(STR_UI_EmailAddress, QString());
|
|
|
|
initPref(STR_UI_Country, QString());
|
|
|
|
initPref(STR_UI_Height, 0.0);
|
|
|
|
initPref(STR_UI_Gender, (int)GenderNotSpecified);
|
|
|
|
initPref(STR_UI_TimeZone, QString());
|
|
|
|
initPref(STR_UI_DST, false);
|
|
|
|
}
|
2014-04-17 05:58:57 +00:00
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
QDate DOB() const { return getPref(STR_UI_DOB).toDate(); }
|
|
|
|
const QString firstName() const { return getPref(STR_UI_FirstName).toString(); }
|
|
|
|
const QString lastName() const { return getPref(STR_UI_LastName).toString(); }
|
|
|
|
const QString userName() const { return getPref(STR_UI_UserName).toString(); }
|
|
|
|
const QString address() const { return getPref(STR_UI_Address).toString(); }
|
|
|
|
const QString phone() const { return getPref(STR_UI_Phone).toString(); }
|
|
|
|
const QString email() const { return getPref(STR_UI_EmailAddress).toString(); }
|
|
|
|
double height() const { return getPref(STR_UI_Height).toDouble(); }
|
|
|
|
const QString country() const { return getPref(STR_UI_Country).toString(); }
|
|
|
|
Gender gender() const { return (Gender)getPref(STR_UI_Gender).toInt(); }
|
|
|
|
const QString timeZone() const { return getPref(STR_UI_TimeZone).toString(); }
|
|
|
|
bool daylightSaving() const { return getPref(STR_UI_DST).toBool(); }
|
|
|
|
|
|
|
|
void setDOB(QDate date) { setPref(STR_UI_DOB, date); }
|
|
|
|
void setFirstName(QString name) { setPref(STR_UI_FirstName, name); }
|
|
|
|
void setLastName(QString name) { setPref(STR_UI_LastName, name); }
|
|
|
|
void setUserName(QString username) { setPref(STR_UI_UserName, username); }
|
|
|
|
void setAddress(QString address) { setPref(STR_UI_Address, address); }
|
|
|
|
void setPhone(QString phone) { setPref(STR_UI_Phone, phone); }
|
|
|
|
void setEmail(QString email) { setPref(STR_UI_EmailAddress, email); }
|
|
|
|
void setHeight(double height) { setPref(STR_UI_Height, height); }
|
|
|
|
void setCountry(QString country) { setPref(STR_UI_Country, country); }
|
|
|
|
void setGender(Gender g) { setPref(STR_UI_Gender, (int)g); }
|
|
|
|
void setTimeZone(QString tz) { setPref(STR_UI_TimeZone, tz); }
|
|
|
|
void setDaylightSaving(bool ds) { setPref(STR_UI_DST, ds); }
|
|
|
|
|
|
|
|
bool hasPassword() { return !getPref(STR_UI_Password).toString().isEmpty(); }
|
2011-12-21 11:09:50 +00:00
|
|
|
|
|
|
|
bool checkPassword(QString password) {
|
2014-04-17 05:58:57 +00:00
|
|
|
QByteArray ba = password.toUtf8();
|
2014-04-20 05:25:09 +00:00
|
|
|
QString hashedPass = QString(QCryptographicHash::hash(ba, QCryptographicHash::Sha1).toHex());
|
|
|
|
return getPref(STR_UI_Password).toString() == hashedPass;
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
2014-04-20 05:25:09 +00:00
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
void setPassword(QString password) {
|
2014-04-17 05:58:57 +00:00
|
|
|
QByteArray ba = password.toUtf8();
|
2014-04-20 05:25:09 +00:00
|
|
|
QString hashedPass = QString(QCryptographicHash::hash(ba, QCryptographicHash::Sha1).toHex());
|
|
|
|
setPref(STR_UI_Password, hashedPass);
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*! \class OxiSettings
|
|
|
|
\brief Profile Options relating to the Oximetry settings
|
|
|
|
*/
|
2014-04-20 05:25:09 +00:00
|
|
|
class OxiSettings : public ProfileSettings
|
2011-12-21 11:09:50 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Create OxiSettings object given Profile *p, and initialize the defaults
|
2014-04-20 05:25:09 +00:00
|
|
|
OxiSettings(Profile *profile)
|
|
|
|
: ProfileSettings(profile)
|
|
|
|
{
|
|
|
|
initPref(STR_OS_EnableOximetry, false);
|
2014-09-18 10:53:59 +00:00
|
|
|
initPref(STR_OS_DefaultDevice, QString());
|
2014-08-23 12:31:28 +00:00
|
|
|
initPref(STR_OS_SyncOximeterClock, true);
|
2014-09-18 10:53:59 +00:00
|
|
|
initPref(STR_OS_OximeterType, 0);
|
2014-04-20 05:25:09 +00:00
|
|
|
initPref(STR_OS_OxiDiscardThreshold, 0.0);
|
|
|
|
initPref(STR_OS_SPO2DropDuration, 8.0);
|
|
|
|
initPref(STR_OS_SPO2DropPercentage, 3.0);
|
|
|
|
initPref(STR_OS_PulseChangeDuration, 8.0);
|
|
|
|
initPref(STR_OS_PulseChangeBPM, 5.0);
|
2014-05-26 10:22:38 +00:00
|
|
|
initPref(STR_OS_SkipOxiIntroScreen, false);
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
bool oximetryEnabled() const { return getPref(STR_OS_EnableOximetry).toBool(); }
|
2014-09-18 10:53:59 +00:00
|
|
|
QString defaultDevice() const { return getPref(STR_OS_DefaultDevice).toString(); }
|
2014-08-23 12:31:28 +00:00
|
|
|
bool syncOximeterClock() const { return getPref(STR_OS_SyncOximeterClock).toBool(); }
|
2014-09-18 10:53:59 +00:00
|
|
|
int oximeterType() const { return getPref(STR_OS_OximeterType).toInt(); }
|
2014-04-20 05:25:09 +00:00
|
|
|
double oxiDiscardThreshold() const { return getPref(STR_OS_OxiDiscardThreshold).toDouble(); }
|
|
|
|
double spO2DropDuration() const { return getPref(STR_OS_SPO2DropDuration).toDouble(); }
|
|
|
|
double spO2DropPercentage() const { return getPref(STR_OS_SPO2DropPercentage).toDouble(); }
|
|
|
|
double pulseChangeDuration() const { return getPref(STR_OS_PulseChangeDuration).toDouble(); }
|
|
|
|
double pulseChangeBPM() const { return getPref(STR_OS_PulseChangeBPM).toDouble(); }
|
2014-05-26 10:22:38 +00:00
|
|
|
bool skipOxiIntroScreen() const { return getPref(STR_OS_SkipOxiIntroScreen).toBool(); }
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
|
|
|
|
void setOximetryEnabled(bool enabled) { setPref(STR_OS_EnableOximetry, enabled); }
|
2014-09-18 10:53:59 +00:00
|
|
|
void setDefaultDevice(QString name) { setPref(STR_OS_DefaultDevice, name); }
|
2014-08-23 12:31:28 +00:00
|
|
|
void setSyncOximeterClock(bool synced) { setPref(STR_OS_SyncOximeterClock, synced); }
|
2014-09-18 10:53:59 +00:00
|
|
|
void setOximeterType(int oxitype) { setPref(STR_OS_OximeterType, oxitype); }
|
2014-04-20 05:25:09 +00:00
|
|
|
void setOxiDiscardThreshold(double thresh) { setPref(STR_OS_OxiDiscardThreshold, thresh); }
|
|
|
|
void setSpO2DropDuration(double duration) { setPref(STR_OS_SPO2DropDuration, duration); }
|
|
|
|
void setPulseChangeBPM(double bpm) { setPref(STR_OS_PulseChangeBPM, bpm); }
|
2014-05-26 10:22:38 +00:00
|
|
|
void setSkipOxiIntroScreen(bool skip) { setPref(STR_OS_SkipOxiIntroScreen, skip); }
|
2014-04-20 05:25:09 +00:00
|
|
|
void setSpO2DropPercentage(double percentage) {
|
|
|
|
setPref(STR_OS_SPO2DropPercentage, percentage);
|
|
|
|
}
|
|
|
|
void setPulseChangeDuration(double duration) {
|
|
|
|
setPref(STR_OS_PulseChangeDuration, duration);
|
|
|
|
}
|
2011-12-21 11:09:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*! \class CPAPSettings
|
|
|
|
\brief Profile Options relating to the CPAP settings
|
|
|
|
*/
|
2014-04-20 05:25:09 +00:00
|
|
|
class CPAPSettings : public ProfileSettings
|
2011-12-21 11:09:50 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-04-20 05:25:09 +00:00
|
|
|
CPAPSettings(Profile *profile)
|
|
|
|
: ProfileSettings(profile)
|
|
|
|
{
|
|
|
|
initPref(STR_CS_ComplianceHours, 4);
|
|
|
|
initPref(STR_CS_ShowCompliance, true);
|
|
|
|
initPref(STR_CS_ShowLeaksMode, 0);
|
|
|
|
// TODO: jedimark: Check if this date is initiliazed yet
|
|
|
|
initPref(STR_CS_MaskStartDate, QDate());
|
|
|
|
initPref(STR_CS_MaskDescription, QString());
|
|
|
|
initPref(STR_CS_MaskType, Mask_Unknown);
|
|
|
|
initPref(STR_CS_PrescribedMode, MODE_UNKNOWN);
|
|
|
|
initPref(STR_CS_PrescribedMinPressure, 0.0);
|
|
|
|
initPref(STR_CS_PrescribedMaxPressure, 0.0);
|
|
|
|
initPref(STR_CS_UntreatedAHI, 0.0);
|
|
|
|
initPref(STR_CS_Notes, QString());
|
|
|
|
initPref(STR_CS_DateDiagnosed, QDate());
|
|
|
|
initPref(STR_CS_UserFlowRestriction, 20.0);
|
2014-07-20 05:24:49 +00:00
|
|
|
initPref(STR_CS_UserEventDuration, 8.0);
|
|
|
|
initPref(STR_CS_UserFlowRestriction2, 50.0);
|
|
|
|
initPref(STR_CS_UserEventDuration2, 8.0);
|
2014-04-20 05:25:09 +00:00
|
|
|
initPref(STR_CS_UserEventDuplicates, false);
|
|
|
|
initPref(STR_CS_UserEventFlagging, false);
|
|
|
|
initPref(STR_CS_AHIWindow, 60.0);
|
|
|
|
initPref(STR_CS_AHIReset, false);
|
2014-05-15 19:45:46 +00:00
|
|
|
initPref(STR_CS_LeakRedline, 24.0);
|
|
|
|
initPref(STR_CS_ShowLeakRedline, true);
|
2014-07-20 09:22:31 +00:00
|
|
|
initPref(STR_CS_UserEventPieChart, false);
|
2014-07-20 13:25:57 +00:00
|
|
|
initPref(STR_CS_ResyncFromUserFlagging, false);
|
2014-08-20 20:50:55 +00:00
|
|
|
initPref(STR_CS_AutoImport, false);
|
2014-09-01 11:39:38 +00:00
|
|
|
initPref(STR_CS_BrickWarning, true);
|
2014-04-20 05:25:09 +00:00
|
|
|
|
2016-03-04 21:27:33 +00:00
|
|
|
initPref(STR_CS_CalculateUnintentionalLeaks, true);
|
2016-03-03 04:48:08 +00:00
|
|
|
initPref(STR_CS_4cmH2OLeaks, 20.167);
|
|
|
|
initPref(STR_CS_20cmH2OLeaks, 48.333);
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
initPref(STR_CS_ClockDrift, (int)0);
|
|
|
|
m_clock_drift = getPref(STR_CS_ClockDrift).toInt();
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
|
|
|
|
2011-12-22 13:22:40 +00:00
|
|
|
//Getters
|
2014-04-20 05:25:09 +00:00
|
|
|
double complianceHours() const { return getPref(STR_CS_ComplianceHours).toDouble(); }
|
|
|
|
bool showComplianceInfo() const { return getPref(STR_CS_ShowCompliance).toBool(); }
|
|
|
|
int leakMode() const { return getPref(STR_CS_ShowLeaksMode).toInt(); }
|
|
|
|
QDate maskStartDate() const { return getPref(STR_CS_MaskStartDate).toDate(); }
|
|
|
|
QString maskDescription() const { return getPref(STR_CS_MaskDescription).toString(); }
|
|
|
|
MaskType maskType() const { return (MaskType)getPref(STR_CS_MaskType).toInt(); }
|
|
|
|
CPAPMode mode() const { return CPAPMode(getPref(STR_CS_PrescribedMode).toInt()); }
|
|
|
|
double minPressure() const { return getPref(STR_CS_PrescribedMinPressure).toDouble(); }
|
|
|
|
double maxPressure() const { return getPref(STR_CS_PrescribedMaxPressure).toDouble(); }
|
|
|
|
double untreatedAHI() const { return getPref(STR_CS_UntreatedAHI).toDouble(); }
|
|
|
|
const QString notes() const { return getPref(STR_CS_Notes).toString(); }
|
|
|
|
QDate dateDiagnosed() const { return getPref(STR_CS_DateDiagnosed).toDate(); }
|
|
|
|
double userFlowRestriction() const { return getPref(STR_CS_UserFlowRestriction).toDouble(); }
|
|
|
|
double userEventDuration() const { return getPref(STR_CS_UserEventDuration).toDouble(); }
|
2014-07-20 05:24:49 +00:00
|
|
|
double userFlowRestriction2() const { return getPref(STR_CS_UserFlowRestriction2).toDouble(); }
|
|
|
|
double userEventDuration2() const { return getPref(STR_CS_UserEventDuration2).toDouble(); }
|
2014-04-20 05:25:09 +00:00
|
|
|
bool userEventDuplicates() const { return getPref(STR_CS_UserEventDuplicates).toBool(); }
|
|
|
|
double AHIWindow() const { return getPref(STR_CS_AHIWindow).toDouble(); }
|
|
|
|
bool AHIReset() const { return getPref(STR_CS_AHIReset).toBool(); }
|
|
|
|
bool userEventFlagging() const { return getPref(STR_CS_UserEventFlagging).toBool(); }
|
|
|
|
int clockDrift() const { return m_clock_drift; }
|
2014-05-15 19:45:46 +00:00
|
|
|
EventDataType leakRedline() const { return getPref(STR_CS_LeakRedline).toFloat(); }
|
|
|
|
bool showLeakRedline() const { return getPref(STR_CS_ShowLeakRedline).toBool(); }
|
2014-07-20 09:22:31 +00:00
|
|
|
bool userEventPieChart() const { return getPref(STR_CS_UserEventPieChart).toBool(); }
|
2014-07-20 13:25:57 +00:00
|
|
|
bool resyncFromUserFlagging() const { return getPref(STR_CS_ResyncFromUserFlagging).toBool(); }
|
2014-08-20 20:50:55 +00:00
|
|
|
bool autoImport() const { return getPref(STR_CS_AutoImport).toBool(); }
|
2014-09-01 11:39:38 +00:00
|
|
|
bool brickWarning() const { return getPref(STR_CS_BrickWarning).toBool(); }
|
2011-12-21 11:09:50 +00:00
|
|
|
|
2016-03-04 21:27:33 +00:00
|
|
|
bool calculateUnintentionalLeaks() const { return getPref(STR_CS_CalculateUnintentionalLeaks).toBool(); }
|
2016-03-03 04:48:08 +00:00
|
|
|
double custom4cmH2OLeaks() const { return getPref(STR_CS_4cmH2OLeaks).toDouble(); }
|
|
|
|
double custom20cmH2OLeaks() const { return getPref(STR_CS_20cmH2OLeaks).toDouble(); }
|
|
|
|
|
2011-12-22 13:22:40 +00:00
|
|
|
//Setters
|
2014-04-20 05:25:09 +00:00
|
|
|
void setMode(CPAPMode mode) { setPref(STR_CS_PrescribedMode, (int)mode); }
|
|
|
|
void setMinPressure(double pressure) { setPref(STR_CS_PrescribedMinPressure, pressure); }
|
|
|
|
void setMaxPressure(double pressure) { setPref(STR_CS_PrescribedMaxPressure, pressure); }
|
|
|
|
void setUntreatedAHI(double ahi) { setPref(STR_CS_UntreatedAHI, ahi); }
|
|
|
|
void setNotes(QString notes) { setPref(STR_CS_Notes, notes); }
|
|
|
|
void setDateDiagnosed(QDate date) { setPref(STR_CS_DateDiagnosed, date); }
|
|
|
|
void setComplianceHours(double hours) { setPref(STR_CS_ComplianceHours, hours); }
|
|
|
|
void setShowComplianceInfo(bool b) { setPref(STR_CS_ShowCompliance, b); }
|
|
|
|
void setLeakMode(int leakmode) { setPref(STR_CS_ShowLeaksMode, (int)leakmode); }
|
|
|
|
void setMaskStartDate(QDate date) { setPref(STR_CS_MaskStartDate, date); }
|
|
|
|
void setMaskType(MaskType masktype) { setPref(STR_CS_MaskType, (int)masktype); }
|
|
|
|
void setUserFlowRestriction(double flow) { setPref(STR_CS_UserFlowRestriction, flow); }
|
|
|
|
void setUserEventDuration(double duration) { setPref(STR_CS_UserEventDuration, duration); }
|
2014-07-20 05:24:49 +00:00
|
|
|
void setUserFlowRestriction2(double flow) { setPref(STR_CS_UserFlowRestriction2, flow); }
|
|
|
|
void setUserEventDuration2(double duration) { setPref(STR_CS_UserEventDuration2, duration); }
|
2014-04-20 05:25:09 +00:00
|
|
|
void setAHIWindow(double window) { setPref(STR_CS_AHIWindow, window); }
|
|
|
|
void setAHIReset(bool reset) { setPref(STR_CS_AHIReset, reset); }
|
|
|
|
void setUserEventFlagging(bool flagging) { setPref(STR_CS_UserEventFlagging, flagging); }
|
|
|
|
void setUserEventDuplicates(bool dup) { setPref(STR_CS_UserEventDuplicates, dup); }
|
|
|
|
void setMaskDescription(QString description) {
|
|
|
|
setPref(STR_CS_MaskDescription, description);
|
|
|
|
}
|
|
|
|
void setClockDrift(int seconds) {
|
|
|
|
setPref(STR_CS_ClockDrift, m_clock_drift = (int)seconds);
|
|
|
|
}
|
2014-05-15 19:45:46 +00:00
|
|
|
void setLeakRedline(EventDataType value) { setPref(STR_CS_LeakRedline, value); }
|
|
|
|
void setShowLeakRedline(bool reset) { setPref(STR_CS_ShowLeakRedline, reset); }
|
2014-07-20 09:22:31 +00:00
|
|
|
void setUserEventPieChart(bool b) { setPref(STR_CS_UserEventPieChart, b); }
|
2014-07-20 13:25:57 +00:00
|
|
|
void setResyncFromUserFlagging(bool b) { setPref(STR_CS_ResyncFromUserFlagging, b); }
|
2014-08-20 20:50:55 +00:00
|
|
|
void setAutoImport(bool b) { setPref(STR_CS_AutoImport, b); }
|
2014-09-01 11:39:38 +00:00
|
|
|
void setBrickWarning(bool b) { setPref(STR_CS_BrickWarning, b); }
|
2013-10-13 10:13:14 +00:00
|
|
|
|
2016-03-04 21:27:33 +00:00
|
|
|
void setCalculateUnintentionalLeaks(bool b) { setPref(STR_CS_CalculateUnintentionalLeaks, b); }
|
2016-03-03 04:48:08 +00:00
|
|
|
void setCustom4cmH2OLeaks(double val) { setPref(STR_CS_4cmH2OLeaks, val); }
|
|
|
|
void setCustom20cmH2OLeaks(double val) { setPref(STR_CS_20cmH2OLeaks, val); }
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
public:
|
2013-10-13 10:13:14 +00:00
|
|
|
int m_clock_drift;
|
2011-12-21 11:09:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*! \class ImportSettings
|
|
|
|
\brief Profile Options relating to the Import process
|
|
|
|
*/
|
2014-04-20 05:25:09 +00:00
|
|
|
class SessionSettings : public ProfileSettings
|
2011-12-21 11:09:50 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-04-20 05:25:09 +00:00
|
|
|
SessionSettings(Profile *profile)
|
|
|
|
: ProfileSettings(profile)
|
|
|
|
{
|
|
|
|
initPref(STR_IS_DaySplitTime, QTime(12, 0, 0));
|
|
|
|
initPref(STR_IS_CacheSessions, false);
|
2014-09-13 11:34:18 +00:00
|
|
|
initPref(STR_IS_PreloadSummaries, false);
|
2014-04-20 05:25:09 +00:00
|
|
|
initPref(STR_IS_CombineCloseSessions, 240);
|
|
|
|
initPref(STR_IS_IgnoreShorterSessions, 5);
|
|
|
|
initPref(STR_IS_Multithreading, QThread::idealThreadCount() > 1);
|
|
|
|
initPref(STR_IS_BackupCardData, true);
|
|
|
|
initPref(STR_IS_CompressBackupData, false);
|
|
|
|
initPref(STR_IS_CompressSessionData, false);
|
2014-05-19 07:30:10 +00:00
|
|
|
initPref(STR_IS_IgnoreOlderSessions, false);
|
|
|
|
initPref(STR_IS_IgnoreOlderSessionsDate, QDateTime(QDate::currentDate().addYears(-1), daySplitTime()) );
|
2014-07-30 20:25:06 +00:00
|
|
|
initPref(STR_IS_LockSummarySessions, true);
|
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
QTime daySplitTime() const { return getPref(STR_IS_DaySplitTime).toTime(); }
|
|
|
|
bool cacheSessions() const { return getPref(STR_IS_CacheSessions).toBool(); }
|
2014-09-13 11:34:18 +00:00
|
|
|
bool preloadSummaries() const { return getPref(STR_IS_PreloadSummaries).toBool(); }
|
2014-04-20 05:25:09 +00:00
|
|
|
double combineCloseSessions() const { return getPref(STR_IS_CombineCloseSessions).toDouble(); }
|
|
|
|
double ignoreShortSessions() const { return getPref(STR_IS_IgnoreShorterSessions).toDouble(); }
|
|
|
|
bool multithreading() const { return getPref(STR_IS_Multithreading).toBool(); }
|
|
|
|
bool compressSessionData() const { return getPref(STR_IS_CompressSessionData).toBool(); }
|
|
|
|
bool compressBackupData() const { return getPref(STR_IS_CompressBackupData).toBool(); }
|
|
|
|
bool backupCardData() const { return getPref(STR_IS_BackupCardData).toBool(); }
|
2014-05-19 07:30:10 +00:00
|
|
|
bool ignoreOlderSessions() const { return getPref(STR_IS_IgnoreOlderSessions).toBool(); }
|
|
|
|
QDateTime ignoreOlderSessionsDate() const { return getPref(STR_IS_IgnoreOlderSessionsDate).toDateTime(); }
|
2014-07-30 20:25:06 +00:00
|
|
|
bool lockSummarySessions() const { return getPref(STR_IS_LockSummarySessions).toBool(); }
|
2014-04-20 05:25:09 +00:00
|
|
|
|
|
|
|
void setDaySplitTime(QTime time) { setPref(STR_IS_DaySplitTime, time); }
|
|
|
|
void setCacheSessions(bool c) { setPref(STR_IS_CacheSessions, c); }
|
2014-09-13 11:34:18 +00:00
|
|
|
void setPreloadSummaries(bool b) { setPref(STR_IS_PreloadSummaries, b); }
|
2014-04-20 05:25:09 +00:00
|
|
|
void setCombineCloseSessions(double val) { setPref(STR_IS_CombineCloseSessions, val); }
|
|
|
|
void setIgnoreShortSessions(double val) { setPref(STR_IS_IgnoreShorterSessions, val); }
|
|
|
|
void setMultithreading(bool enabled) { setPref(STR_IS_Multithreading, enabled); }
|
|
|
|
void setBackupCardData(bool enabled) { setPref(STR_IS_BackupCardData, enabled); }
|
|
|
|
void setCompressBackupData(bool enabled) { setPref(STR_IS_CompressBackupData, enabled); }
|
|
|
|
void setCompressSessionData(bool enabled) { setPref(STR_IS_CompressSessionData, enabled); }
|
2014-05-19 07:30:10 +00:00
|
|
|
void setIgnoreOlderSessions(bool enabled) { setPref(STR_IS_IgnoreOlderSessions, enabled); }
|
|
|
|
void setIgnoreOlderSessionsDate(QDate date) { setPref(STR_IS_IgnoreOlderSessionsDate, QDateTime(date, daySplitTime())); }
|
2014-07-30 20:25:06 +00:00
|
|
|
void setLockSummarySessions(bool b) { setPref(STR_IS_LockSummarySessions, b); }
|
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*! \class AppearanceSettings
|
|
|
|
\brief Profile Options relating to Visual Appearance
|
|
|
|
*/
|
2014-04-20 05:25:09 +00:00
|
|
|
class AppearanceSettings : public ProfileSettings
|
2011-12-21 11:09:50 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Create AppearanceSettings object given Profile *p, and initialize the defaults
|
2014-04-20 05:25:09 +00:00
|
|
|
AppearanceSettings(Profile *profile)
|
|
|
|
: ProfileSettings(profile)
|
|
|
|
{
|
|
|
|
initPref(STR_AS_GraphHeight, 180.0);
|
2014-10-02 11:22:30 +00:00
|
|
|
initPref(STR_AS_DailyPanelWidth, 350.0);
|
|
|
|
initPref(STR_AS_RightPanelWidth, 230.0);
|
2014-09-30 11:02:35 +00:00
|
|
|
initPref(STR_AS_AntiAliasing, true);
|
2014-04-20 05:25:09 +00:00
|
|
|
initPref(STR_AS_GraphSnapshots, true);
|
|
|
|
initPref(STR_AS_Animations, true);
|
|
|
|
initPref(STR_AS_SquareWave, false);
|
|
|
|
initPref(STR_AS_AllowYAxisScaling, true);
|
|
|
|
initPref(STR_AS_GraphTooltips, true);
|
2014-09-30 11:02:35 +00:00
|
|
|
initPref(STR_AS_UsePixmapCaching, false);
|
2014-04-20 05:25:09 +00:00
|
|
|
initPref(STR_AS_OverlayType, ODT_Bars);
|
|
|
|
initPref(STR_AS_OverviewLinechartMode, OLC_Bartop);
|
2014-05-10 02:53:50 +00:00
|
|
|
initPref(STR_AS_LineThickness, 1.0);
|
2014-09-30 11:02:35 +00:00
|
|
|
initPref(STR_AS_LineCursorMode, true);
|
2014-08-06 20:10:40 +00:00
|
|
|
initPref(STR_AS_CalendarVisible, true);
|
2014-08-23 12:31:28 +00:00
|
|
|
initPref(STR_AS_RightSidebarVisible, true);
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//! \brief Returns the normal (unscaled) height of a graph
|
2014-04-20 05:25:09 +00:00
|
|
|
int graphHeight() const { return getPref(STR_AS_GraphHeight).toInt(); }
|
2014-10-02 11:22:30 +00:00
|
|
|
//! \brief Returns the normal (unscaled) height of a graph
|
|
|
|
int dailyPanelWidth() const { return getPref(STR_AS_DailyPanelWidth).toInt(); }
|
|
|
|
//! \brief Returns the normal (unscaled) height of a graph
|
|
|
|
int rightPanelWidth() const { return getPref(STR_AS_RightPanelWidth).toInt(); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Returns true if AntiAliasing (the graphical smoothing method) is enabled
|
2014-04-20 05:25:09 +00:00
|
|
|
bool antiAliasing() const { return getPref(STR_AS_AntiAliasing).toBool(); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Returns true if renderPixmap function is in use, which takes snapshots of graphs
|
2014-04-20 05:25:09 +00:00
|
|
|
bool graphSnapshots() const { return getPref(STR_AS_GraphSnapshots).toBool(); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Returns true if Graphical animations & Transitions will be drawn
|
2014-04-20 05:25:09 +00:00
|
|
|
bool animations() const { return getPref(STR_AS_Animations).toBool(); }
|
2013-01-18 08:37:17 +00:00
|
|
|
//! \brief Returns true if PixmapCaching acceleration will be used
|
2014-04-20 05:25:09 +00:00
|
|
|
bool usePixmapCaching() const { return getPref(STR_AS_UsePixmapCaching).toBool(); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Returns true if Square Wave plots are preferred (where possible)
|
2014-04-20 05:25:09 +00:00
|
|
|
bool squareWavePlots() const { return getPref(STR_AS_SquareWave).toBool(); }
|
2013-10-26 13:59:37 +00:00
|
|
|
//! \brief Whether to allow double clicking on Y-Axis labels to change vertical scaling mode
|
2014-04-20 05:25:09 +00:00
|
|
|
bool allowYAxisScaling() const { return getPref(STR_AS_AllowYAxisScaling).toBool(); }
|
2013-10-26 13:59:37 +00:00
|
|
|
//! \brief Whether to show graph tooltips
|
2014-04-20 05:25:09 +00:00
|
|
|
bool graphTooltips() const { return getPref(STR_AS_GraphTooltips).toBool(); }
|
2014-05-10 02:53:50 +00:00
|
|
|
//! \brief Pen width of line plots
|
|
|
|
float lineThickness() const { return getPref(STR_AS_LineThickness).toFloat(); }
|
2014-07-21 08:33:04 +00:00
|
|
|
//! \brief Whether to show line cursor
|
|
|
|
bool lineCursorMode() const { return getPref(STR_AS_LineCursorMode).toBool(); }
|
2014-08-06 20:10:40 +00:00
|
|
|
//! \brief Whether to show the calendar
|
|
|
|
bool calendarVisible() const { return getPref(STR_AS_CalendarVisible).toBool(); }
|
2014-08-23 12:31:28 +00:00
|
|
|
//! \brief Whether to show the right sidebar
|
|
|
|
bool rightSidebarVisible() const { return getPref(STR_AS_RightSidebarVisible).toBool(); }
|
2014-05-10 02:53:50 +00:00
|
|
|
|
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Returns the type of overlay flags (which are displayed over the Flow Waveform)
|
2014-04-20 05:25:09 +00:00
|
|
|
OverlayDisplayType overlayType() const {
|
|
|
|
return (OverlayDisplayType)getPref(STR_AS_OverlayType).toInt();
|
|
|
|
}
|
2013-11-19 04:42:10 +00:00
|
|
|
//! \brief Returns the display type of Overview pages linechart
|
2014-04-20 05:25:09 +00:00
|
|
|
OverviewLinechartModes overviewLinechartMode() const {
|
|
|
|
return (OverviewLinechartModes)getPref(STR_AS_OverviewLinechartMode).toInt();
|
|
|
|
}
|
2011-12-21 11:09:50 +00:00
|
|
|
|
|
|
|
//! \brief Set the normal (unscaled) height of a graph.
|
2014-04-20 05:25:09 +00:00
|
|
|
void setGraphHeight(int height) { setPref(STR_AS_GraphHeight, height); }
|
2014-10-02 11:22:30 +00:00
|
|
|
//! \brief Set the normal (unscaled) height of a graph.
|
|
|
|
void setDailyPanelWidth(int width) { setPref(STR_AS_DailyPanelWidth, width); }
|
|
|
|
//! \brief Set the normal (unscaled) height of a graph.
|
|
|
|
void setRightPanelWidth(int width) { setPref(STR_AS_RightPanelWidth, width); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Set to true to turn on AntiAliasing (the graphical smoothing method)
|
2014-04-20 05:25:09 +00:00
|
|
|
void setAntiAliasing(bool aa) { setPref(STR_AS_AntiAliasing, aa); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Set to true if renderPixmap functions are in use, which takes snapshots of graphs.
|
2014-04-20 05:25:09 +00:00
|
|
|
void setGraphSnapshots(bool gs) { setPref(STR_AS_GraphSnapshots, gs); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Set to true if Graphical animations & Transitions will be drawn
|
2014-04-20 05:25:09 +00:00
|
|
|
void setAnimations(bool anim) { setPref(STR_AS_Animations, anim); }
|
2013-01-18 08:37:17 +00:00
|
|
|
//! \brief Set to true to use Pixmap Caching of Text and other graphics caching speedup techniques
|
2014-04-20 05:25:09 +00:00
|
|
|
void setUsePixmapCaching(bool b) { setPref(STR_AS_UsePixmapCaching, b); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Set whether or not to useSquare Wave plots (where possible)
|
2014-04-20 05:25:09 +00:00
|
|
|
void setSquareWavePlots(bool sw) { setPref(STR_AS_SquareWave, sw); }
|
2011-12-21 11:09:50 +00:00
|
|
|
//! \brief Sets the type of overlay flags (which are displayed over the Flow Waveform)
|
2014-04-20 05:25:09 +00:00
|
|
|
void setOverlayType(OverlayDisplayType od) { setPref(STR_AS_OverlayType, (int)od); }
|
2013-10-26 13:59:37 +00:00
|
|
|
//! \brief Sets whether to allow double clicking on Y-Axis labels to change vertical scaling mode
|
2014-04-20 05:25:09 +00:00
|
|
|
void setAllowYAxisScaling(bool b) { setPref(STR_AS_AllowYAxisScaling, b); }
|
2013-10-26 13:59:37 +00:00
|
|
|
//! \brief Sets whether to allow double clicking on Y-Axis labels to change vertical scaling mode
|
2014-04-20 05:25:09 +00:00
|
|
|
void setGraphTooltips(bool b) { setPref(STR_AS_GraphTooltips, b); }
|
|
|
|
//! \brief Sets the type of overlay flags (which are displayed over the Flow Waveform)
|
|
|
|
void setOverviewLinechartMode(OverviewLinechartModes od) {
|
|
|
|
setPref(STR_AS_OverviewLinechartMode, (int)od);
|
|
|
|
}
|
2014-05-10 02:53:50 +00:00
|
|
|
//! \brief Set the pen width of line plots.
|
|
|
|
void setLineThickness(float size) { setPref(STR_AS_LineThickness, size); }
|
2014-07-21 08:33:04 +00:00
|
|
|
//! \brief Sets whether to display Line Cursor
|
|
|
|
void setLineCursorMode(bool b) { setPref(STR_AS_LineCursorMode, b); }
|
2014-08-06 20:10:40 +00:00
|
|
|
//! \brief Sets whether to display the (Daily View) Calendar
|
|
|
|
void setCalendarVisible(bool b) { setPref(STR_AS_CalendarVisible, b); }
|
2014-08-23 12:31:28 +00:00
|
|
|
//! \brief Sets whether to display the right sidebar
|
|
|
|
void setRightSidebarVisible(bool b) { setPref(STR_AS_RightSidebarVisible, b); }
|
2011-12-21 11:09:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*! \class UserSettings
|
|
|
|
\brief Profile Options relating to General User Settings
|
|
|
|
*/
|
2014-04-20 05:25:09 +00:00
|
|
|
class UserSettings : public ProfileSettings
|
2011-12-21 11:09:50 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-04-20 05:25:09 +00:00
|
|
|
UserSettings(Profile *profile)
|
|
|
|
: ProfileSettings(profile)
|
|
|
|
{
|
|
|
|
initPref(STR_US_UnitSystem, US_Metric);
|
|
|
|
initPref(STR_US_EventWindowSize, 4.0);
|
|
|
|
initPref(STR_US_SkipEmptyDays, true);
|
|
|
|
initPref(STR_US_RebuildCache, false); // FIXME: jedimark: can't remember...
|
|
|
|
initPref(STR_US_ShowDebug, false);
|
2014-09-13 11:34:18 +00:00
|
|
|
initPref(STR_US_ShowPerformance, false);
|
2014-04-20 05:25:09 +00:00
|
|
|
initPref(STR_US_CalculateRDI, false);
|
|
|
|
initPref(STR_US_ShowSerialNumbers, false);
|
|
|
|
initPref(STR_US_PrefCalcMiddle, (int)0);
|
|
|
|
initPref(STR_US_PrefCalcPercentile, (double)95.0);
|
|
|
|
initPref(STR_US_PrefCalcMax, (int)0);
|
|
|
|
initPref(STR_US_TooltipTimeout, (int)2500);
|
|
|
|
initPref(STR_US_ScrollDampening, (int)50);
|
2014-05-06 11:54:41 +00:00
|
|
|
initPref(STR_US_StatReportMode, 0);
|
2014-08-07 20:27:23 +00:00
|
|
|
initPref(STR_US_ShowUnknownFlags, false);
|
2014-08-29 12:08:06 +00:00
|
|
|
initPref(STR_US_LastOverviewRange, 4);
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
UnitSystem unitSystem() const { return (UnitSystem)getPref(STR_US_UnitSystem).toInt(); }
|
|
|
|
double eventWindowSize() const { return getPref(STR_US_EventWindowSize).toDouble(); }
|
|
|
|
bool skipEmptyDays() const { return getPref(STR_US_SkipEmptyDays).toBool(); }
|
|
|
|
bool rebuildCache() const { return getPref(STR_US_RebuildCache).toBool(); }
|
|
|
|
bool showDebug() const { return getPref(STR_US_ShowDebug).toBool(); }
|
2014-09-13 11:34:18 +00:00
|
|
|
bool showPerformance() const { return getPref(STR_US_ShowPerformance).toBool(); }
|
2014-04-20 05:25:09 +00:00
|
|
|
bool calculateRDI() const { return getPref(STR_US_CalculateRDI).toBool(); }
|
|
|
|
bool showSerialNumbers() const { return getPref(STR_US_ShowSerialNumbers).toBool(); }
|
|
|
|
int prefCalcMiddle() const { return getPref(STR_US_PrefCalcMiddle).toInt(); }
|
|
|
|
double prefCalcPercentile() const { return getPref(STR_US_PrefCalcPercentile).toDouble(); }
|
|
|
|
int prefCalcMax() const { return getPref(STR_US_PrefCalcMax).toInt(); }
|
|
|
|
int tooltipTimeout() const { return getPref(STR_US_TooltipTimeout).toInt(); }
|
|
|
|
int scrollDampening() const { return getPref(STR_US_ScrollDampening).toInt(); }
|
2014-05-06 11:54:41 +00:00
|
|
|
int statReportMode() const { return getPref(STR_US_StatReportMode).toInt(); }
|
2014-08-07 20:27:23 +00:00
|
|
|
bool showUnknownFlags() const { return getPref(STR_US_ShowUnknownFlags).toBool(); }
|
2014-08-29 12:08:06 +00:00
|
|
|
int lastOverviewRange() const { return getPref(STR_US_LastOverviewRange).toInt(); }
|
2014-04-20 05:25:09 +00:00
|
|
|
|
|
|
|
void setUnitSystem(UnitSystem us) { setPref(STR_US_UnitSystem, (int)us); }
|
|
|
|
void setEventWindowSize(double size) { setPref(STR_US_EventWindowSize, size); }
|
|
|
|
void setSkipEmptyDays(bool skip) { setPref(STR_US_SkipEmptyDays, skip); }
|
|
|
|
void setRebuildCache(bool rebuild) { setPref(STR_US_RebuildCache, rebuild); }
|
|
|
|
void setShowDebug(bool b) { setPref(STR_US_ShowDebug, b); }
|
2014-09-13 11:34:18 +00:00
|
|
|
void setShowPerformance(bool b) { setPref(STR_US_ShowPerformance, b); }
|
2014-04-20 05:25:09 +00:00
|
|
|
void setCalculateRDI(bool rdi) { setPref(STR_US_CalculateRDI, rdi); }
|
|
|
|
void setShowSerialNumbers(bool enabled) { setPref(STR_US_ShowSerialNumbers, enabled); }
|
|
|
|
void setPrefCalcMiddle(int i) { setPref(STR_US_PrefCalcMiddle, i); }
|
|
|
|
void setPrefCalcPercentile(double p) { setPref(STR_US_PrefCalcPercentile, p); }
|
|
|
|
void setPrefCalcMax(int i) { setPref(STR_US_PrefCalcMax, i); }
|
|
|
|
void setTooltipTimeout(int i) { setPref(STR_US_TooltipTimeout, i); }
|
|
|
|
void setScrollDampening(int i) { setPref(STR_US_ScrollDampening, i); }
|
2014-05-06 11:54:41 +00:00
|
|
|
void setStatReportMode(int i) { setPref(STR_US_StatReportMode, i); }
|
2014-08-07 20:27:23 +00:00
|
|
|
void setShowUnknownFlags(bool b) { setPref(STR_US_ShowUnknownFlags, b); }
|
2014-08-29 12:08:06 +00:00
|
|
|
void setLastOverviewRange(int i) { setPref(STR_US_LastOverviewRange, i); }
|
2011-12-21 11:09:50 +00:00
|
|
|
};
|
|
|
|
|
2014-07-26 12:46:11 +00:00
|
|
|
//! \brief Returns a count of all files & directories in a supplied folder
|
|
|
|
int dirCount(QString path);
|
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
namespace Profiles {
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
extern QMap<QString, Profile *> profiles;
|
2011-06-26 08:30:44 +00:00
|
|
|
void Scan(); // Initialize and load Profile
|
|
|
|
void Done(); // Save all Profile objects and clear list
|
|
|
|
|
2011-10-01 12:54:20 +00:00
|
|
|
Profile *Create(QString name);
|
2011-06-26 08:30:44 +00:00
|
|
|
Profile *Get(QString name);
|
|
|
|
Profile *Get();
|
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-20 05:25:09 +00:00
|
|
|
#endif // PROFILES_H
|
2011-06-26 08:30:44 +00:00
|
|
|
|