summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_vg_shape.eo
blob: 6dc846b4200fb84183992fee9ed460ffc05f20d0 (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
40
41
42
43
44
class Efl.VG.Shape (Efl.VG, Efl.Gfx.Shape)
{
   [[Efl vector graphics shape class]]
   legacy_prefix: evas_vg_shape;
   methods {
      @property fill {
      	 [[Fill of the shape object]]
         set {
	 }
	 get {
	 }
	 values {
	    f: Efl.VG; [[Fill object]]
	 }
      }
      @property stroke_fill {
      	 [[Stroke fill of the shape object]]
         set {
	 }
	 get {
	 }
	 values {
	    f: Efl.VG; [[Stroke fill object]]
	 }
      }
      @property stroke_marker {
      	 [[Stroke marker of the shape object]]
         set {
	 }
	 get {
	 }
	 values {
	    m: Efl.VG; [[Stroke marker object]]
	 }
      }
   }
   implements {
      Efl.VG.bounds_get;
      Efl.VG.interpolate;
      Efl.Duplicate.duplicate;
      Efl.Object.constructor;
      Efl.Object.destructor;
   }
}