summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_route.eo
blob: 52340054fab5a8639c123780c4398c5d46ac54a0 (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 (Elm.Widget)
{
   [[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;
      Elm.Widget.theme_apply;
   }
}