forked from organicmaps/organicmaps
[old map downloader] Download all country simple implementation.
This commit is contained in:
parent
7362a04e8d
commit
46a3f975f7
2 changed files with 8 additions and 0 deletions
|
@ -191,6 +191,13 @@ void CountryTree::RetryDownloading(int childPosition)
|
|||
GetActiveMapLayout().RetryDownloading(GetChild(childPosition));
|
||||
}
|
||||
|
||||
void CountryTree::DownloadAllCountry(MapOptions const & options)
|
||||
{
|
||||
size_t const childCount = GetChildCount();
|
||||
for (size_t i = 0; i < childCount; ++i)
|
||||
DownloadCountry(i, options);
|
||||
}
|
||||
|
||||
void CountryTree::CancelDownloading(int childPosition)
|
||||
{
|
||||
GetStorage().DeleteFromDownloader(GetChild(childPosition));
|
||||
|
|
|
@ -67,6 +67,7 @@ public:
|
|||
void DownloadCountry(int childPosition, MapOptions const & options);
|
||||
void DeleteCountry(int childPosition, MapOptions const & options);
|
||||
void RetryDownloading(int childPosition);
|
||||
void DownloadAllCountry(MapOptions const & options);
|
||||
///@}
|
||||
void CancelDownloading(int childPosition);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue