上机 Qt5.14.2 编程应用
关于QT
Qt是一个1991年由Qt Company开发的跨平台C++图形用户界面应用程序开发框架。它既可以开发GUI程序,也可用于开发非GUI程序,比如控制台工具和服务器。Qt是面向对象的框架,使用特殊的代码生成扩展(称为元对象编译器(Meta Object Compiler, moc))以及一些宏,Qt很容易扩展,并且允许真正地组件编程。
QT安装
通过Ubuntu进行安装:
打开https://mirrors.tuna.tsinghua.edu.cn/qt/archive/qt/5.14/5.14.2/
下载完成后,执行命令:
$ chmod a+x qt-opensource-linux-x64-5.14.2.run //为安装包执行可执行权限
$ ./qt-opensource-linux-x64-5.14.2.run // 运行安装包安装程序
第一次使用时会需要你注册一个账号,因为是开源软件,所以并不会收费,但需要进行认证。
这里我已经注册完成了,所以显示在登录。如果没有账号,先在下面输入邮箱账号,输入密码,创建一个账号。具体创建过程不再演示。
Next进入到下一个界面。
勾选同意。
勾选上面的组件。
等待安装完成。
安装完成。
示例源代码(alarm)
这里我展示了一些QT官网上闹钟的源代码:
qtquickcontrols2.conf
The following snippet shows how to set the Dark theme in the Material style:
[Controls]
Style=Material
[Material]
Theme=Dark
Accent=Red
main.qml
mainWindow, an ApplicationWindow QML type, is the root item in this app.
ApplicationWindow {
id: window
width: 400
height: 500
visible: true
The ListView alarmListView combines the data from alarmModel with the layout defined in alarmDelegate.
ListView