summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_gfx_gradient_linear.eo
blob: b416929e76143b889bf5480ce34f69bef42c4243 (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
interface Efl.Gfx.Gradient.Linear (Efl.Gfx.Gradient)
{
   [[Efl graphics gradient linear interface]]
   methods {
      @property start {
         set {
            [[Sets the start point of this linear gradient.]]
         }
         get {
            [[Gets the start point of this linear gradient.]]
         }
         values {
            x: double; [[X co-ordinate of start point]]
            y: double; [[Y co-ordinate of start point]]
         }
      }
      @property end {
         set {
            [[Sets the end point of this linear gradient.]]
         }
         get {
            [[Gets the end point of this linear gradient.]]
         }
         values {
            x: double; [[X co-ordinate of end point]]
            y: double; [[Y co-ordinate of end point]]
         }
      }
   }
}