书栈网 · BookStack 本次搜索耗时 0.011 秒,为您找到 226 个相关结果.
  • Summary

    384 2021-10-08 《Qt6 QML Book》
    Summary Summary This concludes our chapter about QML networking. Please bear in mind Qt has on the native side a much richer networking API as on the QML side currently. But the...
  • Qt构建模块(Qt Building Blocks)

    Qt构建模块(Qt Building Blocks) 1.3.1 Qt模块(Qt Modules) 1.3.2 支持的平台(Supported Platforms) Qt构建模块(Qt Building Blocks) Qt5是由大量的模块组成的。一个模块通常情况下是一个库,提供给开发者使用。一些模块是强制性用来支持Qt平台的,它们分成一组叫做Q...
  • Hello World

    772 2021-10-08 《Qt6 QML Book》
    Hello World Hello World To test your installation, we will create a small hello world application. Please, open Qt Creator and create a Qt Quick UI Project ( File ‣ New File or ...
  • Plugin Content

    463 2021-10-08 《Qt6 QML Book》
    Plugin Content Plugin Content A plugin is a library with a defined interface, which is loaded on demand. This differs from a library as a library is linked and loaded on startup...
  • 插件内容(Plugin Content)

    插件内容(Plugin Content) 插件内容(Plugin Content) 插件是一个已定义接口的库,它只在需要时才被加载。这与一个库在程序启动时被链接和加载不同。在QML场景下,这个接口叫做QQmlExtensionPlugin 。我们关心其中的两个方法initializeEngine() 和registerTypes() 。当插件被加载时...
  • Summary

    372 2021-10-08 《Qt6 QML Book》
    Summary Summary In this chapter we have looked at Qt Quick Controls 2. They offer a set of elements that provide more high-level concepts than the basic QML elements. For most s...
  • 着色器效果(Shader Effect)

    着色器效果(Shader Effect) 着色器效果(Shader Effect) 注意 最后一次构建:2014年1月20日下午18:00。 这章的源代码能够在assetts folder 找到。 http://labs.qt.nokia.com/2012/02/02/qt-graphical-effects-in-qt-labs/ ...
  • 动态数据(Dynamic Data)

    动态数据(Dynamic Data) 动态数据(Dynamic Data) 动态数据包含了从模型中插入,移除,清除数据等。QAbstractListModel 期望当条目被移除或者插入时有一个明确的行为。这个行为使用一个信号来表示,在操作调用前和调用后调用这个行为。例如向一个模型插入一行数据,你首先需要发送beginInsertRows 信号,然后操...
  • 云服务(Engine IO)

    云服务(Engine IO) 云服务(Engine IO) Engine IO是DIGIA运行的一个web服务。它允许Qt/QML应用程序访问来自Engin.IO的NoSQL存储。这是一个基于云存储对象的Qt/QML接口和一个管理平台。如果你想存储一个QML应用程序的数据到云存储中,它可以提供非常方便的QML/JS的接口。 查看EnginIO 的文...
  • 创建插件(Creating the plugin)

    创建插件(Creating the plugin) 创建插件(Creating the plugin) Qt Creator包含了一个创建QtQuick 2 QML Extension Plugin 向导,我们使用它来创建一个叫做fileio 的插件,这个插件包含了一个从org.example.io 中启动的FileIO 对象。 插件类源于QQm...