summaryrefslogtreecommitdiff
path: root/src/lib/eldbus/eldbus_model_proxy.eo
blob: 31221ca742f2f2929e2495da1f1ea9693b0fbab6 (plain)
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
import eldbus_types;

class Eldbus.Model.Proxy (Efl.Object, Efl.Model) {
    [[Eldbus model proxy class]]

    methods {
        constructor {
            [[Custom Eldbus_Model_Proxy constructor.

              @since 1.16]]
            params {
                @in object: ptr(Eldbus.Object); [[Eldbus object]]
                @cref interface: Eldbus.Introspection.Interface; [[The introspected interface]]
            }
        }
    @property name {
            [[Proxy name]]
            get {}
            values {
                name: string; [[Proxy name]]
            }
        }
    }
    implements {
        Efl.Object.constructor;
        Efl.Object.destructor;
        Efl.Model.properties { get; }
        Efl.Model.property_set;
        Efl.Model.property_get;
        Efl.Model.child_add;
        Efl.Model.child_del;
        Efl.Model.children_slice_get;
        Efl.Model.children_count_get;
    }
    constructors {
        .constructor;
    }
}