diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-03-28 00:07:33 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-28 00:07:33 +0100 |
commit | 2d460805a5f8a3a69ecfad7c950d187337cdba99 (patch) | |
tree | 5a1e35c7371608a8962f9af36cad0eac113cdba8 /src/bookmarks/bookmarkspanel.h | |
parent | rekonq 0.4.55 (diff) | |
parent | Merge commit 'refs/merge-requests/107' of git://gitorious.org/rekonq/mainline... (diff) | |
download | rekonq-2d460805a5f8a3a69ecfad7c950d187337cdba99.tar.xz |
Merge branch 'HistoryBookmarksImprovements'
Diffstat (limited to 'src/bookmarks/bookmarkspanel.h')
-rw-r--r-- | src/bookmarks/bookmarkspanel.h | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/src/bookmarks/bookmarkspanel.h b/src/bookmarks/bookmarkspanel.h index f5376d98..f8528b71 100644 --- a/src/bookmarks/bookmarkspanel.h +++ b/src/bookmarks/bookmarkspanel.h @@ -31,10 +31,16 @@ // Local Includes #include "rekonqprivate_export.h" +#include "application.h" +#include "urltreeview.h" // Qt Includes #include <QDockWidget> +// KDE Includes +#include <KBookmark> +#include <KActionCollection> + // Forward Declarations class KUrl; class QModelIndex; @@ -49,13 +55,35 @@ public: ~BookmarksPanel(); signals: - void openUrl(const KUrl &); + void openUrl(const KUrl &, const Rekonq::OpenType &); + void itemHovered(const QString &); + void saveOnlyRequested(); private slots: - void bookmarkActivated( const QModelIndex &index ); + void contextMenuBk(const QPoint &pos); + void contextMenuBkGroup(const QPoint &pos, const bool emptyGroup = false); + void contextMenuBlank(const QPoint &pos); + void deleteBookmark(); + void openFolderInTabs(); + void editBookmark(); + void newBookmarkGroup(); + void newSeparator(); + void onCollapse(const QModelIndex &index); + void onExpand(const QModelIndex &index); + void bookmarkCurrentPage(); + void loadFoldedState(const QModelIndex &root); + void loadFoldedState(); + private: void setup(); + void setupActions(); + void contextMenuSeparator(const QPoint &pos); + KBookmark bookmarkForIndex(const QModelIndex &index); + + UrlTreeView *m_treeView; + KActionCollection *m_ac; + bool m_loadingState; }; #endif // BOOKMARKSPANEL_H |