summaryrefslogtreecommitdiff
path: root/src/lib/elm_interface_atspi_image.eo
blob: b897ff998debbe2ccbdc821407e697938feae7b8 (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
mixin Elm.Interface_Atspi_Image ()
{
   legacy_prefix: null;
   eo_prefix: elm_interface_atspi_image;
   data: null;
   methods {
      @property extents @protected {
         get {
            [[Gets an image extents.]]
         }
         keys {
            screen_coords: bool;
         }
         values {
            x: int;
            y: int;
            width: int;
            height: int;
         }
      }
      @property description @protected {
         get {
            [[Gets textual description of image]]
         }
         set {
         }
         values {
            description: const(char)*;
         }
      }
      @property locale @protected {
         get {
            [[Gets locale of the image description.]]
         }
         values {
            locale: const(char)*;
         }
      }
   }
   implements {
      @virtual .extents.get;
   }
}