[core] special method for get OutOfDate country count

This commit is contained in:
ExMix 2014-10-21 17:29:17 +03:00 committed by Alex Zolotarev
parent f84fb4669a
commit 420bf78c93
2 changed files with 16 additions and 0 deletions

View file

@ -133,6 +133,19 @@ void ActiveMapsLayout::CancelAll()
st.DeleteFromDownloader(index);
}
int ActiveMapsLayout::GetOutOfDateCount() const
{
int result = 0;
for (size_t i = m_split.first; i < m_split.second; ++i)
{
Item const & item = m_items[i];
if (item.m_status != TStatus::ENotDownloaded)
++result;
}
return result;
}
int ActiveMapsLayout::GetCountInGroup(TGroup const & group) const
{
int result = 0;
@ -423,6 +436,7 @@ void ActiveMapsLayout::StatusChangedCallback(TIndex const & index)
{
// "Actual of not map been deleted"
// We not notify about options changed!
NotifyStatusChanged(group, position, oldStatus, item.m_status);
DeleteFromGroup(group, position);
NotifyDeletion(group, position);
}

View file

@ -47,6 +47,8 @@ public:
void UpdateAll();
void CancelAll();
int GetOutOfDateCount() const;
int GetCountInGroup(TGroup const & group) const;
bool IsEmpty() const;
string const & GetCountryName(TGroup const & group, int position) const;