summaryrefslogtreecommitdiff
path: root/src/webview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-01-20 21:47:02 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-01-22 10:53:59 +0100
commit2b94e9bc9d71624bea89150ee5867ad7fbc8b5e9 (patch)
treed8d15a9ef505801f0bfd85d7f08b6c54ba5c6dbd /src/webview.h
parentm_mousePos-- (diff)
downloadrekonq-2b94e9bc9d71624bea89150ee5867ad7fbc8b5e9.tar.xz
clean up WebView variables names
Smooth, auto, normal scrolling... Too much things to manage without a clear policy.
Diffstat (limited to 'src/webview.h')
-rw-r--r--src/webview.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/webview.h b/src/webview.h
index 08e5e522..ef44681b 100644
--- a/src/webview.h
+++ b/src/webview.h
@@ -100,7 +100,7 @@ private Q_SLOTS:
void setupSmoothScrolling(int posY);
- void stopScrolling();
+ void stopSmoothScrolling();
void changeWindowIcon();
void accessKeyShortcut();
@@ -124,8 +124,8 @@ private:
// Auto Scroll
QTimer *const m_autoScrollTimer;
- int m_vScrollSpeed;
- int m_hScrollSpeed;
+ int m_verticalAutoScrollSpeed;
+ int m_horizontalAutoScrollSpeed;
bool m_canEnableAutoScroll;
bool m_isViewAutoScrolling;
QPixmap m_autoScrollIndicator;
@@ -133,10 +133,10 @@ private:
// Smooth Scroll
QTimer *const m_smoothScrollTimer;
QTime m_smoothScrollTime;
- bool m_scrollBottom;
- bool m_smoothScrolling;
+ bool m_smoothScrollBottomReached;
int m_dy;
int m_smoothScrollSteps;
+ bool m_isViewSmoothScrolling;
// Access Keys
QList<QLabel*> m_accessKeyLabels;