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

    610 2021-10-08 《Qt6 QML Book》
    A Boilerplate Application A Boilerplate Application The best way to understand Qt is to start from a small example. This application creates a simple "Hello World!" string and ...
  • HTTP请求(HTTP Requests)

    HTTP请求(HTTP Requests) 11.3.1 Flickr调用(Flickr Call) HTTP请求(HTTP Requests) 从c++方面来看,Qt中完成http请求通常是使用QNetworkRequest和QNetworkReply,然后使用Qt/C++将响应推送到集成的QML。所以我们尝试使用QtQuick的工具给我们的网络...
  • Particle Painters

    435 2021-10-08 《Qt6 QML Book》
    Particle Painters Particle Painters Until now we have only used the image based particle painter to visualize particles. Qt comes also with other particle painters: ItemPartic...
  • Canvas(续)

    1601 2019-05-26 《Qt 学习之路 2》
    变换 组合 像素缓存 Canvas 绘制 从 HTML5 移植 变换 Canvas 中的“变形”,主要指的是坐标系的变换,而不是路径的变换。这与 QML 元素变换非常相似,都可以实现坐标系统的scale (缩放)、rotate (旋转)和translate (平移);不同的是,变换的原点是画布原点。例如,如果以一个路径的中心点为定点进行缩放,...
  • Gradients

    375 2021-10-08 《Qt6 QML Book》
    Gradients Gradients Canvas can fill shapes with color but also with gradients or images. onPaint : { var ctx = getContext ( "2d" ) var gradient = ctx . ...
  • Networking

    468 2021-10-08 《Qt6 QML Book》
    Networking Networking Qt 6 comes with a rich set of networking classes on the C++ side. There are for example high-level classes on the HTTP protocol layer in a request-reply fa...
  • 应用程序窗口(The Application Window)

    应用程序窗口(The Application Window) 应用程序窗口(The Application Window) 使用Qt Creator的QtQuick Application向导创建一个基于QtQuick controls的应用程序。我们将不再使用新的QML格式,这在一本书里面将很难解释,即使新格式使用ui.qml文件将比之前更加容易达...
  • Qt通用类(Common Qt Classes)

    Qt通用类(Common Qt Classes) Qt通用类(Common Qt Classes) 类QObject 组成了Qt的基础,但是在这个框架里还有很多的类。在我们继续探寻如何扩展QML之前,我们需要先了解一些有用的Qt基础类。 在这一节中的示例代码需要使用Qt Test库。它提供一种非常好的方法来测试Qt的API并将其存储供以后参考使用。...
  • 网络(Networking)

    网络(Networking) 网络(Networking) Qt5在C++中有丰富的网络相关的类。例如在http协议层上使用请求回答方式的高级封装类如QNetworkRequest,QNetworkReply,QNetworkAccessManageer。也有在TCP/IP或者UDP协议层封装的低级类如QTcpSocket,QTcpServer和QU...
  • Images

    482 2021-10-08 《Qt6 QML Book》
    Images Images The QML canvas supports image drawing from several sources. To use an image inside the canvas the image needs to be loaded first. We use the Component.onCompleted ...