efl/src/lib/elementary/elm_route.eo

50 lines
1.3 KiB
Plaintext

class Elm.Route (Elm.Widget)
{
legacy_prefix: elm_route;
eo_prefix: elm_obj_route;
methods {
@property emap {
set {
[[No description supplied by the EAPI.]]
}
values {
emap: void_ptr;
}
}
@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.Canvas.Group.group_add;
Efl.Canvas.Group.group_del;
Elm.Widget.theme_apply;
}
}