diff options
Diffstat (limited to 'src/lib/elementary/elm_route.eo')
-rw-r--r-- | src/lib/elementary/elm_route.eo | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/lib/elementary/elm_route.eo b/src/lib/elementary/elm_route.eo deleted file mode 100644 index 0df51d4e0f..0000000000 --- a/src/lib/elementary/elm_route.eo +++ /dev/null @@ -1,47 +0,0 @@ -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; - } -} |