Crate docs.rs dependency status Build<em>x86 Build</em>aarch64 dependabot status

gtk-layer-shell-sys

These are the unsafe FFI bindings for gtk-layer-shell. They were automatically generated from its .gir file. Unfortunately this crate is GTK3 only because upstream does not yet support GTK4 (https://github.com/wmww/gtk-layer-shell/issues/37).

Usage

These are the unsafe bindings. You most likely want to use the safe wrapper. If you are sure you want the unsafe bindings, you can use the features to select the version of gtk-layer-shell. Default currently is v0_6.

Generating the bindings

Generating the bindings yourself is not necessary to be able to use it. If you want to do it anyways, here are the steps you can follow to generate the bindings yourself.

You need to have Rust, and Gtk3 installed. Clone the repository AND the submodule "gir". bash git clone --recurse-submodules -j8 https://github.com/pentamassiv/gtk-layer-shell-gir.git cd ./gtk-layer-shell-gir Then you need to install gir. bash cd gir cargo install --path . cd .. If you regenerate the binding, because you have a new version of the GtkLayerShell gir file, copy it into the gir files folder. Now you can generate, build and test the bindings. bash cd gtk-layer-shell-sys gir -o . # Regenerate the bindings cargo build # Build the created bindings cargo test # Test the created bindings cd ..

There should not have been any errors. You should now continue and generate the safe wrapper. If you want to learn more about gir, have a look at its repo or its book.

Changelog

0.3.0

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 :-)

Contributing

Pull requests are very welcome :)

License

MIT