[bookmark] add HasBookmark to the bookmarks manager

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-05-19 22:11:30 +04:00 committed by Viktor Havaka
parent 0cc2343b6a
commit ad09f67da0
2 changed files with 8 additions and 0 deletions

View file

@ -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, ());

View file

@ -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;