DragEvent QML Type
提供有关拖动事件的信息。更多
Import Statement: | import QtQuick |
属性
- accepted : bool
- action : enumeration
- colorData : color
- drag.source : QtObject
- formats : stringlist
- hasColor : bool
- hasHtml : bool
- hasText : bool
- hasUrls : bool
- html : string
- keys : stringlist
- proposedAction : flags
- supportedActions : flags
- text : string
- urls : urllist
- x : real
- y : real
方法
- accept()
- accept(enumeration action)
- acceptProposedAction()
- string getDataAsArrayBuffer(string format)
- string getDataAsString(string format)
详细说明
拖动事件的位置可从x 和y 属性中获得,而keys 属性可确定事件的拖动键source 。
使用hasColor 、hasHtml 、hasText 和hasUrls 属性可确定是否存在特定拖动类型。
使用formats 属性可确定所有提供格式的列表。
可使用colorData,html,text 和urls 属性获取特定拖动类型。
可使用getDataAsString 获取任何可用 mimeType 的字符串版本。
属性文档
accepted : bool |
此属性表示处理程序是否接受拖动事件。
默认值为 true。
action : enumeration |
该属性表示source 对已接受的拖放执行的操作。
拖放操作可以是
常量 | 说明 |
---|---|
Qt.CopyAction | 将数据复制到目标。 |
Qt.MoveAction | 将数据从源移动到目标。 |
Qt.LinkAction | 创建从源到目标的链接。 |
Qt.IgnoreAction | 忽略操作(不对数据做任何操作)。 |
colorData : color |
该属性保存颜色数据(如果有)。
drag.source : QtObject |
该属性保存拖动事件的源。
formats : stringlist |
该属性包含拖动数据中包含的 MIME 类型格式列表。
hasColor : bool |
该属性显示拖动事件是否包含颜色项。
hasHtml : bool |
该属性显示拖动事件是否包含 html 项目。
hasText : bool |
该属性显示拖动事件是否包含文本项目。
hasUrls : bool |
该属性显示拖动事件是否包含一个或多个 url 项目。
html : string |
该属性包含 HTML 数据(如果有)。
keys : stringlist |
该属性包含标识拖动事件数据类型或来源的键列表。
proposedAction : flags |
该属性包含由拖动源提议的actions 集合。
supportedActions : flags |
该属性包含拖动源支持的actions 集合。
text : string |
该属性包含文本数据(如果有)。
urls : urllist |
该属性包含 URL 列表(如有)。
x : real |
该属性包含拖动事件的 x 坐标。
y : real |
该属性包含拖动事件的 Y 坐标。
方法文档
accept() |
accept(enumeration action) |
接受拖动事件。
如果指定了action ,它将覆盖action 属性的值。
acceptProposedAction() |
接受带有proposedAction 的拖动事件。
将给定format 的数据转换为数组缓冲区(ArrayBuffer),该缓冲区可轻松转换为QByteArray 。format 应为formats 属性中包含的数组缓冲区。
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.