efl/src/lib/elementary/elm_interface_atspi_value.eo

37 lines
1012 B
Plaintext
Raw Normal View History

interface Elm.Interface.Atspi.Value ()
{
eo_prefix: elm_interface_atspi_value;
2015-05-07 09:32:53 -07:00
methods {
@property value_and_text @protected {
get {
2015-08-07 06:29:11 -07:00
[[Gets value displayed by a accessible widget.]]
}
set {
2015-08-07 06:29:11 -07:00
return: bool; [[true if setting widgets value has successed, false otherwise.]]
}
values {
2015-08-07 06:29:11 -07:00
value: double; [[Value of widget casted to floating point number.]]
text: string; [[string describing value in given context eg. small, enough]]
}
}
2015-05-07 09:32:53 -07:00
@property range @protected {
get {
2015-08-07 06:29:11 -07:00
[[Gets a range of all possible values and its description]]
}
values {
lower_limit: double;
upper_limit: double;
description: string;
}
}
2015-05-07 09:32:53 -07:00
@property increment @protected {
get {
2015-08-07 06:29:11 -07:00
[[Gets an minimal incrementation value]]
}
values {
increment: double;
}
}
}
}