2023-08-17 15:59:46 +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 QtQuickDesignerTheme
|
|
|
|
|
import HelperWidgets as HelperWidgets
|
|
|
|
|
import StudioControls as StudioControls
|
|
|
|
|
import StudioTheme 1.0 as StudioTheme
|
|
|
|
|
import EffectMakerBackend
|
|
|
|
|
|
|
|
|
|
HelperWidgets.Section {
|
|
|
|
|
id: root
|
|
|
|
|
|
2023-08-21 11:52:11 +03:00
|
|
|
caption: nodeName
|
2023-08-17 15:59:46 +03:00
|
|
|
category: "EffectMaker"
|
|
|
|
|
|
|
|
|
|
Column {
|
2023-08-21 11:52:11 +03:00
|
|
|
spacing: 10
|
|
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
|
model: nodeUniformsModel
|
2023-08-17 15:59:46 +03:00
|
|
|
|
2023-08-21 11:52:11 +03:00
|
|
|
EffectCompositionNodeUniform {
|
|
|
|
|
width: root.width
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-17 15:59:46 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|