summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_access_value.eo
blob: 4a7f676bf6e7601b32986bce16e715df2fc044e8 (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
interface Efl.Access.Value ()
{
   [[Elementary Access value interface]]
   methods {
      @property value_and_text @protected @beta {
      	 [[Value and text property]]
         get {
            [[Gets value displayed by a accessible widget.]]
         }
         set {
            return: bool; [[$true if setting widgets value has succeeded, otherwise $false .]]
         }
         values {
            value: double; [[Value of widget casted to floating point number.]]
            text: string; [[string describing value in given context eg. small, enough]]
         }
      }
      @property range @protected @beta {
         get {
            [[Gets a range of all possible values and its description]]
         }
         values {
            lower_limit: double; [[Lower limit of the range]]
            upper_limit: double; [[Upper limit of the range]]
            description: string; [[Description of the range]]
         }
      }
      @property increment @protected @beta {
         get {
            [[Gets an minimal incrementation value]]
         }
         values {
            increment: double; [[Minimal incrementation value]]
         }
      }
   }
}