blob: 0df51d4e0fdf4a6819d8b9971a2a2e8c4d15acb4 (
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
39
40
41
42
43
44
45
46
47
|
class Elm.Route extends Efl.Ui.Widget implements Efl.Ui.Legacy
{
[[Elementary route class]]
legacy_prefix: elm_route;
eo_prefix: elm_obj_route;
methods {
@property emap {
set {
[[Set map widget for this route]]
}
values {
emap: void_ptr; [[Elementary map widget]]
}
}
@property longitude_min_max {
get {
[[Get the minimum and maximum values along the longitude.
Note: If only one value is needed, the other pointer can be
passed as null.
]]
}
values {
min: double; [[Pointer to store the minimum value.]]
max: double; [[Pointer to store the maximum value.]]
}
}
@property latitude_min_max {
get {
[[Get the minimum and maximum values along the latitude.
Note: If only one value is needed, the other pointer can be
passed as null.
]]
}
values {
min: double; [[Pointer to store the minimum value.]]
max: double; [[Pointer to store the maximum value.]]
}
}
}
implements {
class.constructor;
Efl.Object.constructor;
Efl.Ui.Widget.theme_apply;
}
}
|