diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-01-09 12:10:19 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-01-09 12:10:19 +0100 |
commit | 5391120be8cfd3a5d752ac8c7b66bf17b690f303 (patch) | |
tree | 7fdacbbbcc941e7cf2a05a32175d6ea4a3bb006a /src/mainview.h | |
parent | removed LoadPage method to semplify API (diff) | |
download | rekonq-5391120be8cfd3a5d752ac8c7b66bf17b690f303.tar.xz |
BIG change!!
Removed use of proxy webactionmapper to manage web actions..
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/mainview.h b/src/mainview.h index 0458611d..135bad13 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -23,11 +23,10 @@ #ifndef TABWIDGET_H #define TABWIDGET_H -// KDE Includes -#include <KAction> - // Qt Includes #include <QWebPage> +// KDE Includes +#include <KAction> class WebView; /** @@ -75,7 +74,6 @@ private: QT_BEGIN_NAMESPACE class QCompleter; -class QMenu; class QStackedWidget; QT_END_NAMESPACE @@ -145,6 +143,17 @@ public slots: void nextTab(); void previousTab(); + // WEB slot actions + void slotWebReload(); + void slotWebBack(); + void slotWebForward(); + void slotWebUndo(); + void slotWebRedo(); + void slotWebCut(); + void slotWebCopy(); + void slotWebPaste(); + void slotWebSelectAll(); + private slots: void currentChanged(int index); void aboutToShowRecentTabsMenu(); |