55 lines
1.6 KiB
QML
55 lines
1.6 KiB
QML
|
import QtQuick 2.13
|
||
|
import QtQuick.Controls 2.13
|
||
|
import QtQuick.Layouts 1.13
|
||
|
import "../imports"
|
||
|
import "./status"
|
||
|
|
||
|
ModalPopup {
|
||
|
property string selectedImage
|
||
|
signal cropFinished(aX: int, aY: int, bX: int, bY: int)
|
||
|
|
||
|
id: cropImageModal
|
||
|
width: image.width + 50
|
||
|
height: image.height + 170
|
||
|
title: qsTr("Crop your image (optional)")
|
||
|
|
||
|
Image {
|
||
|
id: image
|
||
|
width: 400
|
||
|
source: cropImageModal.selectedImage
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
fillMode: Image.PreserveAspectFit
|
||
|
}
|
||
|
|
||
|
ImageCropper {
|
||
|
id: imageCropper
|
||
|
x: image.x
|
||
|
y: image.y
|
||
|
image: image
|
||
|
}
|
||
|
|
||
|
footer: StatusButton {
|
||
|
id: doneBtn
|
||
|
text: qsTr("Finish")
|
||
|
anchors.right: parent.right
|
||
|
anchors.bottom: parent.bottom
|
||
|
onClicked: {
|
||
|
const aXPercent = imageCropper.selectorRectangle.x / image.width
|
||
|
const aYPercent = imageCropper.selectorRectangle.y / image.height
|
||
|
const bXPercent = (imageCropper.selectorRectangle.x + imageCropper.selectorRectangle.width) / image.width
|
||
|
const bYPercent = (imageCropper.selectorRectangle.y + imageCropper.selectorRectangle.height) / image.height
|
||
|
|
||
|
|
||
|
const aX = Math.round(aXPercent * image.sourceSize.width)
|
||
|
const aY = Math.round(aYPercent * image.sourceSize.height)
|
||
|
|
||
|
const bX = Math.round(bXPercent * image.sourceSize.width)
|
||
|
const bY = Math.round(bYPercent * image.sourceSize.height)
|
||
|
|
||
|
cropImageModal.cropFinished(aX, aY, bX, bY)
|
||
|
cropImageModal.close()
|
||
|
}
|
||
|
}
|
||
|
}
|