1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/// Abstract GTK widget basis macro.
///
/// All widget macros utilize this macro to generate required code.
/// The widget macro defines how widgets are defined:
/// ```text
/// widget! {
///     class <a css class string literal>
///     properties <optional the 'keyword' stateful to listen to a locally defined state (see use_state)> {
///         <gtk widget property>: <property value expression>
///         ...
///     }
///     connections {
///         <(store) if the store may be used in the following closure> <connector name>: <closure to call for the signal of the connector>
///         ...
///     }
///     children [
///         <any child expression like another widget macro or a component function>
///     ]
/// }
/// ```
#[macro_export]
macro_rules! widget {
    (
        $widget:ident {
            $(class $class:literal)?
            $(properties $($stateful:ident)? {
                $( $prop:ident: $value:expr )*
            })?
            $(connections {
                $(
                    $( ($store:ident) )? $connector:ident: $connection:expr
                )*
            })?
            $(children [
                $($child:expr)*
            ])?
        }
    ) => {{
        // add children
        $($(
            $widget.add(&$child);
        )*)?

        // set properties
        $(
        {
            let w = $widget.clone();
            let render = move || {
                $(
                match w.set_property(stringify!($prop), &$value) {
                    Err(e) => panic!("Could not set widget property {:?}", e),
                    _ => {},
                }
                )*
            };
              render();
            $(
            $stateful(move || render());
            )?
        }
        )?

        // css class
        $($widget.get_style_context().add_class($class);)?

        // connections
        $($(
            {
                $(let $store = $store.clone();)?
                $widget.$connector($connection);
            }
        )*)?
    }}
}