blob: 7329a70e94a5b6ba6b4f617f409dd634e9de88d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
import QtQuick
import QtQuick.Templates as T
T.Action {
text: qsTr("Cut")
icon.name: "edit-cut"
// A few styles use these values, so set them as our default
// so that they can simply use us instead of defining their own actions.
icon.width: 24
icon.height: 24
// This ensures that QIOSMenu::filterFirstResponderActions filters out any
// duplicate actions (at least when QT_NO_SHORTCUT is not defined).
shortcut: StandardKey.Cut
// If the control has no cut property, Qt was built without clipboard support.
enabled: !control.readOnly && control.selectedText.length > 0 && control.hasOwnProperty("cut")
onTriggered: control.cut()
// Can't be T.Control because otherwise it would fail to assign TextField/TextArea to it,
// and we'd need TextFieldCutAction and TextAreaCutAction.
required property var control
}
|