QML
此条目包含指南或教学内容。 (2016年5月25日) |
此条目形似评论,须要清理。 (2016年5月25日) |
QML (Qt Markup Language[3] 或 Qt Meta Language 或 Qt Modeling Language[4]) 是基于JavaScript、宣告式编程的程式语言,用于设计图形使用者介面为主的应用程式。它是Qt Quick,诺基亚开发的使用者介面建立套件的一部分。QML 主要用于行动应用程式,注重于触控输入、流畅的动画(60张/秒)和使用者体验。QML documents 描述元素的物件树。
编程范型 | 编程范型:宣告式编程、脚本语言 |
---|---|
实作者 | Qt发展框架 |
发行时间 | 2009 |
当前版本 |
|
型态系统 | 动态、强型别 |
网站 | [1] |
启发语言 | |
JavaScript、Qt | |
影响语言 | |
Qt |
扩展名 |
.qml |
---|---|
互联网媒体类型 | text/x-qml |
开发者 | Qt Project |
格式类型 | 脚本语言 |
网站 | qt-project |
QML 元素可以透过标准 JavaScript 增强,包括这 inline 和引入.js 档。元素可以也无缝整合和使用 Qt 框架的 C++ 元件扩展。
语言的名称是 QML。runtime的名称是 QQuickView。
语法、语义
编辑基本语法
编辑范例:
import QtQuick 1.0
Rectangle {
id: canvas
width: 200
height: 200
color: "blue"
Image {
id: logo
source: "pics/logo.png"
anchors.centerIn: parent
x: canvas.height / 5
}
}
动画
编辑 Rectangle {
id: rect
width: 120; height: 200
Image {
id: img
source: "pics/qt.png"
x: 60 - img.width/2
y: 0
SequentialAnimation on y {
loops: Animation.Infinite
NumberAnimation { to: 200 - img.height; easing.type: Easing.OutBounce; duration: 2000 }
PauseAnimation { duration: 1000 }
NumberAnimation { to: 0; easing.type: Easing.OutQuad; duration: 1000 }
}
}
}
Qt/C++ 整合
编辑QML 不需要 Qt/C++ 的知识就能使用,但它可以轻松地扩展 Qt。
熟悉的概念
QML 提供直接访问,从以下来自 Qt 的概念:
- QAction – action 类型
- QObject signals and slots – 作为在 JavaScript 中调用的函数
- QObject properties – 作为 JavaScript 中的变数
- QWidget – QDeclarativeView 是一个 QML-displaying widget
- Q*Model – 直接用在资料绑定 (如 QAbstractItemModel)
Qt 信号处理式
编辑 MouseArea {
onPressed: console.log("mouse button pressed")
}
操作方法
编辑开发工具
编辑由于 QML 和 Javascript 的语法相似,大多数支持 Javascript 的编辑器均可编辑 QML。但是从 Qt Creator 的 2.1 版本开始,该 IDE 提供了完整的语法高亮、代码补全、内建帮助和所见即所得编辑器。在商业版本的 Creator 中,所见即所得编辑器还会提供更多的功能。
参考资料
编辑- ^ Qt 6.4 Released. 2022年9月29日.
- ^ Qt 5.14.1 Released. 2020-01-27 [2020-03-10]. (原始内容存档于2020-04-08).
- ^ Qt 4.8: QML Tutorial. [2013-10-31]. (原始内容存档于2013-11-02).
- ^ Henrik Hartz (Product Manager for Qt Software at Nokia) comment on the name. 24 August 2009 [2011-06-14]. (原始内容存档于2011-07-23).