2 * Copyright (C) 2015-2016 Canonical, Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import Ubuntu.Components 1.3
19 import Ubuntu.Gestures 0.1
23 A Flickable that can be put in front of the item to be flicked and
24 still have the item-to-be-flicked receive input events that are not flicks.
26 Ie, it's a Flickable that, input-wise, is transparent to non-flick gestures.
28 With a regular Flickable you would have to make the item-to-be-flicked a child
29 of Flicakble to achieve the same result. FloatingFlickable has no such requirement
33 property alias contentWidth: flickable.contentWidth
34 property alias contentHeight: flickable.contentHeight
35 property alias contentX: flickable.contentX
36 property alias contentY: flickable.contentY
37 property alias direction: swipeArea.direction
40 id: mouseEventGenerator
48 flickableDirection: Direction.isHorizontal(swipeArea.direction) ? Flickable.HorizontalFlick : Flickable.VerticalFlick
54 direction: Direction.Horizontal
56 onTouchPositionChanged: mouseEventGenerator.move(touchPosition);
57 onDraggingChanged: dragging ? mouseEventGenerator.press(touchPosition)
58 : mouseEventGenerator.release(touchPosition)