forked from qt-creator/qt-creator
EffectComposer: Open effectComposerNodes/images by default in UrlChooser
Task-number: QDS-11464 Change-Id: I96bb7e359bd41637f0b1906a523c8a5de190981d Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
This commit is contained in:
@@ -13,6 +13,7 @@ Row {
|
|||||||
|
|
||||||
HelperWidgets.UrlChooser {
|
HelperWidgets.UrlChooser {
|
||||||
backendValue: uniformBackendValue
|
backendValue: uniformBackendValue
|
||||||
|
resourcesPath: EffectComposerBackend.rootView.imagesPath()
|
||||||
|
|
||||||
actionIndicatorVisible: false
|
actionIndicatorVisible: false
|
||||||
comboBox.width: Math.min(parent.width - 70, 300)
|
comboBox.width: Math.min(parent.width - 70, 300)
|
||||||
|
|||||||
@@ -28,6 +28,9 @@ Row {
|
|||||||
// Current item
|
// Current item
|
||||||
property string absoluteFilePath: ""
|
property string absoluteFilePath: ""
|
||||||
|
|
||||||
|
// If this property is set, this path will be opened instead of the default path
|
||||||
|
property string resourcesPath
|
||||||
|
|
||||||
property alias comboBox: comboBox
|
property alias comboBox: comboBox
|
||||||
property alias spacer: spacer
|
property alias spacer: spacer
|
||||||
property alias actionIndicatorVisible: comboBox.actionIndicatorVisible
|
property alias actionIndicatorVisible: comboBox.actionIndicatorVisible
|
||||||
@@ -525,7 +528,7 @@ Row {
|
|||||||
icon: StudioTheme.Constants.addFile
|
icon: StudioTheme.Constants.addFile
|
||||||
iconColor: root.textColor
|
iconColor: root.textColor
|
||||||
onClicked: {
|
onClicked: {
|
||||||
fileModel.openFileDialog()
|
fileModel.openFileDialog(resourcesPath)
|
||||||
if (fileModel.fileName !== "") {
|
if (fileModel.fileName !== "") {
|
||||||
root.backendValue.value = fileModel.fileName
|
root.backendValue.value = fileModel.fileName
|
||||||
root.absoluteFilePath = fileModel.resolve(root.backendValue.value)
|
root.absoluteFilePath = fileModel.resolve(root.backendValue.value)
|
||||||
|
|||||||
@@ -197,6 +197,11 @@ QString EffectComposerWidget::uniformDefaultImage(const QString &nodeName, const
|
|||||||
return m_effectComposerNodesModel->defaultImagesForNode(nodeName).value(uniformName);
|
return m_effectComposerNodesModel->defaultImagesForNode(nodeName).value(uniformName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString EffectComposerWidget::imagesPath() const
|
||||||
|
{
|
||||||
|
return Core::ICore::resourcePath("qmldesigner/effectComposerNodes/images").toString();
|
||||||
|
}
|
||||||
|
|
||||||
QSize EffectComposerWidget::sizeHint() const
|
QSize EffectComposerWidget::sizeHint() const
|
||||||
{
|
{
|
||||||
return {420, 420};
|
return {420, 420};
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ public:
|
|||||||
Q_INVOKABLE QPoint globalPos(const QPoint &point) const;
|
Q_INVOKABLE QPoint globalPos(const QPoint &point) const;
|
||||||
Q_INVOKABLE QString uniformDefaultImage(const QString &nodeName,
|
Q_INVOKABLE QString uniformDefaultImage(const QString &nodeName,
|
||||||
const QString &uniformName) const;
|
const QString &uniformName) const;
|
||||||
|
Q_INVOKABLE QString imagesPath() const;
|
||||||
|
|
||||||
QSize sizeHint() const override;
|
QSize sizeHint() const override;
|
||||||
|
|
||||||
|
|||||||
@@ -114,9 +114,9 @@ QList<FileResourcesItem> FileResourcesModel::model() const
|
|||||||
return m_model;
|
return m_model;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FileResourcesModel::openFileDialog()
|
void FileResourcesModel::openFileDialog(const QString &customPath)
|
||||||
{
|
{
|
||||||
QString resourcePath = m_path.toLocalFile();
|
QString resourcePath = customPath.isEmpty() ? m_path.toLocalFile() : customPath;
|
||||||
bool resourcePathChanged = m_lastResourcePath != resourcePath;
|
bool resourcePathChanged = m_lastResourcePath != resourcePath;
|
||||||
m_lastResourcePath = resourcePath;
|
m_lastResourcePath = resourcePath;
|
||||||
|
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ public:
|
|||||||
|
|
||||||
void refreshModel();
|
void refreshModel();
|
||||||
|
|
||||||
Q_INVOKABLE void openFileDialog();
|
Q_INVOKABLE void openFileDialog(const QString &customPath = {});
|
||||||
Q_INVOKABLE QString resolve(const QString &relative) const;
|
Q_INVOKABLE QString resolve(const QString &relative) const;
|
||||||
Q_INVOKABLE bool isLocal(const QString &path) const;
|
Q_INVOKABLE bool isLocal(const QString &path) const;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user