blob: 1b06edae7874340b12c2e77866599718a1473b25 (
plain) (
blame)
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
|
mixin Efl.Access.Image ()
{
[[Accessible image mixin]]
data: null;
methods {
@property extents @protected @beta {
[[Gets an image extents.]]
get @pure_virtual {
}
keys {
screen_coords: bool; [[$true if we got the screen coordinates, $false otherwise]]
}
values {
x: int; [[X coordinate]]
y: int; [[Y coordinate]]
width: int; [[Image width]]
height: int; [[Image height]]
}
}
@property description @protected @beta {
[[Textual description of image]]
get {
}
set {
}
values {
description: string; [[Textual image description]]
}
}
@property locale @protected @beta {
[[Gets locale of the image description.]]
get {
}
values {
locale: string; [[Locale of description]]
}
}
}
}
|