summaryrefslogtreecommitdiff
path: root/src/webview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-03-31 10:54:02 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-03-31 10:54:02 +0200
commita6da0df7e0f72f1d7185e39815c17b7fab07d790 (patch)
tree36158efa98e29bcc0bc27d5128d2ecb44d36b45c /src/webview.h
parentThis patch solves some problems of clipped text (diff)
downloadrekonq-a6da0df7e0f72f1d7185e39815c17b7fab07d790.tar.xz
Auto Scrolling, first bunch.
key combinations just work :)
Diffstat (limited to 'src/webview.h')
-rw-r--r--src/webview.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/webview.h b/src/webview.h
index b0700e8f..59105267 100644
--- a/src/webview.h
+++ b/src/webview.h
@@ -30,8 +30,6 @@
// Local Includes
#include "rekonqprivate_export.h"
-
-// Local Includes
#include "application.h"
// KDE Includes
@@ -70,11 +68,17 @@ private slots:
void viewImage(Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers);
void inspect();
+ void scrollFrameChanged();
+
signals:
void loadUrl(const KUrl &, const Rekonq::OpenType &);
private:
- QPoint m_mousePos;
+ QPoint _mousePos;
+
+ QTimer *_scrollTimer;
+ int _VScrollSpeed;
+ int _HScrollSpeed;
};
#endif