summaryrefslogtreecommitdiff
path: root/src/webview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-01-17 16:36:24 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-01-17 16:36:24 +0100
commitbca368f9fa495334b3dd9670a5ee7264c62e0c80 (patch)
tree789bcae04011b5eff47f728536bf846c69c70afd /src/webview.h
parentFix a bookmarks bar crash (diff)
downloadrekonq-bca368f9fa495334b3dd9670a5ee7264c62e0c80.tar.xz
Moved access keys activation to release key event
This to copy konqueror behavior. Also added some kDebug messages to better work with the "key event" features: - vi-like navigation - access keys - autoscroll
Diffstat (limited to 'src/webview.h')
-rw-r--r--src/webview.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/webview.h b/src/webview.h
index 6eb5b84d..b0254aa4 100644
--- a/src/webview.h
+++ b/src/webview.h
@@ -70,13 +70,19 @@ public:
protected:
void contextMenuEvent(QContextMenuEvent *event);
+
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
+
void keyPressEvent(QKeyEvent *event);
+ void keyReleaseEvent(QKeyEvent *event);
+
void wheelEvent(QWheelEvent *event);
+
void dropEvent(QDropEvent *event);
void dragEnterEvent(QDragEnterEvent *event);
void dragMoveEvent(QDragMoveEvent * event);
+
void paintEvent(QPaintEvent *event);
private Q_SLOTS: