Gir.Core provides C# bindings for several GObject based libraries like GTK for user interfaces.
This project aims to provide a complete set of APIs for writing rich cross-platform user interfaces and multimedia programs. It is built upon the well-established GObject Introspection framework for language bindings.
- Idiomatic C#: An API which feels natural to C# developers (including the async/await feature).
- Simplicity: Memory management is handled automatically, greatly simplifying the C-API.
- Complete API: Support for the entire GTK and GStreamer stack, enabling feature-rich applications which deeply integrate with the OS.
- Extensibility: Allows 3rd party developers to write bindings for other GObject-based libraries, achieving full interoperability between them.
The code is under active development and certain features may not be available. The API is subject to change as long as version 1.0 is not released. There are nuget packages available. Feel free to visit the nuget organization to get an overview.
In general, you can expect the following features to be available:
- Creation of native structs / records.
- Creation of native
GObject
based classes. - Creation of native enumerations.
- Usage of native
GObject
based interfaces. - Reading / writing properties of native
GObject
based classes. - Receiving signals of native
GObject
based classes. - Retaining state of purely managed
GObject.Object
based subclasses.
Missing features of the generator:
- Overriding of native virtual methods.
- Custom implementations of native
GObject
interfaces. - Fundamental types like
GObject.Paramspec
orGtk.Expression
are only available in parts.
Please be aware that the list of unsupported features should not be considered complete as certain corner cases may not yet be listed. If such a case is encountered a bug report is welcome.
The upcoming features and releases can be checked out in the milestones.
Library | Description |
---|---|
GTK-4.0 | UI-Toolkit |
Libadwaita-1 | Building blocks for modern GNOME applications |
GStreamer-1.0 | Multimedia Framework |
Cairo-1.0 | Graphics Library |
Pango-1.0 | Font/Text Library |
Gio-2.0 | Library for high level application functionality |
GdkPixbuf-2.0 | Image loading in various formats |
WebKit-6.0 | Browser engine (Linux only) |
JavaScriptCore-6.0 | JavaScript engine for WebKit (Linux only) |
GtkSource-5 | Extends a Gtk.TextView to be like a source code editor |
Anyone who wants to help is very welcome. If you want to get in contact feel free to chat with us via matrix (#gircore:matrix.org) or open a discussion and don't forget to check out our contribution guidelines.
To generate the bindings locally execute the following commands in a terminal. Make sure to initialise submodules with --recursive
otherwise the gir-files
directory will not be loaded properly.
$ git clone --recursive https://github.com/gircore/gir.core.git
$ cd gir.core/src
$ dotnet fsi GenerateLibs.fsx
$ dotnet build GirCore.Libs.slnf
If you want to clean the Libs folder of all generated files run:
$ dotnet fsi CleanLibs.fsx
For more advanced build options, see the documentation.
The folder structure in this repository is organized as follows:
- src/Generation/GirTool: The tool to generate the bindings.
- src/Generation/GirLoader: A library for reading and resolving GObject Introspection repositories.
- src/Generation/GirModel: An interface based definition of the GObject data model. Used by the loader and generator to have a common understanding of the GObject data model.
- src/Generation/Generator: Code generator generates C# code from GObject Introspection data.
- src/Extensions/Integration: Optional source generators to reduce boilerplate code in your projects.
- src/Libs: Contains manually written code for libraries. The generator outputs code here.
- src/Samples: Example programs using GTK, GStreamer, and others.
- src/Extensions: Auxilary libraries which extend the core libraries.
- src/Tests: Unit and Integration tests.
- ext/gir-files: Introspection data from gircore/gir-files.
The code in the library folder is not complete because most of the code is generated when the GirTool is run.
Gir.Core is licensed under the terms of the MIT-License. Please see the license file for further information.
The Gir.Core logo is built upon the original GTK logo by Andreas Nilsson which is licensed under the GNU Free Documentation License and was relicensed under CC BY-SA 3.0. Therefore the Gir.Core logo is licensed under the CC BY-SA 3.0, too.
Special thanks go to the people and ogranizations who make this project possible:
- All contributors for donating their time in form of code, feedback and bug reports.
- JetBrains for providing open source licenses of their products.
- GitHub for providing an open source friendly code hosting platform.