summaryrefslogtreecommitdiff
path: root/src/lib/elm_interface_atspi_value.eo
blob: 91a12eacc8457bc1a0e510243254aec3de805585 (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
interface Elm_Interface_Atspi_Value ()
{
   legacy_prefix: null;
   eo_prefix: elm_interface_atspi_value;
   properties {
      value_and_text @protected {
         get {
            /*@ Gets value displayed by a accessible widget. */
         }
         set {
            return bool; /*@ EINA_TRUE if setting widgets value has
                                successed, EINA_FALSE otherwise. */
         }
         values {
            double value; /*@ Value of widget casted to floating point number. */
            const(char)* text; /*@ string describing value in given context
                               eg. small, enough */
         }
      }
      range @protected {
         get {
            /* Gets a range of all possible values and its description */
         }
         values {
            double lower_limit;
            double upper_limit;
            const(char)* description;
         }
      }
      increment @protected {
         get {
            /* Gets an minimal incrementation value */
         }
         values {
            double increment;
         }
      }
   }
}