PySide Binding Generation Tutorial: Module 3 Creating Type System Description: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(No difference)

Revision as of 16:21, 14 January 2015

English French [qt-devnet.developpez.com]

Creating the Type System Description

The type system is a specification that maps a C++ based library onto a corresponding Python module. The specification is a handwritten XML document listing the types that will be available in the generated binding, modifications to classes and function signatures to better suit the target language, and listing the components that should be rejected for the binding.

PySide type system format is described to some extent in the API Extractor Reference [pyside.org] (this format is similar to the one used by QtJambi and QtScript as described in The Qt Jambi Type System [doc.trolltech.com] page). Each Qt module is mapped to it’s own typesystem provided by PySide, i. e. QtCore/typesystem_core.xml, QtGui/typesystem_gui.xml.

Categories: