From a105fdc65be75c13bfc2c18e418b00d53c56fb50 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Tue, 20 Oct 2009 17:04:22 +0200 Subject: WebView Scrolling. Patch from Johannes Zellner (thanks). I changed just the keyPressEvent function to better test it.. --- src/webview.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/webview.h') diff --git a/src/webview.h b/src/webview.h index 3388348d..d3f58f2e 100644 --- a/src/webview.h +++ b/src/webview.h @@ -37,13 +37,24 @@ // Forward Declarations class WebPage; +class QTimer; class WebView : public QWebView { Q_OBJECT + Q_ENUMS(ScrollDirection) public: + enum ScrollDirection + { + NoScroll = 0, + Up = 2, + Down = 4, + Left = 6, + Right = 16 + }; + explicit WebView(QWidget *parent = 0); ~WebView(); @@ -71,10 +82,18 @@ private slots: void openLinkInNewWindow(); void openLinkInNewTab(); + void startScrollAnimation(ScrollDirection direction); + void stopScrollAnimation(); + void scrollFrameChanged(); + private: WebPage *m_page; int m_progress; QString m_statusBarText; + QTimer *m_scrollTimer; + int m_scrollDirection; + int m_scrollSpeedVertical; + int m_scrollSpeedHorizontal; }; #endif -- cgit v1.2.1