efl/src/lib/elementary/elm_interface_atspi_image.eo

41 lines
845 B
Plaintext
Raw Normal View History

mixin Elm.Interface.Atspi_Image ()
{
legacy_prefix: null;
eo_prefix: elm_interface_atspi_image;
data: null;
2015-05-07 09:32:53 -07:00
methods {
@property extents @protected {
get @virtual_pure {
2015-08-07 06:30:44 -07:00
[[Gets an image extents.]]
}
keys {
screen_coords: bool;
}
values {
x: int;
y: int;
width: int;
height: int;
}
}
2015-05-07 09:32:53 -07:00
@property description @protected {
get {
2015-08-07 06:30:44 -07:00
[[Gets textual description of image]]
}
set {
}
values {
description: const(char)*;
}
}
2015-05-07 09:32:53 -07:00
@property locale @protected {
get {
2015-08-07 06:30:44 -07:00
[[Gets locale of the image description.]]
}
values {
locale: const(char)*;
}
}
}
}