summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_access_image.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_access_image.eo')
-rw-r--r--src/lib/elementary/efl_access_image.eo39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/lib/elementary/efl_access_image.eo b/src/lib/elementary/efl_access_image.eo
deleted file mode 100644
index 18b2bb111d..0000000000
--- a/src/lib/elementary/efl_access_image.eo
+++ /dev/null
@@ -1,39 +0,0 @@
-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 have the screen coordinates, otherwise $false]]
- }
- 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]]
- }
- }
- }
-}