forked from organicmaps/organicmaps
[bookmark] add HasBookmark to the bookmarks manager
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
0cc2343b6a
commit
ad09f67da0
2 changed files with 8 additions and 0 deletions
|
@ -2273,6 +2273,13 @@ bool BookmarkManager::HasBmCategory(kml::MarkGroupId groupId) const
|
|||
return (IsBookmarkCategory(groupId) && GetBmCategorySafe(groupId) != nullptr);
|
||||
}
|
||||
|
||||
bool BookmarkManager::HasBookmark(kml::MarkId markId) const
|
||||
{
|
||||
CHECK_THREAD_CHECKER(m_threadChecker, ());
|
||||
ASSERT(IsBookmark(markId), ());
|
||||
return (GetBookmark(markId) != nullptr);
|
||||
}
|
||||
|
||||
void BookmarkManager::UpdateBmGroupIdList()
|
||||
{
|
||||
CHECK_THREAD_CHECKER(m_threadChecker, ());
|
||||
|
|
|
@ -282,6 +282,7 @@ public:
|
|||
kml::GroupIdCollection GetSortedBmGroupIdList() const;
|
||||
size_t GetBmGroupsCount() const { return m_unsortedBmGroupsIdList.size(); };
|
||||
bool HasBmCategory(kml::MarkGroupId groupId) const;
|
||||
bool HasBookmark(kml::MarkId markId) const;
|
||||
kml::MarkGroupId LastEditedBMCategory();
|
||||
kml::PredefinedColor LastEditedBMColor() const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue