Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorExMix <rahuba.youri@mapswithme.com>2014-10-06 19:54:09 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:29:28 +0300
commit708210ddb49fdd29aea6a5c67e569b1370daedf1 (patch)
tree26a9607de9218a64f60a1c2ca0b6c150e1e9b39b /map/country_tree.cpp
parent79d094372c43b1f9171757ad0936e82dabc928b0 (diff)
[core] new methods for downloader interfaces
Diffstat (limited to 'map/country_tree.cpp')
-rw-r--r--map/country_tree.cpp42
1 files changed, 41 insertions, 1 deletions
diff --git a/map/country_tree.cpp b/map/country_tree.cpp
index b0e97e6783..31ec7e11f1 100644
--- a/map/country_tree.cpp
+++ b/map/country_tree.cpp
@@ -58,6 +58,12 @@ ActiveMapsLayout & CountryTree::GetActiveMapLayout()
return m_layout;
}
+ActiveMapsLayout const & CountryTree::GetActiveMapLayout() const
+{
+ m_layout.Init();
+ return m_layout;
+}
+
void CountryTree::SetDefaultRoot()
{
SetRoot(TIndex());
@@ -119,6 +125,33 @@ TMapOptions CountryTree::GetLeafOptions(int position) const
return options;
}
+bool CountryTree::GetLeafGuideInfo(int position, guides::GuideInfo & info) const
+{
+ ASSERT(IsLeaf(position), ());
+ return GetActiveMapLayout().GetGuideInfo(GetChild(position), info);
+}
+
+LocalAndRemoteSizeT const CountryTree::GetLeafSize(int position) const
+{
+ //TODO for UVR
+ return LocalAndRemoteSizeT(0, 0);
+}
+
+bool CountryTree::IsCountryRoot() const
+{
+ TIndex index = GetCurrentRoot();
+ ASSERT(index.m_region == TIndex::INVALID, ());
+ if (index.m_country != TIndex::INVALID)
+ return true;
+
+ return false;
+}
+
+string const & CountryTree::GetRootName() const
+{
+ return GetStorage().CountryName(GetCurrentRoot());
+}
+
void CountryTree::DownloadCountry(int childPosition, TMapOptions const & options)
{
ASSERT(IsLeaf(childPosition), ());
@@ -146,6 +179,12 @@ void CountryTree::ResetListener()
m_listener = nullptr;
}
+void CountryTree::ShowLeafOnMap(int position)
+{
+ ASSERT(IsLeaf(position), ());
+ GetActiveMapLayout().ShowMap(GetChild(position));
+}
+
Storage const & CountryTree::GetStorage() const
{
return m_layout.GetStorage();
@@ -162,10 +201,11 @@ TIndex const & CountryTree::GetCurrentRoot() const
return m_levelItems[RootItemIndex];
}
-void CountryTree::SetRoot(TIndex const & index)
+void CountryTree::SetRoot(TIndex const & newIndex)
{
ResetRoot();
+ TIndex index(newIndex);
size_t const count = GetStorage().CountriesCount(index);
m_levelItems.reserve(ChildItemsOffset + count);
m_levelItems.push_back(index);