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::*;
file = "./examples/test.gschema.xml",
id = "io.github.seadve.test"
)] pub struct Settings;
let settings = Settings::new();
settings.setismaximized(true); assert!(settings.is_maximized());
settings.settheme("dark"); asserteq!(settings.theme(), "dark");
settings.setinvalidwords(&["invalid", "words"]); asserteq!(settings.invalidwords(), vec!["invalid", "words"]);
settings.setwindowwidth(30000); asserteq!(settings.windowwidth(), 30000);
settings.setpreferredaudiosource(PreferredAudioSource::DesktopAudio); asserteq!( settings.preferredaudiosource(), PreferredAudioSource::DesktopAudio ); ```
gsettings-macro = "0.1.0"
include_str!
bind_#key writable
, default_#key_value
, user_#key_value
, reset_#key
, connect_#key_writable_changed
variants