Added hiding route marks titles in following mode

This commit is contained in:
r.kuznetsov 2017-07-27 12:15:18 +03:00 committed by Daria Volvenkova
parent f09574b397
commit 00fcd4526f
4 changed files with 41 additions and 0 deletions

View file

@ -280,6 +280,9 @@ void RoutingManager::RemoveRoute(bool deactivateFollowing)
if (m_drapeEngine == nullptr)
return;
if (deactivateFollowing)
SetPointsFollowingMode(false /* enabled */);
std::lock_guard<std::mutex> lock(m_drapeSubroutesMutex);
if (deactivateFollowing)
{
@ -373,6 +376,7 @@ void RoutingManager::FollowRoute()
m_delegate.OnRouteFollow(m_currentRouterType);
HideRoutePoint(RouteMarkType::Start);
SetPointsFollowingMode(true /* enabled */);
}
void RoutingManager::CloseRouting(bool removeRoutePoints)
@ -486,6 +490,14 @@ void RoutingManager::MoveRoutePoint(RouteMarkType currentType, int8_t currentInt
routePoints.NotifyChanges();
}
void RoutingManager::SetPointsFollowingMode(bool enabled)
{
ASSERT(m_bmManager != nullptr, ());
RoutePointsLayout routePoints(m_bmManager->GetUserMarksController(UserMarkType::ROUTING_MARK));
routePoints.SetFollowingMode(enabled);
routePoints.NotifyChanges();
}
void RoutingManager::GenerateTurnNotifications(std::vector<std::string> & turnNotifications)
{
if (m_currentRouterType == routing::RouterType::Taxi)

View file

@ -229,6 +229,8 @@ private:
location::RouteMatchingInfo GetRouteMatchingInfo(location::GpsInfo & info);
uint32_t GenerateRoutePointsTransactionId() const;
void SetPointsFollowingMode(bool enabled);
RouteBuildingCallback m_routingCallback = nullptr;
Callbacks m_callbacks;
ref_ptr<df::DrapeEngine> m_drapeEngine = nullptr;

View file

@ -80,9 +80,21 @@ void RouteMarkPoint::SetMarkData(RouteMarkData && data)
drape_ptr<dp::TitleDecl> RouteMarkPoint::GetTitleDecl() const
{
if (m_followingMode)
return nullptr;
return make_unique_dp<dp::TitleDecl>(m_titleDecl);
}
void RouteMarkPoint::SetFollowingMode(bool enabled)
{
if (m_followingMode == enabled)
return;
SetDirty();
m_followingMode = enabled;
}
std::string RouteMarkPoint::GetSymbolName() const
{
switch (m_markData.m_pointType)
@ -254,6 +266,17 @@ void RoutePointsLayout::PassRoutePoint(RouteMarkType type, int8_t intermediateIn
point->SetIsVisible(false);
}
void RoutePointsLayout::SetFollowingMode(bool enabled)
{
for (size_t i = 0, sz = m_routeMarks.GetUserMarkCount(); i < sz; ++i)
{
auto userMark = m_routeMarks.GetUserMarkForEdit(i);
ASSERT(dynamic_cast<RouteMarkPoint *>(userMark) != nullptr, ());
RouteMarkPoint * mark = static_cast<RouteMarkPoint *>(userMark);
mark->SetFollowingMode(enabled);
}
}
RouteMarkPoint * RoutePointsLayout::GetRoutePoint(RouteMarkType type, int8_t intermediateIndex)
{
for (size_t i = 0, sz = m_routeMarks.GetUserMarkCount(); i < sz; ++i)

View file

@ -58,9 +58,12 @@ public:
bool HasSymbolPriority() const override { return false; }
bool HasTitlePriority() const override { return true; }
void SetFollowingMode(bool enabled);
private:
RouteMarkData m_markData;
dp::TitleDecl m_titleDecl;
bool m_followingMode = false;
};
class RouteUserMarkContainer : public UserMarkContainer
@ -87,6 +90,7 @@ public:
bool MoveRoutePoint(RouteMarkType currentType, int8_t currentIntermediateIndex,
RouteMarkType destType, int8_t destIntermediateIndex);
void PassRoutePoint(RouteMarkType type, int8_t intermediateIndex = 0);
void SetFollowingMode(bool enabled);
void NotifyChanges();
private: