diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-04-28 00:04:20 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-04-28 00:04:20 +0200 |
commit | 339f1fe47ae8f6dcd799a674cdab65693a810d5f (patch) | |
tree | aac7c2cbae17b06f87d419022ae918b85d3a5c27 /src/bookmarks/bookmarkowner.h | |
parent | Letting rekonq URL popup behaves as Chrome's and Firefox4 ones (diff) | |
download | rekonq-339f1fe47ae8f6dcd799a674cdab65693a810d5f.tar.xz |
- A new option to set/unset the current bookmark bar folder in the context menu
- Fix drag and drop with a custom folder
- Fix a regression which affects BK bar drag and drop (5a53d2bf91dd)
Patch by Yoann Laissus, reviewed by me :)
Diffstat (limited to 'src/bookmarks/bookmarkowner.h')
-rw-r--r-- | src/bookmarks/bookmarkowner.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bookmarks/bookmarkowner.h b/src/bookmarks/bookmarkowner.h index 8f0cd3b8..a414963b 100644 --- a/src/bookmarks/bookmarkowner.h +++ b/src/bookmarks/bookmarkowner.h @@ -61,7 +61,9 @@ public: COPY, EDIT, DELETE, - NUM_ACTIONS + NUM_ACTIONS, + SET_TOOLBAR_FOLDER, + UNSET_TOOLBAR_FOLDER }; /** @@ -106,6 +108,8 @@ public Q_SLOTS: void copyLink(const KBookmark &bookmark); void editBookmark(KBookmark bookmark); bool deleteBookmark(const KBookmark &bookmark); + void setToolBarFolder(KBookmark bookmark = KBookmark()); + void unsetToolBarFolder(); Q_SIGNALS: /** |