forked from organicmaps/organicmaps
[core] special method for get OutOfDate country count
This commit is contained in:
parent
f84fb4669a
commit
420bf78c93
2 changed files with 16 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue