书栈网 · BookStack 本次搜索耗时 0.029 秒,为您找到 771 个相关结果.
  • Using FileIO

    613 2021-10-08 《Qt6 QML Book》
    Using FileIO The Application Window Using Actions Formatting the Table Reading Data Writing Data Finishing Touch Using FileIO Now we can use our newly created file to acce...
  • JsonModel

    JsonModel JsonModel class JsonModel : public QAbstractItemModel Public Functions explicit JsonModel(QObject *parent = nullptr) bool load(QIODevice *device) bool loa...
  • Configuring an IDE

    Configuring an IDE Configuring an IDE We assume that you have already cloned and compiled Godot. You can easily develop Godot with any text editor and by invoking scons on t...
  • 配置 IDE

    配置 IDE 配置 IDE 假设你已经 克隆 并 编译 了Godot. 您可以使用任何文本编辑器和通过在命令行上调用 scons 来轻松开发Godot,但是如果您要使用IDE(集成开发环境),则有一些常用的设置说明: Android Studio CLion Code::Blocks KDevelop Qt Creator Vi...
  • 总结(Summary)

    总结(Summary) 总结(Summary) Qt的媒体应用程序接口提供了播放和捕捉视频和音频的机制。通过VideoOutput元素,视频源能够在我们的用户界面上显示。通过MediaPlayer元素,可以操作大多数的播放,SoundEffect被用于低延迟的声音。Camera元素被用来截图或者显示一个实时的视频流。
  • 客户端 TLS

    客户端 TLS 客户端 TLS EMQX 通过 MQTT-Client-Examples (opens new window) Git 仓库提供了 MQTT 客户端库接入示例和工程项目代码,TLS 接入在对应的 example 中提供: Android (opens new window) Csharp-MqttNet (opens new w...
  • Canvas

    1943 2019-05-26 《Qt 学习之路 2》
    形状 API 渐变 阴影 图像 在 QML 刚刚被引入到 Qt 4 的那段时间,人们往往在讨论 Qt Quick 是不是需要一个椭圆组件。由此,人们又联想到,是不是还需要其它的形状?这种没玩没了的联想导致了一个最直接的结果:除了圆角矩形,Qt Quick 什么都没有提供,包括椭圆。如果你需要一个椭圆,那就找个图片,或者干脆自己用 C++ 写一个吧(...
  • Configuring an IDE

    Configuring an IDE Configuring an IDE We assume that you have already cloned and compiled Godot. You can easily develop Godot with any text editor and by invoking scons on ...
  • Smart UI

    Smart-UI: A single class with many responsibilities Smart-UI: A single class with many responsibilities We start this exploration toward MVC with the most trivial and simplisti...
  • 线程和事件循环

    1635 2019-05-26 《Qt 学习之路 2》
    前面一章我们简单介绍了如何使用QThread 实现线程。现在我们开始详细介绍如何“正确”编写多线程程序。我们这里的大部分内容来自于Qt的一篇Wiki文档 ,有兴趣的童鞋可以去看原文。 在介绍在以前,我们要认识两个术语: 可重入的(Reentrant) :如果多个线程可以在同一时刻调用一个类的所有函数,并且保证每一次函数调用都引用一个唯一的数据,就称这...