Gir.Core is a project which aims to provide C# wrapper for different GObject based libraries like GTK for user interfaces.
For the GObject system there are a lot of libraries which allow to write complete applications with deep system integration on linux. Unfortunately there are only bindings for GtkSharp which are well maintained and they just wrap the low level C-API.
This project aims to provide:
- An API which feels more natural to C# developers and thus simplifies the C-API (including the async/await feature).
- A more complete API surface to integrate deeply with linux via supporting more libraries
- A declarative style of creating GTK UIs. See the sample. (Additionally to the XML and object based possibilities to create UIs).
- An easy way to allow 3rd party developers to integrate into this stack to achieve interoperability between different GObject based libraries.
Currently supported libraries
- GTK (partial support): UI-Toolkit (GTK3 + experimental GTK4)
- GStreamer (partial support): Multimedia Framework
- DBus (partial support): Library for inter-process communication via GIO
- WebKitGTK (planned): Browser-Engine
- JavaScriptCore (planned): Javascript integration for WebKitGTK
- libhandy (planned): Convergent UI-Widgets for GTK to support mobile phones
- libchamplain (planned): Library to display maps
- GdkPixbuf (partial support): Load images in various formats
As we are currently figuring out the best way for this project the code is under heavy development and not ready for production. There is currently no nuget package available.
Anyone who wants to help is very welcome. If you want to get into the project take a look at our Good First Issues or get in contact by starting a Discussion.
We have a matrix room for discussing gir.core. Please join if you'd like to help (or just want to chat!)
https://matrix.to/#/#gircore:matrix.org?via=matrix.org
To build the project locally in debug mode follow these steps:
$ git clone --recursive https://github.com/gircore/gir.core.git
$ cd gir.core/Build
$ dotnet run
There are some options which can be used to influence the code generation:
--release
: Execute the targets with the Release configuration. If not specified the Debug configuration is used.--xml-documentation
: Generate the xml documentation.--comments
: Take over comments from gir file into the wrapper code. Be aware of the LGPL license of the comments.--targets <targets>
: A list of targets to run or list.--version <version>
: Specify the version number of thebuild
.
To get a full list of available options use --help
.
Supported targets are:
generate
: Generates the source code files. Recognizescomments
option.build
: Builds the project withDebug
orRelease
configuration. Recognizesxml-documentation
andversion
option. Depends ongenerate
target.integration
: Builds the integration library.test
: Execute unit tests withDebug
orRelease
configuration. Depends onbuild
.pack
: Packs the libraries into theNuget
folder in the project root. Recognizesversion
option. Depends onbuild
.clean
: Cleanssamples
andbuild
output including generated source code files.samples
: Builds the sample applications withDebug
orRelease
configuration. Depends onbuild
andintegration
.
If no target is specified the build
target is executed.
If you want to clean your debug build just run:
$ dotnet run -- --targets clean
If you want to generate the xml documentation, build the samples and run the test cases in debug mode just run:
$ dotnet run -- --xml-documentation --targets test samples
If you want to build the wrappers in release mode just run
$ dotnet run -- --release
To use the newly build libraries in your project just add a reference to the csproj file of the project you want to use, e.g:
$ dotnet add reference [RepoPath]/Libs/Gtk/Gtk.csproj
The folder structure in this repository is organized like:
- Build: Run the project to generate the libraries. Everything works automatically.
- Generator: Code generator to create the lower API layer
- Samples: Example apps for GTK, gstreamer, ...
- Libs: Contains the libraries
The code in the library folder is not complete because the biggest part of the code gets generated and is only available after a run of the build project.
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.