1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:17:44 +00:00

Browser: Add right-click context menu item for editing bookmarks

This allows users to right-click on a bookmark button to open a small
dialog for editing bookmark titles and URLs.
This commit is contained in:
Timothy Flynn 2021-03-25 07:34:55 -04:00 committed by Andreas Kling
parent 990e362a17
commit cd82fd24e2
4 changed files with 174 additions and 0 deletions

View file

@ -52,6 +52,7 @@ public:
bool contains_bookmark(const String& url);
bool remove_bookmark(const String& url);
bool add_bookmark(const String& url, const String& title);
bool edit_bookmark(const String& url);
private:
BookmarksBarWidget(const String&, bool enabled);