2023-10-19 19:21:31 +03:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
import HelperWidgets as HelperWidgets
|
|
|
|
|
import StudioControls as StudioControls
|
|
|
|
|
import StudioTheme as StudioTheme
|
|
|
|
|
import AssetsLibraryBackend
|
|
|
|
|
|
|
|
|
|
StudioControls.Dialog {
|
|
|
|
|
id: root
|
|
|
|
|
|
|
|
|
|
title: qsTr("Save Effect")
|
|
|
|
|
|
|
|
|
|
closePolicy: Popup.CloseOnEscape
|
|
|
|
|
modal: true
|
|
|
|
|
implicitWidth: 250
|
2023-11-09 14:34:42 +02:00
|
|
|
implicitHeight: 160
|
2023-10-19 19:21:31 +03:00
|
|
|
|
2023-11-09 14:34:42 +02:00
|
|
|
property string compositionName: ""
|
2023-11-08 16:12:35 +02:00
|
|
|
|
2023-10-19 19:21:31 +03:00
|
|
|
onOpened: {
|
2023-11-14 14:49:42 +02:00
|
|
|
nameText.text = compositionName //TODO: Generate unique name
|
2023-11-09 14:34:42 +02:00
|
|
|
emptyText.text = ""
|
2023-10-19 19:21:31 +03:00
|
|
|
nameText.forceActiveFocus()
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-09 14:34:42 +02:00
|
|
|
contentItem: Item {
|
|
|
|
|
Column {
|
|
|
|
|
spacing: 2
|
2023-10-19 19:21:31 +03:00
|
|
|
|
2023-11-09 14:34:42 +02:00
|
|
|
Row {
|
|
|
|
|
id: row
|
|
|
|
|
Text {
|
|
|
|
|
text: qsTr("Effect name: ")
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
color: StudioTheme.Values.themeTextColor
|
|
|
|
|
}
|
2023-10-19 19:21:31 +03:00
|
|
|
|
2023-11-09 14:34:42 +02:00
|
|
|
StudioControls.TextField {
|
|
|
|
|
id: nameText
|
|
|
|
|
|
|
|
|
|
actionIndicator.visible: false
|
|
|
|
|
translationIndicator.visible: false
|
|
|
|
|
|
|
|
|
|
onTextChanged: {
|
|
|
|
|
let errMsg = ""
|
|
|
|
|
if (/[^A-Za-z0-9_]+/.test(text))
|
|
|
|
|
errMsg = qsTr("Name contains invalid characters.")
|
|
|
|
|
else if (!/^[A-Z]/.test(text))
|
|
|
|
|
errMsg = qsTr("Name must start with a capital letter")
|
|
|
|
|
else if (text.length < 3)
|
|
|
|
|
errMsg = qsTr("Name must have at least 3 characters")
|
|
|
|
|
else if (/\s/.test(text))
|
|
|
|
|
errMsg = qsTr("Name cannot contain white space")
|
|
|
|
|
|
|
|
|
|
emptyText.text = errMsg
|
|
|
|
|
btnSave.enabled = errMsg.length === 0
|
|
|
|
|
}
|
|
|
|
|
Keys.onEnterPressed: btnSave.onClicked()
|
|
|
|
|
Keys.onReturnPressed: btnSave.onClicked()
|
|
|
|
|
Keys.onEscapePressed: root.reject()
|
2023-10-19 19:21:31 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-09 14:34:42 +02:00
|
|
|
Text {
|
|
|
|
|
id: emptyText
|
2023-10-19 19:21:31 +03:00
|
|
|
|
2023-11-09 14:34:42 +02:00
|
|
|
color: StudioTheme.Values.themeError
|
|
|
|
|
anchors.right: row.right
|
|
|
|
|
}
|
2023-10-19 19:21:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Row {
|
|
|
|
|
anchors.right: parent.right
|
2023-11-09 14:34:42 +02:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
|
spacing: 2
|
2023-10-19 19:21:31 +03:00
|
|
|
|
|
|
|
|
HelperWidgets.Button {
|
|
|
|
|
id: btnSave
|
|
|
|
|
|
|
|
|
|
text: qsTr("Save")
|
|
|
|
|
enabled: nameText.text !== ""
|
2023-11-08 16:12:35 +02:00
|
|
|
onClicked: {
|
2023-11-24 15:36:40 +02:00
|
|
|
if (btnSave.enabled) {
|
|
|
|
|
root.compositionName = nameText.text
|
|
|
|
|
root.accept() //TODO: Check if name is unique
|
|
|
|
|
}
|
2023-11-08 16:12:35 +02:00
|
|
|
}
|
2023-10-19 19:21:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HelperWidgets.Button {
|
|
|
|
|
text: qsTr("Cancel")
|
|
|
|
|
onClicked: root.reject()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|