2022-05-26 15:46:02 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import QtQuick.Controls 2.14
|
|
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
import QtGraphicalEffects 1.13
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Layout 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Controls.Validators 0.1
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property alias source: editor.source
|
|
|
|
property alias cropRect: editor.cropRect
|
2023-04-25 09:40:00 +00:00
|
|
|
property alias imageData: editor.dataImage
|
2022-05-26 15:46:02 +00:00
|
|
|
|
2023-06-26 11:44:56 +00:00
|
|
|
readonly property bool hasSelectedImage: localAppSettings.testEnvironment ? true : editor.userSelectedImage
|
|
|
|
|
2023-01-26 08:41:07 +00:00
|
|
|
implicitHeight: layout.childrenRect.height
|
2022-05-26 15:46:02 +00:00
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: layout
|
|
|
|
|
2023-02-02 10:25:07 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2022-05-26 15:46:02 +00:00
|
|
|
spacing: 8
|
|
|
|
|
|
|
|
StatusBaseText {
|
|
|
|
text: qsTr("Community logo")
|
|
|
|
font.pixelSize: 15
|
|
|
|
color: Theme.palette.directColor1
|
|
|
|
}
|
|
|
|
|
|
|
|
EditCroppedImagePanel {
|
|
|
|
id: editor
|
|
|
|
|
|
|
|
Layout.preferredWidth: 128
|
|
|
|
Layout.preferredHeight: Layout.preferredWidth / aspectRatio
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
|
|
|
|
imageFileDialogTitle: qsTr("Choose an image as logo")
|
|
|
|
title: qsTr("Community logo")
|
2022-08-09 07:08:33 +00:00
|
|
|
acceptButtonText: qsTr("Make this my Community logo")
|
2022-05-26 15:46:02 +00:00
|
|
|
|
|
|
|
NoImageUploadedPanel {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
|
|
|
visible: !editor.userSelectedImage && !root.imageData
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|