diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-03-23 22:56:26 +0100 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-03-23 22:56:26 +0100 |
commit | e9670c51fef2c8447a04a30778a24646df4ef915 (patch) | |
tree | 0a6fcb5bc2696cfb3a4ed313e5bbb57a7a704f1d /src/history/historypanel.h | |
parent | Doing "load finished" operations just on ok loading is really NOT (diff) | |
download | rekonq-e9670c51fef2c8447a04a30778a24646df4ef915.tar.xz |
A lot of fix and improvements for the bookmark and the history panels
Diffstat (limited to 'src/history/historypanel.h')
-rw-r--r-- | src/history/historypanel.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/history/historypanel.h b/src/history/historypanel.h index 6e6a9162..0c01189c 100644 --- a/src/history/historypanel.h +++ b/src/history/historypanel.h @@ -31,6 +31,8 @@ // Local Includes #include "rekonqprivate_export.h" +#include "application.h" +#include "urltreeview.h" // Qt Includes #include <QDockWidget> @@ -50,13 +52,17 @@ public: ~HistoryPanel(); signals: - void openUrl(const KUrl &); + void openUrl(const KUrl &, const Rekonq::OpenType &); + void itemHovered(const QString &); private slots: - void itemActivated(const QModelIndex &); + void contextMenuItem(const QPoint &pos); + void contextMenuGroup(const QPoint &pos); + void openAll(); private: void setup(); + UrlTreeView *m_treeView; }; #endif // HISTORYPANEL_H |