summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_text_cursor.eo
blob: 1b6bd6f17a417605bca1e4e4d567921226a30fc1 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
interface Efl.Text.Cursor {
   methods {
      @property position {
         set {
            [[TODO
            ]]
         }
         get {
            [[TODO
            ]]
         }
         values {
            position: int; [[TODO]]
         }
      }
      @property geometry {
         get {
            [[TODO
            ]]
         }
         values {
            x: int; [[TODO]]
            y: int; [[TODO]]
            w: int; [[TODO]]
            h: int; [[TODO]]
         }
      }
      @property bidi {
         get {
            [[TODO
            ]]
         }
         values {
            bidi: int; [[TODO]]
         }
      }
      first {
         [[TODO
         ]]
         return: bool; [[TODO]]
      }
      last {
         [[TODO
         ]]
         return: bool; [[TODO]]
      }
      next {
         [[TODO
         ]]
         return: bool; [[TODO]]
      }
      prev {
         [[TODO
         ]]
         return: bool; [[TODO]]
      }
      up {
         [[TODO
         ]]
         return: bool; [[TODO]]
      }
      down {
         [[TODO
         ]]
         return: bool; [[TODO]]
      }
   }
}