Time that user spends in application. If time is empty we try to get time from other settings.

This commit is contained in:
Kirill Zhdanovich 2013-04-28 00:35:18 +03:00 committed by Alex Zolotarev
parent 67c6edcc62
commit d28e73b0ad

View file

@ -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);
}
}