Qt Components Hildon  0.20
QML components for Maemo5 with Hildon styling.
 All Classes Functions Properties Groups Pages
Properties | List of all members
Flickable Class Reference

A standard QtQuick Flickable element with scroll bars. More...

Properties

enumeration horizontalScrollBarPolicy
 The policy used to determine whether the horizontal scroll bar should be visible.
FlickableStyle style
 Provides styling properties for the flickable.
enumeration verticalScrollBarPolicy
 The policy used to determine whether the vertical scroll bar should be visible.

Detailed Description

A standard QtQuick Flickable element with scroll bars.

The Flickable component behaves in the same way as the standard QtQuick Flickable element, but with optional scroll bars.

See Also
FlickableStyle, OssoFlickableStyle
Examples:
buttons.qml, and webview.qml.

Property Documentation

enumeration Flickable::horizontalScrollBarPolicy

The policy used to determine whether the horizontal scroll bar should be visible.

Possible values are:

Value Description
Qt.ScrollBarAlwaysOn The horizontal scroll bar should always be visible.
Qt.ScrollBarAlwaysOff The horizontal scroll bar should never be visible.
Qt.ScrollBarAsNeeded The horizontal scroll bar should be visible when the content width is greater than the width of the flickable (default).
enumeration Flickable::verticalScrollBarPolicy

The policy used to determine whether the vertical scroll bar should be visible.

Possible values are:

Value Description
Qt.ScrollBarAlwaysOn The vertical scroll bar should always be visible.
Qt.ScrollBarAlwaysOff The vertical scroll bar should never be visible.
Qt.ScrollBarAsNeeded The vertical scroll bar should be visible when the content height is greater than the height of the flickable (default).