A convenient bridge between C and a runtime language and more https://gi.readthedocs.io/en/latest/
Go to file
2024-01-05 23:20:13 +01:00
gobject-introspection.spec automatic version update by autodist [release 1.42.0-1mamba;Tue Sep 23 2014] 2024-01-05 23:20:13 +01:00
README.md x86_64: add python-mako build requirement to build g-ir-doc-tool [release 1.40.0-2mamba;Fri May 02 2014] 2024-01-05 23:20:13 +01:00

gobject-introspection

It makes sense to build many kinds of applications using (at least) two different levels and languages. Those being C+GObject, and a managed (GC'd) runtime. C is good for graphics, multimedia, and lower level systems work. However, writing complex software is difficult and error-prone without garbage collection. A managed runtime such as JavaScript, Python, Java, Lua, .NET, Scheme etc. makes a lot of sense for non-fast-path application logic such as configuration, layout, dialogs, etc. Thus, one of the major goals of the GObject introspection project is to be a convenient bridge between these two worlds, and allow you to choose the right tool for the job, rather than being limited inside one or the other. With the introspection project, you can write for example a ClutterActor or GtkWidget subclass in C, and then without any additional work use that class inside JavaScript.