Merge pull request #105 from monich/image-page
Tweaked ImagePage behavior
This commit is contained in:
commit
2a4325f4ed
1 changed files with 67 additions and 59 deletions
|
@ -91,11 +91,9 @@ Page {
|
|||
}
|
||||
|
||||
SilicaFlickable {
|
||||
id: imageFlickable
|
||||
anchors.fill: parent
|
||||
clip: true
|
||||
contentWidth: imagePinchArea.width;
|
||||
contentHeight: imagePinchArea.height;
|
||||
flickableDirection: Flickable.VerticalFlick
|
||||
interactive: !imageOnly
|
||||
|
||||
PullDownMenu {
|
||||
visible: !imageOnly && imageUrl
|
||||
|
@ -107,26 +105,25 @@ Page {
|
|||
}
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
NumberAnimation { properties: "contentX, contentY"; easing.type: Easing.Linear }
|
||||
}
|
||||
|
||||
AppNotification {
|
||||
id: imageNotification
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
SilicaFlickable {
|
||||
id: imageFlickable
|
||||
anchors.fill: parent
|
||||
visible: singleImage.visible
|
||||
onClicked: imageOnly = !imageOnly // Toggle "Image only" mode on tap
|
||||
}
|
||||
clip: true
|
||||
contentWidth: imagePinchArea.width
|
||||
contentHeight: imagePinchArea.height
|
||||
flickableDirection: Flickable.HorizontalAndVerticalFlick
|
||||
quickScrollEnabled: false
|
||||
|
||||
PinchArea {
|
||||
id: imagePinchArea
|
||||
width: Math.max( singleImage.width * singleImage.scale, imageFlickable.width )
|
||||
height: Math.max( singleImage.height * singleImage.scale, imageFlickable.height )
|
||||
|
||||
enabled: singleImage.visible
|
||||
enabled: singleImage.status === Image.Ready
|
||||
pinch {
|
||||
target: singleImage
|
||||
minimumScale: 1
|
||||
|
@ -134,8 +131,9 @@ Page {
|
|||
}
|
||||
|
||||
onPinchUpdated: {
|
||||
imagePage.centerX = pinch.center.x;
|
||||
imagePage.centerY = pinch.center.y;
|
||||
imagePage.centerX = pinch.center.x
|
||||
imagePage.centerY = pinch.center.y
|
||||
imageFlickable.returnToBounds()
|
||||
}
|
||||
|
||||
Image {
|
||||
|
@ -148,9 +146,9 @@ Page {
|
|||
fillMode: Image.PreserveAspectFit
|
||||
asynchronous: true
|
||||
|
||||
visible: status === Image.Ready ? true : false
|
||||
visible: opacity > 0
|
||||
opacity: status === Image.Ready ? 1 : 0
|
||||
Behavior on opacity { NumberAnimation {} }
|
||||
Behavior on opacity { FadeAnimation {} }
|
||||
onScaleChanged: {
|
||||
var newWidth = singleImage.width * singleImage.scale;
|
||||
var newHeight = singleImage.height * singleImage.scale;
|
||||
|
@ -175,8 +173,18 @@ Page {
|
|||
imagePage.oldCenterY = imagePage.centerY;
|
||||
}
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
visible: singleImage.visible
|
||||
|
||||
onClicked: imageOnly = !imageOnly // Toggle "Image only" mode on tap
|
||||
onDoubleClicked: ; // This introduces a delay before onClicked is invoked
|
||||
}
|
||||
}
|
||||
|
||||
ScrollDecorator { flickable: imageFlickable }
|
||||
}
|
||||
}
|
||||
|
||||
Image {
|
||||
|
@ -191,7 +199,7 @@ Page {
|
|||
asynchronous: true
|
||||
|
||||
fillMode: Image.PreserveAspectFit
|
||||
opacity: 0.15
|
||||
opacity: visible ? 0.15 : 0
|
||||
Behavior on opacity { FadeAnimation {} }
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue