书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 770 个相关结果.
  • Introduction to editor development

    Introduction to editor development Technical choices Directory structure Editor dependencies in scene/ files Development tips Introduction to editor development On this pa...
  • Introduction to editor development

    Introduction to editor development Technical choices Directory structure Editor dependencies in scene/ files Development tips Introduction to editor development On this pa...
  • Event Filter

    Event Filter Motivation Design Practical Example Event Filter Motivation An Event Filter is a special Controller that encapsulates redirection of the UIevent flow: it int...
  • Simple Simulation

    395 2021-10-08 《Qt6 QML Book》
    Simple Simulation Simple Simulation Let us have a look at a very simple simulation to get started. Qt Quick makes it actually very simple to get started with particle rendering....
  • Introduction to editor development

    Introduction to editor development Technical choices Directory structure Editor dependencies in scene/ files Development tips Introduction to editor development On this pag...
  • Deprecations and removals

    Deprecations and removals Deprecated features PILLOW_VERSION constant ImageCms.CmsProfile attributes Removed features Python 2.7 Image.del PIL.*ImagePlugin.version attribute...
  • 模型及对象属性

    模型对象及属性 识别属性概述 识别属性的注意点 对象名称与控件名称? 标识属性和其它属性? 识别属性及分类 一. 通用识别属性 text type className boundingRectangle 二. 辅助识别属性 三. 特有识别属性 itemIndex itemPath 在代码中使用识别属性 模型对象及属性 模...
  • Building Krita from Source

    829 2021-08-20 《Krita 4.4 文档》
    Building Krita from Source Building on Linux Preparing your development environment Getting the Source Code Configuring the Build Installing Running Krita Updating Trouble Sh...
  • 贪吃蛇游戏(2)

    2114 2019-05-26 《Qt 学习之路 2》
    下面我们继续上一章的内容。在上一章中,我们已经完成了地图的设计,当然是相当简单的。在我们的游戏中,另外的主角便是蛇和食物。下面我们便开始这部分的开发。 我们的地图是建立在QGraphicsScene 的基础之上的,所以,里面的对象应该是QGraphicsItem 实例。通常,我们会把所有的图形元素(这里便是游戏中需要的对象,例如蛇、食物等)设计为QGra...
  • 进程

    1784 2019-05-26 《Qt 学习之路 2》
    进程是操作系统的基础之一。一个进程可以认为是一个正在执行的程序。我们可以把进程当做计算机运行时的一个基础单位。关于进程的讨论已经超出了本章的范畴,现在我们假定你是了解这个概念的。 在 Qt 中,我们使用QProcess 来表示一个进程。这个类可以允许我们的应用程序开启一个新的外部程序,并且与这个程序进行通讯。下面我们用一个非常简单的例子开始我们本章有关进...