summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/propertyeditor/itemfiltermodel.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/10.0' into qds/devTim Jenßen2023-03-261-1/+1
|\ | | | | | | | | | | | | | | bigger conflicts resolved at: src/plugins/qmldesigner/CMakeLists.txt src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp Change-Id: I08e2a109d8e37cbd77225129854e9e633725bfc7
| * Remove GPL-3.0+ from license identifiersKai Köhne2023-01-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0, this applies only to a hypothetical newer version of GPL, that doesn't exist yet. If such a version emerges, we can still decide to relicense... While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only Change was done by running find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \; Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* | QmlDesigner: Show the material name in the property editorAli Kianian2023-03-011-3/+20
|/ | | | | | | | | | | The material name for the property editor's material field is presented in the following format: MaterialName [MaterialId] Task-number: QDS-8663 Change-Id: I59fdfcb52ecb2ce9a1079ae20b7e2d748bbc1d61 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
* Use SPDX license identifiersLucie Gérard2022-08-261-24/+2
| | | | | | | | | Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* QmlDesigner: Add align and distribute featureHenning Gruendl2019-10-291-0/+5
| | | | | Change-Id: I99c57036c25e4aaf73f2c6014523da5da9d3cd21 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* QmlDesigner: Add ItemFilterModelThomas Hartmann2019-09-301-0/+69
This exposes a model to QML that allows to get a list of all ids of items of a specific type. This allows implementing a combobox that can e.g. set the id of any image element in the file. Change-Id: Ibc825cb5a66c951d29df12676f9433c9232fd8af Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> Reviewed-by: Henning Gründl <henning.gruendl@qt.io>