efl/src/lib/elementary/elm_route.eo

48 lines
1.3 KiB
Plaintext
Raw Normal View History

class Elm.Route (Efl.Ui.Widget, Efl.Ui.Legacy)
2014-03-26 01:19:34 -07:00
{
[[Elementary route class]]
legacy_prefix: elm_route;
2014-03-26 01:19:34 -07:00
eo_prefix: elm_obj_route;
2015-05-07 09:32:53 -07:00
methods {
@property emap {
2014-03-26 01:19:34 -07:00
set {
[[Set map widget for this route]]
2014-03-26 01:19:34 -07:00
}
values {
emap: void_ptr; [[Elementary map widget]]
2014-03-26 01:19:34 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property longitude_min_max {
2014-03-26 01:19:34 -07:00
get {
2015-07-03 07:54:14 -07:00
[[Get the minimum and maximum values along the longitude.
2014-03-26 01:19:34 -07:00
2015-07-03 07:54:14 -07:00
Note: If only one value is needed, the other pointer can be
passed as null.
]]
2014-03-26 01:19:34 -07:00
}
values {
2015-07-03 07:54:14 -07:00
min: double; [[Pointer to store the minimum value.]]
max: double; [[Pointer to store the maximum value.]]
2014-03-26 01:19:34 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property latitude_min_max {
2014-03-26 01:19:34 -07:00
get {
2015-07-03 07:54:14 -07:00
[[Get the minimum and maximum values along the latitude.
2014-03-26 01:19:34 -07:00
2015-07-03 07:54:14 -07:00
Note: If only one value is needed, the other pointer can be
passed as null.
]]
2014-03-26 01:19:34 -07:00
}
values {
2015-07-03 07:54:14 -07:00
min: double; [[Pointer to store the minimum value.]]
max: double; [[Pointer to store the maximum value.]]
2014-03-26 01:19:34 -07:00
}
}
}
implements {
class.constructor;
Efl.Object.constructor;
Efl.Ui.Widget.theme_apply;
2014-03-26 01:19:34 -07:00
}
}