summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_canvas_image.eo
blob: 759612b8ede1e1167812a5bf447744779cfd9815 (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
class Efl.Canvas.Image (Efl.Canvas.Image.Internal, Efl.Gfx.Buffer,
                        Efl.Image.Load, Efl.Image.Animated,
                        Efl.File)
{
   [[Low-level Image object.

     This replaces the legacy Evas Object Image, with only image-related
     interfaces: file and data images only. This object does not implement
     any special features such as proxy, snapshot or GL.
   ]]
   data: null;
   implements {
      Efl.Gfx.Buffer.buffer_managed_get;
      Efl.Gfx.Buffer.buffer_managed_set;
      Efl.Gfx.Buffer.buffer_copy_set;
      Efl.Gfx.Buffer.buffer_size { get; }
      Efl.Gfx.Buffer.buffer_map;
      Efl.Gfx.Buffer.buffer_unmap;
      Efl.File.file { get; set; }
      Efl.File.mmap { get; set; }
      Efl.Image.Animated.animated { get; }
      Efl.Image.Animated.animated_frame { get; set; }
      Efl.Image.Animated.animated_frame_count { get; }
      Efl.Image.Animated.animated_loop_type { get; }
      Efl.Image.Animated.animated_loop_count { get; }
      Efl.Image.Animated.animated_frame_duration { get; }
      Efl.Image.Load.load_error { get; }
      Efl.Image.Load.load_async_start;
      Efl.Image.Load.load_async_cancel;
      Efl.Image.Load.load_dpi { get; set; }
      Efl.Image.Load.load_size { get; set; }
      Efl.Image.Load.load_orientation { get; set; }
      Efl.Image.Load.load_scale_down { get; set; }
      Efl.Image.Load.load_skip_header { get; set; }
      Efl.Image.Load.load_region { get; set; }
      Efl.Image.Load.load_region_support { get; }
      Efl.Image.Load.load_state { get; }
   }
}