Obsolete Members for BottomEdgeHint
The following members of QML type BottomEdgeHint are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.
Properties
- deactivateTimeout : int
- flickable : Flickable
- iconName : string
- iconSource : url
- status : Status
- swipeArea : SwipeArea
- text : string
Property Documentation
deactivateTimeout : int |
The property specifies the timeout interval in milliseconds the status is set to Inactive after a gesture based activation. Gesture based activation is only possible when mouse is not attached to the device. Defaults to 800 milliseconds.
flickable : Flickable |
The property holds the flickable, which when flicked hides the hint. Hidden state is reached when this property is set to a Flickable which is flicking or moving. It is recommended to set the property when the hint is placed above a flickable content. Defaults to null.
iconName : string |
The icon associated with the BottomEdgeHint in the icon theme.
If both iconSource and iconName are defined, iconName will be ignored.
iconSource : url |
The icon displayed by the BottomEdgeHint.
This is the URL of any image file. If both iconSource and iconName are defined, iconName will be ignored.
The property represents the status of the hint. The property is writable so it can be set to any of the following values programatically:
Status | Description |
---|---|
Hidden | The hint is not shown. Equivalent with setting visible to false , however visuals may do animations when altering this property. It can only be set if the current status is not Locked. |
Inactive | The hint is shown and inactive. Styles can represent this state with different visuals. When inactive, clicked signal cannot be emitted. |
Active | The hint is shown and active, meaning clicked signal is emitted when clicked with mouse. |
Locked | Similar to Active the hint is shown and active, but no automatic transition to any other state is allowed. This is relevant for style implementations. |
Note: Locked status value is set automatically when the system detects a mouse attached. In this case any change into other state value than Locked is rejected. Defaults to
- Inactive if no mouse is attached or
- Locked if there is a mouse detected.
[read-only] swipeArea : SwipeArea |
The property specifies the SwipeArea attached to the component driving its behavior.
text : string |
The label displayed by the BottomEdgeHint.