Contributing Coding advices CutterCore class Calling a radare2 command Seek the current file Creating a widget General coding guidelines Coding style Includes Docstrings Loo...
前面两章我们介绍了使用流和 DOM 的方式处理 XML 的相关内容,本章将介绍处理 XML 的最后一种方式:SAX。SAX 是一种读取 XML 文档的标准 API,同 DOM 类似,并不以语言为区别。Qt 的 SAX 类基于 SAX2 的 Java 实现,不过具有一些必要的名称上的转换。相比 DOM,SAX 的实现更底层因而处理起来通常更快。但是,我们前面...
Unix specific topics Linux keyboard input is duplicated How to use middle-click paste on Linux Linux installation Linux Qt build App cannot run on FreeBSD Unix specific to...
An Image Viewer The Desktop Version Moving to Mobile A Shared Codebase Native Dialogs An Image Viewer Let’s look at a larger example of how Qt Quick Controls are used. For t...
Qt 中许多 C++ 类使用了隐式数据共享技术,来最大化资源利用率和最小化拷贝时的资源消耗。当作为参数传递时,具有隐式数据共享的类即安全又高效。在数据传递时,实际上只是传递了数据的指针(这一切都是隐含帮你完成的),而只有在函数发生需要写入的情况时,数据才会被拷贝(也就是通常所说的写时复制)。本章我们将介绍有关隐式数据共享的相关内容,以便为恰当地使用前面所介...
Regular expression support in the where clause of a query is a powerful feature of SQLite . It is a reserved word as part of the language syntax but it is not quite “out of the b...