summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_gfx_gradient_radial.eo
blob: 40a0bf273e0ab6fc7a68ee9eacf6177fae047833 (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
interface Efl.Gfx.Gradient.Radial (Efl.Gfx.Gradient)
{
   [[Efl graphics gradient radial interface]]
   methods {
      @property center {
         set {
            [[Sets the center of this radial gradient.]]
         }
         get {
            [[Gets the center of this radial gradient.]]
         }
         values {
            x: double; [[X co-ordinate of center point]]
            y: double; [[Y co-ordinate of center point]]
         }
      }
      @property radius {
         set {
            [[Sets the center radius of this radial gradient.]]
         }
         get {
            [[Gets the center radius of this radial gradient.]]
         }
         values {
            r: double; [[Center radius]]
         }
      }
      @property focal {
         set {
            [[Sets the focal point of this radial gradient.]]
         }
         get {
            [[Gets the focal point of this radial gradient.]]
         }
         values {
            x: double; [[X co-ordinate of focal point]]
            y: double; [[Y co-ordinate of focal point]]
         }
      }
   }
}