diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-01-17 16:36:24 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-01-17 16:36:24 +0100 |
commit | bca368f9fa495334b3dd9670a5ee7264c62e0c80 (patch) | |
tree | 789bcae04011b5eff47f728536bf846c69c70afd /src/webview.h | |
parent | Fix a bookmarks bar crash (diff) | |
download | rekonq-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.h | 6 |
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: |