aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/ios/impl/DialogButtonBoxDelegate.qml
Commit message (Collapse)AuthorAgeFilesLines
* Set explicit default security level of all files with default securityJan Arve Sæther2025-09-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | The files (folders) already processed are listed in each issue in epic QTBUG-134547 These files were processed half a year ago. In order to make it clear that all of these files are already processed, mark them with an explicit default security header. For the record, this was generated with this script: find -E . -regex ".*\.(cpp|h|hpp|mm|qml|js)$" | xargs python3 ~/bin/add-cra-header.py in the folders listed in each subtask of QTBUG-134547 (add-cra-header.py only exist at my desktop, but it simply adds the default security header if it doesn't already have any existing security header) QUIP: 23 Fixes: QTBUG-134547 Pick-to: 6.10 6.9 6.8 Change-Id: Ieb8c78ea6561fdbdd27c7b13185ece853eedf80f Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
* Controls: replace Qt.styleHints with Application.styleHintsMitch Curtis2024-06-211-3/+3
| | | | | | | | | | | | | | As mentioned in QTBUG-95540, using the latter provides better type information for tooling, and avoids the "this property only exists on the object if Quick has been imported" issue. Replace QtQml import in Fluent style's Config.qml with QtQuick to provide access to the Application type. Fixes: QTBUG-126512 Pick-to: 6.5 6.7 6.8 Change-Id: I4aac22e54f3b522f74acafd467ce22139352c9dd Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Use document imports of QtQuick.Controls.impl, not qmldir-importsMitch Curtis2024-03-151-0/+1
| | | | | | | | | | | | | | | | qmldir-imports are transitive, meaning that we were exposing all types from QtQuick.Controls.impl each time QtQuick.Controls was imported. This patch removes these transitive qmldir-imports by moving the foreign type declarations for QQuickOverlay and QQuickSplitHandleAttached into the Basic style (which is always imported by every style as a final fallback). Task-number: QTBUG-104768 Task-number: QTBUG-123103 Change-Id: Ia0ff778a88a38bb872730e055631dc924456d7be Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* iOS Style: Minor fixes to the control's palettesDoris Verria2023-06-271-2/+1
| | | | | | | | | | | | | | - Use text role instead of windowText for the control text - Don't set a different color for the disabled controls in the QML templates. Instead, set the appropriate color for the disabled group when initializing the palette Task-number: QTBUG-114571 Pick-to: 6.5 6.6 Change-Id: Ifb6c5d06dbbc83fa47fd759c5c49a077a1b3a67a Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
* iOS Style: Update uses of renamed Qt.styleHints.colorScheme propertyDoris Verria2023-02-161-3/+3
| | | | | | | | | | | | | Property was renamed in 32749c913b32e89e2027227233794f2296166cc6. Update some uses of old name. Unblacklist tests that were blacklisted as a result of this. Fixes: QTBUG-111199 Fixes: QTBUG-111210 Pick-to: 6.5 Change-Id: I868382dec8951abb5e708805795b31f6b2144ff1 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* iOS Style: Add Dialog and DialogButtonBoxDoris Verria2023-02-091-0/+68
Pick-to: 6.5 Change-Id: I6899b1438af43a822f3f212a6fd928200c893ee3 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>