summaryrefslogtreecommitdiffstats
path: root/src/widgets/doc/snippets/code/src_widgets_util_qscroller.cpp
blob: 36e77bf3710c0aa8a10307087abd69a6a002e9c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
    QWidget *w = ...;
    QScroller::grabGesture(w, QScroller::LeftMouseButtonGesture);
//! [0]

//! [1]
    QWidget *w = ...;
    QScroller *scroller = QScroller::scroller(w);
    scroller->scrollTo(QPointF(100, 100));
//! [1]