Note: This is a PRE-ALPHA software. API breakage and bugs are expected. Please report them to the issue tracker. Once this is implemented upstream, this crate will be yanked.

GSettings Macro

Macro for easy GSettings key access

The main purpose of this is to reduce the risk of mistyping a key and reduce boilerplate rust code. Furthermore, the summary and the default of the value is included in the documentation of the getter and setter function. This would be helpful if you use rust-analyzer and would encourage documenting GSchema keys.

Schema like the following

xml <schemalist> <schema path="/io/github/seadve/test/" id="io.github.seadve.test"> <key name="is-maximized" type="b"> <default>false</default> <summary>Window maximized behaviour</summary> <description></description> </key> <key name="theme" type="s"> <default>"light"</default> <summary>Current theme</summary> <description></description> </key> <key name="invalid-words" type="as"> <default>[]</default> <summary>Contains invalid words</summary> <description></description> </key> <key name="window-width" type="i"> <default>600</default> <summary>Window width</summary> <description>Window width</description> </key> <key name="preferred-audio-source" type="s"> <choices> <choice value="microphone"/> <choice value="desktop-audio"/> </choices> <default>"microphone"</default> <summary>Preferred audio source to use in recording audio</summary> <description></description> </key> </schema> </schemalist>

could be accessed with

```rust use gio::prelude::*;

[gsettingsmacro::gensettings(

file = "./examples/test.gschema.xml",
id = "io.github.seadve.test"

)] pub struct Settings;

let settings = Settings::new();

settings .setismaximized(true) .expect("key is not writable"); assert!(settings.is_maximized());

settings .settheme("dark") .expect("key is not writable"); asserteq!(settings.theme(), "dark");

settings .setinvalidwords(&["invalid", "words"]) .expect("key is not writable"); asserteq!(settings.invalidwords(), vec!["invalid", "words"]);

settings .setwindowwidth(30000) .expect("key is not writable"); settings.windowwidth(); asserteq!(settings.windowwidth(), 30_000);

settings .setpreferredaudiosource(PreferredAudioSource::DesktopAudio) .expect("key is not writable"); asserteq!( settings.preferredaudiosource(), PreferredAudioSource::DesktopAudio ); ```

Usage

gsettings-macro = "0.1.0"

Known issues

Todos