efl/legacy/elementary/src/lib/elm_interface_atspi_image.eo

44 lines
883 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 {
/*@ Gets an image extents. */
}
keys {
bool screen_coords;
}
values {
int x;
int y;
int width;
int height;
}
}
2015-05-07 09:32:53 -07:00
@property description @protected {
get {
2015-05-11 07:25:29 -07:00
/*@ Gets textual description of image */
}
set {
}
values {
const(char)* description;
}
}
2015-05-07 09:32:53 -07:00
@property locale @protected {
get {
2015-05-11 07:25:29 -07:00
/*@ Gets locale of the image description. */
}
values {
const(char)* locale;
}
}
}
implements {
2014-08-29 03:41:44 -07:00
@virtual .extents.get;
}
}