2022-10-26 19:57:41 +03:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
import QtQuickDesignerTheme
|
|
|
|
|
import HelperWidgets as HelperWidgets
|
|
|
|
|
import StudioControls as StudioControls
|
|
|
|
|
import StudioTheme as StudioTheme
|
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
id: root
|
|
|
|
|
|
|
|
|
|
// Called also from C++ to close context menu on focus out
|
|
|
|
|
function closeContextMenu()
|
|
|
|
|
{
|
|
|
|
|
materialsView.closeContextMenu()
|
|
|
|
|
texturesView.closeContextMenu()
|
|
|
|
|
environmentsView.closeContextMenu()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Called from C++
|
|
|
|
|
function clearSearchFilter()
|
|
|
|
|
{
|
|
|
|
|
searchBox.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Column {
|
|
|
|
|
id: col
|
|
|
|
|
y: 5
|
|
|
|
|
spacing: 5
|
|
|
|
|
|
|
|
|
|
StudioControls.SearchBox {
|
|
|
|
|
id: searchBox
|
|
|
|
|
|
|
|
|
|
width: root.width
|
2022-11-29 16:56:08 +02:00
|
|
|
enabled: {
|
|
|
|
|
if (tabBar.currIndex == 0) { // Materials tab
|
|
|
|
|
materialsModel.matBundleExists
|
|
|
|
|
&& rootView.hasMaterialLibrary
|
|
|
|
|
&& materialsModel.hasRequiredQuick3DImport
|
|
|
|
|
} else { // Textures / Environments tabs
|
|
|
|
|
texturesModel.texBundleExists
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-26 19:57:41 +03:00
|
|
|
|
|
|
|
|
onSearchChanged: (searchText) => {
|
|
|
|
|
rootView.handleSearchFilterChanged(searchText)
|
|
|
|
|
|
|
|
|
|
// make sure categories with matches are expanded
|
|
|
|
|
materialsView.expandVisibleSections()
|
2022-11-29 16:29:31 +02:00
|
|
|
texturesView.expandVisibleSections()
|
|
|
|
|
environmentsView.expandVisibleSections()
|
2022-10-26 19:57:41 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UnimportBundleMaterialDialog {
|
|
|
|
|
id: confirmUnimportDialog
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ContentLibraryTabBar {
|
|
|
|
|
id: tabBar
|
|
|
|
|
// TODO: update icons
|
|
|
|
|
tabsModel: [{name: qsTr("Materials"), icon: StudioTheme.Constants.gradient},
|
|
|
|
|
{name: qsTr("Textures"), icon: StudioTheme.Constants.materialPreviewEnvironment},
|
|
|
|
|
{name: qsTr("Environments"), icon: StudioTheme.Constants.translationSelectLanguages}]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StackLayout {
|
|
|
|
|
width: root.width
|
|
|
|
|
height: root.height - y
|
|
|
|
|
currentIndex: tabBar.currIndex
|
|
|
|
|
|
|
|
|
|
ContentLibraryMaterialsView {
|
|
|
|
|
id: materialsView
|
|
|
|
|
|
|
|
|
|
width: root.width
|
|
|
|
|
|
|
|
|
|
searchBox: searchBox
|
|
|
|
|
|
|
|
|
|
onUnimport: (bundleMat) => {
|
2022-11-21 16:12:54 +02:00
|
|
|
confirmUnimportDialog.targetBundleMaterial = bundleMat
|
|
|
|
|
confirmUnimportDialog.open()
|
2022-10-26 19:57:41 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ContentLibraryTexturesView {
|
|
|
|
|
id: texturesView
|
|
|
|
|
|
|
|
|
|
width: root.width
|
|
|
|
|
model: texturesModel
|
|
|
|
|
|
|
|
|
|
searchBox: searchBox
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ContentLibraryTexturesView {
|
|
|
|
|
id: environmentsView
|
|
|
|
|
|
|
|
|
|
width: root.width
|
|
|
|
|
model: environmentsModel
|
|
|
|
|
|
|
|
|
|
searchBox: searchBox
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|