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

    768 2021-10-08 《Qt6 QML Book》
    Local files Local files Is it also possible to load local (XML/JSON) files using the XMLHttpRequest. For example a local file named “colors.json” can be loaded using: xhr . ope...
  • Model-View-Delegate

    475 2021-10-08 《Qt6 QML Book》
    Model-View-Delegate Model-View-Delegate As soon as the amount of data goes beyond the trivial, it is no longer feasible to keep a copy of the data with the presentation. This me...
  • MdCharm

    1133 2018-02-25 《Markdown 入门参考》
    MdCharm 介绍 截图 MdCharm 主页: MdCharm 平台: Windows (XP+) Linux费用: 免费、开源技术: Qt 介绍 MdCharm 是一款 Qt 开发的 Markdown 编辑器,支持 Window 和 Linux 平台。是我使用最久的一款 Markdown 编辑器,不过目前已经停止维护。 截图 ...
  • Using the Editor

    527 2021-10-08 《Qt6 QML Book》
    Using the Editor Using the Editor When you open a project or you just created a new project Qt Creator will switch to the edit mode. You should see on the left of your project f...
  • Shader Elements

    426 2021-10-08 《Qt6 QML Book》
    Shader Elements Shader Elements For programming shaders, Qt Quick provides two elements. The ShaderEffectSource and the ShaderEffect . The shader effect applies custom shaders ...
  • 线程和 QObject

    1915 2019-05-26 《Qt 学习之路 2》
    前面两个章节我们从事件循环和线程类库两个角度阐述有关线程的问题。本章我们将深入线程间得交互,探讨线程和QObject 之间的关系。在某种程度上,这才是多线程编程真正需要注意的问题。本文很大部分翻译自文档 ,如果有翻译不当的地方,以文档描述为准。 现在我们已经讨论过事件循环。我们说,每一个 Qt 应用程序至少有一个事件循环,就是调用了QCoreApplic...
  • 保存 XML

    1069 2019-05-26 《Qt 学习之路 2》
    前面几章我们讨论了读取 XML 文档的三种方法。虽然各有千秋,但是 Qt 推荐的是使用QXmlStreamReader 。与此同时,许多应用程序不仅需要读取 XML,还需要写入 XML。为此,Qt 同样提供了三种方法: 使用QXmlStreamWriter ; 构造一个 DOM 树,然后掉其save() 函数; 使用QString 手动生成 XML。 ...
  • Reading arguments from stdin

    Reading arguments from stdin If you need to convert a lot of pages in a batch, and you feel that wkhtmltopdf is a bit too slow to start up, then you should try --read-args-from-s...
  • Modern C++ usage guidelines for the Krita codebase

    789 2021-08-20 《Krita 4.4 文档》
    Modern C++ usage guidelines for the Krita codebase General links about using Modern C++ in Qt Particular Features Type Inference (auto) Range-based for loop General Initializer ...
  • 事件总结

    1518 2019-05-26 《Qt 学习之路 2》
    Qt 的事件是整个 Qt 框架的核心机制之一,也比较复杂。说它复杂,更多是因为它涉及到的函数众多,而处理方法也很多,有时候让人难以选择。现在我们简单总结一下 Qt 中的事件机制。 Qt 中有很多种事件:鼠标事件、键盘事件、大小改变的事件、位置移动的事件等等。如何处理这些事件,实际有两种选择: 所有事件对应一个事件处理函数,在这个事件处理函数中用一个很...