forked from qt-creator/qt-creator
122 lines
3.5 KiB
QML
122 lines
3.5 KiB
QML
|
|
// 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
|
||
|
|
enabled: !materialsModel.hasMaterialRoot && materialsModel.hasQuick3DImport
|
||
|
|
|
||
|
|
onSearchChanged: (searchText) => {
|
||
|
|
rootView.handleSearchFilterChanged(searchText)
|
||
|
|
|
||
|
|
// make sure categories with matches are expanded
|
||
|
|
materialsView.expandVisibleSections()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Text {
|
||
|
|
// TODO: only disable the materials section, textures should be available
|
||
|
|
text: {
|
||
|
|
if (materialsModel.hasMaterialRoot)
|
||
|
|
qsTr("<b>Content Library</b> is disabled inside a material component.")
|
||
|
|
else if (!materialsModel.hasQuick3DImport)
|
||
|
|
qsTr("To use <b>Content Library</b>, first add the QtQuick3D module in the <b>Components</b> view.")
|
||
|
|
else
|
||
|
|
""
|
||
|
|
}
|
||
|
|
|
||
|
|
textFormat: Text.RichText
|
||
|
|
color: StudioTheme.Values.themeTextColor
|
||
|
|
font.pixelSize: StudioTheme.Values.mediumFontSize
|
||
|
|
topPadding: 30
|
||
|
|
horizontalAlignment: Text.AlignHCenter
|
||
|
|
wrapMode: Text.WordWrap
|
||
|
|
width: root.width
|
||
|
|
visible: text !== ""
|
||
|
|
}
|
||
|
|
|
||
|
|
UnimportBundleMaterialDialog {
|
||
|
|
id: confirmUnimportDialog
|
||
|
|
}
|
||
|
|
|
||
|
|
ContentLibraryTabBar {
|
||
|
|
id: tabBar
|
||
|
|
|
||
|
|
visible: materialsModel.hasQuick3DImport
|
||
|
|
// 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
|
||
|
|
visible: materialsModel.hasQuick3DImport
|
||
|
|
|
||
|
|
ContentLibraryMaterialsView {
|
||
|
|
id: materialsView
|
||
|
|
|
||
|
|
width: root.width
|
||
|
|
|
||
|
|
searchBox: searchBox
|
||
|
|
|
||
|
|
onUnimport: (bundleMat) => {
|
||
|
|
unimportBundleMaterialDialog.targetBundleMaterial = bundleMat
|
||
|
|
unimportBundleMaterialDialog.open()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
ContentLibraryTexturesView {
|
||
|
|
id: texturesView
|
||
|
|
|
||
|
|
width: root.width
|
||
|
|
model: texturesModel
|
||
|
|
|
||
|
|
searchBox: searchBox
|
||
|
|
}
|
||
|
|
|
||
|
|
ContentLibraryTexturesView {
|
||
|
|
id: environmentsView
|
||
|
|
|
||
|
|
width: root.width
|
||
|
|
model: environmentsModel
|
||
|
|
|
||
|
|
searchBox: searchBox
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|