forked from organicmaps/organicmaps
Desktop fixes.
This commit is contained in:
parent
b4b7851da3
commit
22246364a0
14 changed files with 129 additions and 112 deletions
|
@ -200,10 +200,10 @@ void DrapeEngine::SetModelViewAnyRect(m2::AnyRectD const & rect, bool isAnim)
|
|||
PostUserEvent(make_unique_dp<SetAnyRectEvent>(rect, isAnim));
|
||||
}
|
||||
|
||||
void DrapeEngine::ClearUserMarksGroup(size_t layerId)
|
||||
void DrapeEngine::ClearUserMarksGroup(MarkGroupID groupId)
|
||||
{
|
||||
m_threadCommutator->PostMessage(ThreadsCommutator::ResourceUploadThread,
|
||||
make_unique_dp<ClearUserMarkGroupMessage>(layerId),
|
||||
make_unique_dp<ClearUserMarkGroupMessage>(groupId),
|
||||
MessagePriority::Normal);
|
||||
}
|
||||
|
||||
|
@ -221,9 +221,9 @@ void DrapeEngine::InvalidateUserMarks()
|
|||
MessagePriority::Normal);
|
||||
}
|
||||
|
||||
void DrapeEngine::UpdateUserMarks(UserMarksProvider * provider)
|
||||
void DrapeEngine::UpdateUserMarks(UserMarksProvider * provider, bool firstTime)
|
||||
{
|
||||
auto const & dirtyGroupIds = provider->GetDirtyGroupIds();
|
||||
auto const dirtyGroupIds = firstTime ? provider->GetAllGroupIds() : provider->GetDirtyGroupIds();
|
||||
if (dirtyGroupIds.empty())
|
||||
return;
|
||||
|
||||
|
@ -232,49 +232,52 @@ void DrapeEngine::UpdateUserMarks(UserMarksProvider * provider)
|
|||
auto createdIdCollection = make_unique_dp<IDCollections>();
|
||||
auto removedIdCollection = make_unique_dp<IDCollections>();
|
||||
|
||||
df::MarkGroupID lastGroupId = *dirtyGroupIds.begin();
|
||||
bool visibilityChanged = provider->IsGroupVisibilityChanged(lastGroupId);
|
||||
bool groupIsVisible = provider->IsGroupVisible(lastGroupId);
|
||||
|
||||
auto const HandleMark = [&](
|
||||
df::MarkID markId,
|
||||
UserMarksRenderCollection & renderCollection,
|
||||
MarkIDCollection * idCollection)
|
||||
if (!firstTime)
|
||||
{
|
||||
auto const * mark = provider->GetUserPointMark(markId);
|
||||
if (!mark->IsDirty())
|
||||
return;
|
||||
auto const groupId = mark->GetGroupId();
|
||||
if (groupId != lastGroupId)
|
||||
df::MarkGroupID lastGroupId = *dirtyGroupIds.begin();
|
||||
bool visibilityChanged = provider->IsGroupVisibilityChanged(lastGroupId);
|
||||
bool groupIsVisible = provider->IsGroupVisible(lastGroupId);
|
||||
|
||||
auto const handleMark = [&](
|
||||
df::MarkID markId,
|
||||
UserMarksRenderCollection & renderCollection,
|
||||
MarkIDCollection *idCollection)
|
||||
{
|
||||
lastGroupId = groupId;
|
||||
visibilityChanged = provider->IsGroupVisibilityChanged(groupId);
|
||||
groupIsVisible = provider->IsGroupVisible(groupId);
|
||||
}
|
||||
if (!visibilityChanged && groupIsVisible)
|
||||
{
|
||||
if (idCollection)
|
||||
idCollection->push_back(markId);
|
||||
renderCollection.emplace(markId, GenerateMarkRenderInfo(mark));
|
||||
}
|
||||
};
|
||||
auto const *mark = provider->GetUserPointMark(markId);
|
||||
if (!mark->IsDirty())
|
||||
return;
|
||||
auto const groupId = mark->GetGroupId();
|
||||
if (groupId != lastGroupId)
|
||||
{
|
||||
lastGroupId = groupId;
|
||||
visibilityChanged = provider->IsGroupVisibilityChanged(groupId);
|
||||
groupIsVisible = provider->IsGroupVisible(groupId);
|
||||
}
|
||||
if (!visibilityChanged && groupIsVisible)
|
||||
{
|
||||
if (idCollection)
|
||||
idCollection->push_back(markId);
|
||||
renderCollection.emplace(markId, GenerateMarkRenderInfo(mark));
|
||||
}
|
||||
};
|
||||
|
||||
for (auto markId : provider->GetCreatedMarkIds())
|
||||
HandleMark(markId, *marksRenderCollection, &createdIdCollection->m_marksID);
|
||||
for (auto markId : provider->GetCreatedMarkIds())
|
||||
handleMark(markId, *marksRenderCollection, &createdIdCollection->m_marksID);
|
||||
|
||||
for (auto markId : provider->GetUpdatedMarkIds())
|
||||
HandleMark(markId, *marksRenderCollection, nullptr);
|
||||
for (auto markId : provider->GetUpdatedMarkIds())
|
||||
handleMark(markId, *marksRenderCollection, nullptr);
|
||||
|
||||
auto const & removedMarkIds = provider->GetRemovedMarkIds();
|
||||
removedIdCollection->m_marksID.reserve(removedMarkIds.size());
|
||||
removedIdCollection->m_marksID.assign(removedMarkIds.begin(), removedMarkIds.end());
|
||||
auto const & removedMarkIds = provider->GetRemovedMarkIds();
|
||||
removedIdCollection->m_marksID.reserve(removedMarkIds.size());
|
||||
removedIdCollection->m_marksID.assign(removedMarkIds.begin(), removedMarkIds.end());
|
||||
}
|
||||
|
||||
std::map<df::MarkGroupID, drape_ptr<IDCollections>> dirtyMarkIds;
|
||||
for (auto groupId : dirtyGroupIds)
|
||||
{
|
||||
auto & idCollection = *(dirtyMarkIds.emplace(groupId, make_unique_dp<IDCollections>()).first->second);
|
||||
visibilityChanged = provider->IsGroupVisibilityChanged(groupId);
|
||||
groupIsVisible = provider->IsGroupVisible(groupId);
|
||||
bool const visibilityChanged = provider->IsGroupVisibilityChanged(groupId);
|
||||
bool const groupIsVisible = provider->IsGroupVisible(groupId);
|
||||
if (!groupIsVisible && !visibilityChanged)
|
||||
continue;
|
||||
|
||||
|
@ -293,14 +296,16 @@ void DrapeEngine::UpdateUserMarks(UserMarksProvider * provider)
|
|||
if (visibilityChanged || line->IsDirty())
|
||||
linesRenderCollection->emplace(lineId, GenerateLineRenderInfo(line));
|
||||
}
|
||||
if (visibilityChanged)
|
||||
if (visibilityChanged || firstTime)
|
||||
{
|
||||
for (auto markId : markIds)
|
||||
{
|
||||
marksRenderCollection->emplace(
|
||||
markId, GenerateMarkRenderInfo(provider->GetUserPointMark(markId)));
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
else if (!firstTime)
|
||||
{
|
||||
auto & points = removedIdCollection->m_marksID;
|
||||
points.reserve(points.size() + markIds.size());
|
||||
|
@ -311,8 +316,8 @@ void DrapeEngine::UpdateUserMarks(UserMarksProvider * provider)
|
|||
}
|
||||
}
|
||||
|
||||
if (!marksRenderCollection->empty() || !linesRenderCollection->empty()
|
||||
|| !removedIdCollection->IsEmpty() || !createdIdCollection->IsEmpty())
|
||||
if (!marksRenderCollection->empty() || !linesRenderCollection->empty() ||
|
||||
!removedIdCollection->IsEmpty() || !createdIdCollection->IsEmpty())
|
||||
{
|
||||
m_threadCommutator->PostMessage(ThreadsCommutator::ResourceUploadThread,
|
||||
make_unique_dp<UpdateUserMarksMessage>(
|
||||
|
|
|
@ -131,9 +131,9 @@ public:
|
|||
using TModelViewListenerFn = FrontendRenderer::TModelViewChanged;
|
||||
void SetModelViewListener(TModelViewListenerFn && fn);
|
||||
|
||||
void ClearUserMarksGroup(size_t layerId);
|
||||
void ClearUserMarksGroup(MarkGroupID groupId);
|
||||
void ChangeVisibilityUserMarksGroup(MarkGroupID groupId, bool isVisible);
|
||||
void UpdateUserMarks(UserMarksProvider * provider);
|
||||
void UpdateUserMarks(UserMarksProvider * provider, bool firstTime);
|
||||
void InvalidateUserMarks();
|
||||
|
||||
void SetRenderingEnabled(ref_ptr<dp::OGLContextFactory> contextFactory = nullptr);
|
||||
|
|
|
@ -101,7 +101,7 @@ void UserMarkGenerator::UpdateIndex(MarkGroupID groupId)
|
|||
for (int zoomLevel = params.m_minZoom; zoomLevel <= scales::GetUpperScale(); ++zoomLevel)
|
||||
{
|
||||
TileKey const tileKey = GetTileKeyByPoint(params.m_pivot, zoomLevel);
|
||||
ref_ptr<IDCollections> groupIDs = GetIdCollection(tileKey, groupId);
|
||||
auto groupIDs = GetIdCollection(tileKey, groupId);
|
||||
groupIDs->m_marksID.push_back(static_cast<uint32_t>(markId));
|
||||
}
|
||||
}
|
||||
|
@ -125,7 +125,7 @@ void UserMarkGenerator::UpdateIndex(MarkGroupID groupId)
|
|||
CalcTilesCoverage(segmentRect, zoomLevel, [&](int tileX, int tileY)
|
||||
{
|
||||
TileKey const tileKey(tileX, tileY, zoomLevel);
|
||||
ref_ptr<IDCollections> groupIDs = GetIdCollection(tileKey, groupId);
|
||||
auto groupIDs = GetIdCollection(tileKey, groupId);
|
||||
groupIDs->m_linesID.push_back(static_cast<uint32_t>(lineId));
|
||||
});
|
||||
return true;
|
||||
|
|
|
@ -12,6 +12,6 @@ using MarkIDCollection = std::vector<MarkID>;
|
|||
using LineIDCollection = std::vector<LineID>;
|
||||
using MarkIDSet = std::set<MarkID>;
|
||||
using LineIDSet = std::set<LineID>;
|
||||
using GroupIDList = std::vector<MarkGroupID>;
|
||||
using GroupIDCollection = std::vector<MarkGroupID>;
|
||||
using GroupIDSet = std::set<MarkGroupID>;
|
||||
} // namespace df
|
||||
|
|
|
@ -102,6 +102,7 @@ class UserMarksProvider
|
|||
public:
|
||||
virtual ~UserMarksProvider() {}
|
||||
virtual GroupIDSet const & GetDirtyGroupIds() const = 0;
|
||||
virtual GroupIDSet GetAllGroupIds() const = 0;
|
||||
virtual bool IsGroupVisible(MarkGroupID groupID) const = 0;
|
||||
virtual bool IsGroupVisibilityChanged(MarkGroupID groupID) const = 0;
|
||||
virtual MarkIDSet const & GetGroupPointIds(MarkGroupID groupID) const = 0;
|
||||
|
@ -111,7 +112,7 @@ public:
|
|||
virtual MarkIDSet const & GetUpdatedMarkIds() const = 0;
|
||||
/// Never store UserPointMark reference.
|
||||
virtual UserPointMark const * GetUserPointMark(MarkID markID) const = 0;
|
||||
/// Never store UserLineMark reference.
|
||||
/// Never store UserLineMark reference.
|
||||
virtual UserLineMark const * GetUserLineMark(LineID lineID) const = 0;
|
||||
};
|
||||
|
||||
|
|
|
@ -158,16 +158,16 @@ extern NSString * const kBookmarkCategoryDeletedNotification =
|
|||
cell.imageView.tag = indexPath.row;
|
||||
|
||||
auto & bmManager = GetFramework().GetBookmarkManager();
|
||||
size_t const categoryIndex = bmManager.GetBmGroupsIdList()[indexPath.row];
|
||||
if (bmManager.HasBmCategory(categoryIndex))
|
||||
auto const categoryId = bmManager.GetBmGroupsIdList()[indexPath.row];
|
||||
if (bmManager.HasBmCategory(categoryId))
|
||||
{
|
||||
NSString * title = @(bmManager.GetCategoryName(categoryIndex).c_str());
|
||||
NSString * title = @(bmManager.GetCategoryName(categoryId).c_str());
|
||||
cell.textLabel.text = [self truncateString:title toWidth:(self.tableView.width - 122) withFont:cell.textLabel.font];
|
||||
BOOL const isVisible = bmManager.IsVisible(categoryIndex);
|
||||
BOOL const isVisible = bmManager.IsVisible(categoryId);
|
||||
cell.imageView.image = [UIImage imageNamed:(isVisible ? @"ic_show" : @"ic_hide")];
|
||||
cell.imageView.mwm_coloring = isVisible ? MWMImageColoringBlue : MWMImageColoringBlack;
|
||||
cell.detailTextLabel.text = [NSString stringWithFormat:@"%ld",
|
||||
bmManager.GetUserMarkIds(categoryIndex).size() + bmManager.GetTrackIds(categoryIndex).size()];
|
||||
bmManager.GetUserMarkIds(categoryId).size() + bmManager.GetTrackIds(categoryId).size()];
|
||||
}
|
||||
cell.backgroundColor = [UIColor white];
|
||||
cell.textLabel.textColor = [UIColor blackPrimaryText];
|
||||
|
|
|
@ -144,7 +144,7 @@ void Bookmark::Detach()
|
|||
BookmarkCategory::BookmarkCategory(std::string const & name,
|
||||
df::MarkGroupID groupID)
|
||||
: Base(UserMark::Type::BOOKMARK)
|
||||
, m_groupID(groupID)
|
||||
, m_groupId(groupID)
|
||||
, m_name(name)
|
||||
{}
|
||||
|
||||
|
@ -230,7 +230,7 @@ class KMLParser
|
|||
{
|
||||
m_name.clear();
|
||||
m_description.clear();
|
||||
m_org = m2::PointD(-1000, -1000);
|
||||
m_org = m2::PointD(0.0, 0.0);
|
||||
m_type.clear();
|
||||
m_scale = -1.0;
|
||||
m_timeStamp = my::INVALID_TIME_STAMP;
|
||||
|
@ -247,7 +247,6 @@ class KMLParser
|
|||
bool ParsePoint(std::string const & s, char const * delim, m2::PointD & pt)
|
||||
{
|
||||
// order in string is: lon, lat, z
|
||||
|
||||
strings::SimpleTokenizer iter(s, delim);
|
||||
if (iter)
|
||||
{
|
||||
|
@ -281,16 +280,16 @@ class KMLParser
|
|||
{
|
||||
m_geometryType = GEOMETRY_TYPE_LINE;
|
||||
|
||||
strings::SimpleTokenizer cortegeIter(s, blockSeparator);
|
||||
while (cortegeIter)
|
||||
strings::SimpleTokenizer tupleIter(s, blockSeparator);
|
||||
while (tupleIter)
|
||||
{
|
||||
m2::PointD pt;
|
||||
if (ParsePoint(*cortegeIter, coordSeparator, pt))
|
||||
if (ParsePoint(*tupleIter, coordSeparator, pt))
|
||||
{
|
||||
if (m_points.GetSize() == 0 || !(pt - m_points.Back()).IsAlmostZero())
|
||||
m_points.Add(pt);
|
||||
}
|
||||
++cortegeIter;
|
||||
++tupleIter;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -345,7 +344,7 @@ class KMLParser
|
|||
|
||||
public:
|
||||
KMLParser(KMLData & data)
|
||||
: m_data(data)
|
||||
: m_data(data)
|
||||
{
|
||||
Reset();
|
||||
}
|
||||
|
@ -438,7 +437,7 @@ public:
|
|||
if (currTag == "name")
|
||||
m_data.m_name = value;
|
||||
else if (currTag == "visibility")
|
||||
m_data.m_visible = value == "0" ? false : true;
|
||||
m_data.m_visible = value != "0";
|
||||
}
|
||||
else if (prevTag == kPlacemark)
|
||||
{
|
||||
|
|
|
@ -124,7 +124,7 @@ public:
|
|||
void AttachTrack(df::LineID markId);
|
||||
void DetachTrack(df::LineID markId);
|
||||
|
||||
df::MarkGroupID GetID() const { return m_groupID; }
|
||||
df::MarkGroupID GetID() const { return m_groupId; }
|
||||
df::LineIDSet const & GetUserLines() const override { return m_tracks; }
|
||||
|
||||
void SetName(std::string const & name) { m_name = name; }
|
||||
|
@ -133,7 +133,7 @@ public:
|
|||
std::string const & GetFileName() const { return m_file; }
|
||||
|
||||
private:
|
||||
const df::MarkGroupID m_groupID;
|
||||
df::MarkGroupID const m_groupId;
|
||||
std::string m_name;
|
||||
// Stores file name from which bookmarks were loaded.
|
||||
std::string m_file;
|
||||
|
|
|
@ -57,8 +57,10 @@ bool IsBadCharForPath(strings::UniChar const & c)
|
|||
static strings::UniChar const illegalChars[] = {':', '/', '\\', '<', '>', '\"', '|', '?', '*'};
|
||||
|
||||
for (size_t i = 0; i < ARRAY_SIZE(illegalChars); ++i)
|
||||
{
|
||||
if (c < ' ' || illegalChars[i] == c)
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -141,7 +143,7 @@ BookmarkManager::BookmarkManager(Callbacks && callbacks)
|
|||
{
|
||||
ASSERT(m_callbacks.m_getStringsBundle != nullptr, ());
|
||||
m_userMarkLayers.reserve(UserMark::BOOKMARK);
|
||||
for (size_t i = 0; i < UserMark::BOOKMARK; ++i)
|
||||
for (uint32_t i = 0; i < UserMark::BOOKMARK; ++i)
|
||||
m_userMarkLayers.emplace_back(std::make_unique<UserMarkLayer>(static_cast<UserMark::Type>(i)));
|
||||
|
||||
m_selectionMark = CreateUserMark<StaticMarkPoint>(m2::PointD{});
|
||||
|
@ -322,37 +324,45 @@ void BookmarkManager::OnEditSessionClosed()
|
|||
|
||||
void BookmarkManager::NotifyChanges()
|
||||
{
|
||||
if (!m_changesTracker.CheckChanges())
|
||||
return;
|
||||
|
||||
df::DrapeEngineLockGuard lock(m_drapeEngine);
|
||||
if (!lock)
|
||||
if (!m_changesTracker.CheckChanges() && !m_firstDrapeNotification)
|
||||
return;
|
||||
|
||||
bool isBookmarks = false;
|
||||
auto engine = lock.Get();
|
||||
for (auto groupId : m_changesTracker.GetDirtyGroupIds())
|
||||
{
|
||||
isBookmarks |= IsBookmarkCategory(groupId);
|
||||
auto * group = FindContainer(groupId);
|
||||
engine->ChangeVisibilityUserMarksGroup(groupId, group->IsVisible());
|
||||
if (IsBookmarkCategory(groupId))
|
||||
{
|
||||
isBookmarks = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
engine->UpdateUserMarks(&m_changesTracker);
|
||||
|
||||
for (auto groupId : m_changesTracker.GetDirtyGroupIds())
|
||||
{
|
||||
auto * group = FindContainer(groupId);
|
||||
if (group->GetUserMarks().empty() && group->GetUserLines().empty())
|
||||
engine->ClearUserMarksGroup(groupId);
|
||||
group->ResetChanges();
|
||||
}
|
||||
|
||||
engine->InvalidateUserMarks();
|
||||
|
||||
if (isBookmarks)
|
||||
SendBookmarksChanges();
|
||||
|
||||
df::DrapeEngineLockGuard lock(m_drapeEngine);
|
||||
if (lock)
|
||||
{
|
||||
auto engine = lock.Get();
|
||||
for (auto groupId : m_changesTracker.GetDirtyGroupIds())
|
||||
{
|
||||
auto *group = FindContainer(groupId);
|
||||
engine->ChangeVisibilityUserMarksGroup(groupId, group->IsVisible());
|
||||
}
|
||||
|
||||
engine->UpdateUserMarks(&m_changesTracker, m_firstDrapeNotification);
|
||||
m_firstDrapeNotification = false;
|
||||
|
||||
for (auto groupId : m_changesTracker.GetDirtyGroupIds())
|
||||
{
|
||||
auto *group = FindContainer(groupId);
|
||||
if (group->GetUserMarks().empty() && group->GetUserLines().empty())
|
||||
engine->ClearUserMarksGroup(groupId);
|
||||
group->ResetChanges();
|
||||
}
|
||||
|
||||
engine->InvalidateUserMarks();
|
||||
}
|
||||
|
||||
for (auto const markId : m_changesTracker.GetUpdatedMarkIds())
|
||||
GetMark(markId)->ResetChanges();
|
||||
|
||||
|
@ -428,11 +438,10 @@ bool BookmarkManager::IsVisible(df::MarkGroupID groupId) const
|
|||
return FindContainer(groupId)->IsVisible();
|
||||
}
|
||||
|
||||
////////////////////////////
|
||||
|
||||
void BookmarkManager::SetDrapeEngine(ref_ptr<df::DrapeEngine> engine)
|
||||
{
|
||||
m_drapeEngine.Set(engine);
|
||||
m_firstDrapeNotification = true;
|
||||
}
|
||||
|
||||
void BookmarkManager::UpdateViewport(ScreenBase const & screen)
|
||||
|
@ -687,7 +696,7 @@ df::MarkGroupID BookmarkManager::LastEditedBMCategory()
|
|||
}
|
||||
|
||||
if (m_categories.empty())
|
||||
CreateBmCategory(m_callbacks.m_getStringsBundle().GetString("my_places"));
|
||||
CreateBookmarkCategory(m_callbacks.m_getStringsBundle().GetString("my_places"));
|
||||
|
||||
return m_bmGroupsIdList.front();
|
||||
}
|
||||
|
@ -750,7 +759,7 @@ bool BookmarkManager::HasBmCategory(df::MarkGroupID groupID) const
|
|||
return m_categories.find(groupID) != m_categories.end();
|
||||
}
|
||||
|
||||
df::MarkGroupID BookmarkManager::CreateBmCategory(std::string const & name)
|
||||
df::MarkGroupID BookmarkManager::CreateBookmarkCategory(std::string const & name)
|
||||
{
|
||||
auto const groupId = m_nextGroupID++;
|
||||
auto & cat = m_categories[groupId];
|
||||
|
@ -866,7 +875,7 @@ void BookmarkManager::CreateCategories(KMLDataCollection && dataCollection)
|
|||
}
|
||||
else
|
||||
{
|
||||
groupID = CreateBmCategory(data->m_name);
|
||||
groupID = CreateBookmarkCategory(data->m_name);
|
||||
group = GetBmCategory(groupID);
|
||||
group->SetFileName(data->m_file);
|
||||
group->SetIsVisible(data->m_visible);
|
||||
|
@ -1151,6 +1160,15 @@ bool BookmarkManager::SaveToKMLFile(df::MarkGroupID groupID)
|
|||
return false;
|
||||
}
|
||||
|
||||
df::GroupIDSet BookmarkManager::MarksChangesTracker::GetAllGroupIds() const
|
||||
{
|
||||
auto const & groupIds = m_bmManager.GetBmGroupsIdList();
|
||||
df::GroupIDSet resultingSet(groupIds.begin(), groupIds.end());
|
||||
for (uint32_t i = 0; i < UserMark::BOOKMARK; ++i)
|
||||
resultingSet.insert(static_cast<df::MarkGroupID>(i));
|
||||
return resultingSet;
|
||||
}
|
||||
|
||||
bool BookmarkManager::MarksChangesTracker::IsGroupVisible(df::MarkGroupID groupID) const
|
||||
{
|
||||
return m_bmManager.IsVisible(groupID);
|
||||
|
@ -1252,12 +1270,6 @@ Track * BookmarkManager::EditSession::CreateTrack(m2::PolylineD const & polyline
|
|||
return m_bmManager.CreateTrack(polyline, p);
|
||||
}
|
||||
|
||||
/*
|
||||
UserMark * BookmarkManager::EditSession::GetUserMarkForEdit(df::MarkID markID)
|
||||
{
|
||||
return m_bmManager.GetUserMarkForEdit(markID);
|
||||
}*/
|
||||
|
||||
Bookmark * BookmarkManager::EditSession::GetBookmarkForEdit(df::MarkID markID)
|
||||
{
|
||||
return m_bmManager.GetBookmarkForEdit(markID);
|
||||
|
|
|
@ -86,13 +86,12 @@ public:
|
|||
return m_bmManager.GetMarkForEdit<UserMarkT>(markId);
|
||||
}
|
||||
|
||||
//UserMark * GetUserMarkForEdit(df::MarkID markID);
|
||||
Bookmark * GetBookmarkForEdit(df::MarkID markID);
|
||||
|
||||
template <typename UserMarkT, typename F>
|
||||
void DeleteUserMarks(UserMark::Type type, F deletePredicate)
|
||||
void DeleteUserMarks(UserMark::Type type, F && deletePredicate)
|
||||
{
|
||||
return m_bmManager.DeleteUserMarks<UserMarkT, F>(type, deletePredicate);
|
||||
return m_bmManager.DeleteUserMarks<UserMarkT, F>(type, std::move(deletePredicate));
|
||||
};
|
||||
|
||||
void DeleteUserMark(df::MarkID markId);
|
||||
|
@ -153,13 +152,13 @@ public:
|
|||
|
||||
bool IsVisible(df::MarkGroupID groupId) const;
|
||||
|
||||
df::MarkGroupID CreateBmCategory(std::string const & name);
|
||||
df::MarkGroupID CreateBookmarkCategory(std::string const & name);
|
||||
|
||||
std::string const & GetCategoryName(df::MarkGroupID categoryId) const;
|
||||
std::string const & GetCategoryFileName(df::MarkGroupID categoryId) const;
|
||||
void SetCategoryName(df::MarkGroupID categoryId, std::string const & name);
|
||||
|
||||
df::GroupIDList const & GetBmGroupsIdList() const { return m_bmGroupsIdList; }
|
||||
df::GroupIDCollection const & GetBmGroupsIdList() const { return m_bmGroupsIdList; }
|
||||
bool HasBmCategory(df::MarkGroupID groupID) const;
|
||||
df::MarkGroupID LastEditedBMCategory();
|
||||
std::string LastEditedBMType() const;
|
||||
|
@ -200,6 +199,7 @@ private:
|
|||
void ResetChanges();
|
||||
|
||||
// UserMarksProvider
|
||||
df::GroupIDSet GetAllGroupIds() const override;
|
||||
df::GroupIDSet const & GetDirtyGroupIds() const override { return m_dirtyGroups; }
|
||||
df::MarkIDSet const & GetCreatedMarkIds() const override { return m_createdMarks; }
|
||||
df::MarkIDSet const & GetRemovedMarkIds() const override { return m_removedMarks; }
|
||||
|
@ -246,7 +246,7 @@ private:
|
|||
}
|
||||
|
||||
template <typename UserMarkT, typename F>
|
||||
void DeleteUserMarks(UserMark::Type type, F deletePredicate)
|
||||
void DeleteUserMarks(UserMark::Type type, F && deletePredicate)
|
||||
{
|
||||
std::list<df::MarkID> marksToDelete;
|
||||
for (auto markId : GetUserMarkIds(type))
|
||||
|
@ -321,11 +321,12 @@ private:
|
|||
df::MarkGroupID m_nextGroupID;
|
||||
uint32_t m_openedEditSessionsCount = 0;
|
||||
bool m_loadBookmarksFinished = false;
|
||||
bool m_firstDrapeNotification = false;
|
||||
|
||||
ScreenBase m_viewport;
|
||||
|
||||
CategoriesCollection m_categories;
|
||||
df::GroupIDList m_bmGroupsIdList;
|
||||
df::GroupIDCollection m_bmGroupsIdList;
|
||||
|
||||
std::string m_lastCategoryUrl;
|
||||
std::string m_lastType;
|
||||
|
|
|
@ -735,7 +735,7 @@ void Framework::LoadBookmarks()
|
|||
|
||||
df::MarkGroupID Framework::AddCategory(string const & categoryName)
|
||||
{
|
||||
return GetBookmarkManager().CreateBmCategory(categoryName);
|
||||
return GetBookmarkManager().CreateBookmarkCategory(categoryName);
|
||||
}
|
||||
|
||||
void Framework::FillBookmarkInfo(Bookmark const & bmk, place_page::Info & info) const
|
||||
|
|
|
@ -44,8 +44,7 @@ public:
|
|||
|
||||
UserMark(m2::PointD const & ptOrg, UserMark::Type type);
|
||||
|
||||
static Type GetMarkType(df::MarkID);
|
||||
// static df::MarkGroupID GetGroupId(UserMark::Type type);
|
||||
static Type GetMarkType(df::MarkID id);
|
||||
|
||||
Type GetMarkType() const { return GetMarkType(GetId()); }
|
||||
df::MarkGroupID GetGroupId() const override { return GetMarkType(); }
|
||||
|
|
|
@ -370,12 +370,10 @@ void DrawWidget::SubmitRoutingPoint(m2::PointD const & pt)
|
|||
|
||||
void DrawWidget::SubmitBookmark(m2::PointD const & pt)
|
||||
{
|
||||
size_t categoryIndex = 0;
|
||||
auto category = m_framework.GetBookmarkManager().GetBmCategory(categoryIndex);
|
||||
if (category == nullptr)
|
||||
categoryIndex = m_framework.GetBookmarkManager().CreateBmCategory("Desktop_bookmarks");
|
||||
if (!m_framework.GetBookmarkManager().HasBmCategory(m_bookmarksCategoryId))
|
||||
m_bookmarksCategoryId = m_framework.GetBookmarkManager().CreateBookmarkCategory("Desktop_bookmarks");
|
||||
BookmarkData data("", "placemark-red");
|
||||
m_framework.GetBookmarkManager().AddBookmark(categoryIndex, m_framework.P3dtoG(pt), data);
|
||||
m_framework.GetBookmarkManager().GetEditSession().CreateBookmark(m_framework.P3dtoG(pt), data, m_bookmarksCategoryId);
|
||||
}
|
||||
|
||||
void DrawWidget::FollowRoute()
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#include "drape/pointers.hpp"
|
||||
#include "drape_frontend/gui/skin.hpp"
|
||||
#include "drape_frontend/user_event_stream.hpp"
|
||||
#include <drape_frontend/user_marks_global.hpp>
|
||||
#include "qt/qt_common/qtoglcontextfactory.hpp"
|
||||
|
||||
#include <QtCore/QTimer>
|
||||
|
@ -86,6 +87,7 @@ protected:
|
|||
bool m_apiOpenGLES3;
|
||||
ScaleSlider * m_slider;
|
||||
SliderState m_sliderState;
|
||||
df::MarkGroupID m_bookmarksCategoryId = 0;
|
||||
|
||||
qreal m_ratio;
|
||||
drape_ptr<QtOGLContextFactory> m_contextFactory;
|
||||
|
|
Loading…
Add table
Reference in a new issue