forked from organicmaps/organicmaps
Time that user spends in application. If time is empty we try to get time from other settings.
This commit is contained in:
parent
67c6edcc62
commit
d28e73b0ad
1 changed files with 11 additions and 4 deletions
|
@ -20,6 +20,15 @@ char const * g_arrSettingsName[] =
|
|||
int g_arrMinForegroundTime[] = { 30 * 60, 60 * 60, 50 * 60};
|
||||
//@}
|
||||
|
||||
string const g_timeInApp = "AllForegroundTime";
|
||||
|
||||
void AddTimeToSetting(string const & settingName, double elapsed)
|
||||
{
|
||||
double val = 0;
|
||||
(void)Settings::Get(settingName, val);
|
||||
Settings::Set(settingName, val + elapsed);
|
||||
}
|
||||
|
||||
|
||||
bool ShouldShow(DialogT dlg)
|
||||
{
|
||||
|
@ -58,11 +67,9 @@ void EnterBackground(double elapsed)
|
|||
for (int i = 0; i < DlgCount; ++i)
|
||||
{
|
||||
string const name = string(g_arrSettingsName[i]) + "ForegroundTime";
|
||||
|
||||
double val = 0;
|
||||
(void)Settings::Get(name, val);
|
||||
Settings::Set(name, val + elapsed);
|
||||
AddTimeToSetting(name, elapsed);
|
||||
}
|
||||
AddTimeToSetting(g_timeInApp, elapsed);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue