This is the safe wrapper for gtk-layer-shell, automatically generated from its .gir file. The unsafe bindings can be found here.
Have a look at the simple example to see how the bindings can be used. It works analogous to the original. You can use the features to select the version of gtk-layer-shell. Currently v0_6 is the default.
Generating the wrapper yourself is not necessary to be able to use it. You can just use the version published on crates.io. If you want to do it anyways, you need to start by generating the unsafe bindings. Follow the guide on how to do that and come back here.
Now that you have generated the bindings you will want to generate the safe wrapper.
bash
cd gtk-layer-shell
gir -o .
cargo build
cargo test
There should not have been any errors.
To make sure everything you need was created, run the following command.
bash
gir -o . -m not_bound
There should not be any output to this command. Let me know if there is so I can fix it.
In order to build the documentation, you have to run
gir -c Gir.toml -d ../gir-files --doc-target-path docs.md -m doc
cargo install rustdoc-stripper
rustdoc-stripper -s -n
rustdoc-stripper -g -o docs.md
cargo doc
Congratulations, you've done it :-)
If you want to learn more about gir, have a look at its repo or its book.
If you come from a previous version, there is no need for you to do anything if you use version v06 of the C library. If you use an older version, you need to deactivate the default features and use the feature matching the version you are using. - Docs are properly added and it builds on docs.rs - No more manual edits to generated files of this crate needed - Updated dependencies - gtklayergetzwlrlayersurfacev1 function is no longer ignored but properly generated and can be used in the sys and wrapper crate - The default version of the C library is now v06. Turn off the default feature and select the feature you need, if you use an older version - Added workflows to automate updates so I don't need to actively do much :-)
Pull requests are very welcome :)