summaryrefslogtreecommitdiff
path: root/src/myscroller.cpp
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2016-06-15 20:23:58 +0200
committerMateusz Łukasik <mati75@linuxmint.pl>2016-06-15 20:23:58 +0200
commit42be0eb4f1d7a25dca97e8e2eb4ec4d03b7931fb (patch)
treefae3347b0c924378c57862feea2708766d159771 /src/myscroller.cpp
parent1a2f0c9c1087899a00298db8fa70518d3c1e69f8 (diff)
Imported Upstream version 16.6.0~ds0
Diffstat (limited to 'src/myscroller.cpp')
-rw-r--r--src/myscroller.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/myscroller.cpp b/src/myscroller.cpp
new file mode 100644
index 0000000..d867443
--- /dev/null
+++ b/src/myscroller.cpp
@@ -0,0 +1,39 @@
+/* smplayer, GUI front-end for mplayer.
+ Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#include "myscroller.h"
+#include <QObject>
+
+#if QT_VERSION >= 0x050000
+#include <QScroller>
+#include <QScrollerProperties>
+#endif
+
+void MyScroller::setScroller(QObject * w, bool touch) {
+#if QT_VERSION >= 0x050000
+ QScroller::grabGesture(w, touch ? QScroller::TouchGesture : QScroller::LeftMouseButtonGesture);
+
+ // Change properties
+ QVariant overshoot = QVariant::fromValue<QScrollerProperties::OvershootPolicy>(QScrollerProperties::OvershootAlwaysOff);
+ QScrollerProperties sp = QScroller::scroller(w)->scrollerProperties();
+ sp.setScrollMetric(QScrollerProperties::VerticalOvershootPolicy, overshoot);
+ sp.setScrollMetric(QScrollerProperties::HorizontalOvershootPolicy, overshoot);
+ QScroller::scroller(w)->setScrollerProperties(sp);
+#endif
+}
+