mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
New privacy tool View/Show Personal Data shows and hides personal identification from statistics window and reports
This option applies to the application and not just the current profile.
This commit is contained in:
parent
7a85f9784c
commit
6e1727eb2c
@ -39,6 +39,7 @@ AppWideSetting::AppWideSetting(Preferences *pref) : PrefSettings(pref)
|
||||
initPref(STR_AS_RightSidebarVisible, false);
|
||||
initPref(STR_CS_UserEventPieChart, false);
|
||||
initPref(STR_US_ShowSerialNumbers, false);
|
||||
initPref(STR_US_ShowPersonalData, true);
|
||||
initPref(STR_US_OpenTabAtStart, 1);
|
||||
initPref(STR_US_OpenTabAfterImport, 0);
|
||||
initPref(STR_US_AutoLaunchImport, false);
|
||||
|
@ -52,6 +52,7 @@ const QString STR_US_OpenTabAfterImport = "OpenTabAfterImport";
|
||||
const QString STR_US_AutoLaunchImport = "AutoLaunchImport";
|
||||
const QString STR_US_RemoveCardReminder = "RemoveCardReminder";
|
||||
const QString STR_US_DontAskWhenSavingScreenshots = "DontAskWhenSavingScreenshots";
|
||||
const QString STR_US_ShowPersonalData = "ShowPersonalData";
|
||||
const QString STR_IS_CacheSessions = "MemoryHog";
|
||||
|
||||
const QString STR_GEN_AutoOpenLastUsed = "AutoOpenLastUsed";
|
||||
@ -141,6 +142,7 @@ public:
|
||||
bool dontAskWhenSavingScreenshots() const { return getPref(STR_US_DontAskWhenSavingScreenshots).toBool(); }
|
||||
bool autoOpenLastUsed() const { return getPref(STR_GEN_AutoOpenLastUsed).toBool(); }
|
||||
inline const QString & language() const { return m_language; }
|
||||
bool showPersonalData() const { return getPref(STR_US_ShowPersonalData).toBool(); }
|
||||
|
||||
void setProfileName(QString name) { setPref(STR_GEN_Profile, m_profileName=name); }
|
||||
void setAutoLaunchImport(bool b) { setPref(STR_US_AutoLaunchImport, b); }
|
||||
@ -191,6 +193,7 @@ public:
|
||||
void setOpenTabAfterImport(int idx) { setPref(STR_US_OpenTabAfterImport, idx); }
|
||||
void setRemoveCardReminder(bool b) { setPref(STR_US_RemoveCardReminder, b); }
|
||||
void setDontAskWhenSavingScreenshots(bool b) { setPref(STR_US_DontAskWhenSavingScreenshots, b); }
|
||||
void setShowPersonalData(bool b) { setPref(STR_US_ShowPersonalData, b); }
|
||||
|
||||
void setVersionString(QString version) { setPref(STR_PREF_VersionString, version); }
|
||||
#ifndef NO_UPDATER
|
||||
|
@ -226,6 +226,8 @@ void MainWindow::SetupGUI()
|
||||
ui->action_Sidebar_Toggle->setChecked(b);
|
||||
ui->toolBox->setVisible(b);
|
||||
|
||||
ui->actionShowPersonalData->setChecked(AppSetting->showPersonalData());
|
||||
|
||||
ui->actionPie_Chart->setChecked(AppSetting->showPieChart());
|
||||
|
||||
ui->actionDaily_Calendar->setChecked(AppSetting->calendarVisible());
|
||||
@ -2710,6 +2712,14 @@ void MainWindow::on_actionDaily_Calendar_toggled(bool visible)
|
||||
if (daily) daily->setCalendarVisible(visible);
|
||||
}
|
||||
|
||||
void MainWindow::on_actionShowPersonalData_toggled(bool visible)
|
||||
{
|
||||
AppSetting->setShowPersonalData(visible);
|
||||
if (ui->tabWidget->currentWidget() == ui->statisticsTab) {
|
||||
GenerateStatistics();
|
||||
}
|
||||
}
|
||||
|
||||
#include "SleepLib/journal.h"
|
||||
|
||||
void MainWindow::on_actionExport_Journal_triggered()
|
||||
|
@ -362,6 +362,8 @@ class MainWindow : public QMainWindow
|
||||
|
||||
void on_statisticsView_anchorClicked(const QUrl &url);
|
||||
|
||||
void on_actionShowPersonalData_toggled(bool visible);
|
||||
|
||||
|
||||
private:
|
||||
QString getMainWindowTitle();
|
||||
|
@ -2851,6 +2851,8 @@ p, li { white-space: pre-wrap; }
|
||||
<addaction name="actionLeft_Daily_Sidebar"/>
|
||||
<addaction name="actionDaily_Calendar"/>
|
||||
<addaction name="action_Sidebar_Toggle"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionShowPersonalData"/>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menu_Help">
|
||||
<property name="title">
|
||||
@ -3286,6 +3288,17 @@ p, li { white-space: pre-wrap; }
|
||||
<string>Advanced graph order, good for ASV, AVAPS</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionShowPersonalData">
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Personal Data</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
|
@ -141,7 +141,7 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
|
||||
|
||||
int maxy = 0;
|
||||
|
||||
if (!p_profile->user->firstName().isEmpty()) {
|
||||
if (AppSetting->showPersonalData() && !p_profile->user->firstName().isEmpty()) {
|
||||
QString userinfo = STR_TR_Name + QString(":\t %1, %2\n").
|
||||
arg(p_profile->user->lastName()).
|
||||
arg(p_profile->user->firstName());
|
||||
|
@ -620,6 +620,10 @@ Statistics::Statistics(QObject *parent) :
|
||||
|
||||
// Get the user information block for displaying at top of page
|
||||
QString Statistics::getUserInfo () {
|
||||
bool test = AppSetting->showPersonalData();
|
||||
if (!test)
|
||||
return "";
|
||||
|
||||
QString address = p_profile->user->address();
|
||||
address.replace("\n", "<br/>");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user