efl/src/lib/elementary/elm_interface_atspi_text_ed...

56 lines
1.8 KiB
Plaintext
Raw Normal View History

interface Elm.Interface.Atspi.Text.Editable ()
{
[[Elementary AT-SPI text editable interface]]
eo_prefix: elm_interface_atspi_text_editable;
2015-05-07 09:32:53 -07:00
methods {
@property content @protected {
[[Editable content property]]
set {
return: bool; [[$true if setting the value succeeded, $false otherwise]]
}
values {
string: string; [[Content]]
}
}
2014-07-22 08:36:29 -07:00
insert @protected {
[[Insert text at given position]]
params {
@in string: string; [[String to be inserted]]
@in position: int; [[Position to insert string]]
}
return: bool; [[$true if insert succeeded, $false otherwise]]
}
2014-07-22 08:36:29 -07:00
copy @protected {
[[Copy text between start and end parameter]]
params {
@in start: int; [[Start position to copy]]
@in end: int; [[End position to copy]]
}
return: bool; [[$true if copy succeeded, $false otherwise]]
}
2014-07-22 08:36:29 -07:00
cut @protected {
[[Cut text between start and end parameter]]
params {
@in start: int; [[Start position to cut]]
@in end: int; [[End position to cut]]
}
return: bool; [[$true if cut succeeded, $false otherwise]]
}
2014-07-22 08:36:29 -07:00
delete @protected {
[[Delete text between start and end parameter]]
params {
@in start: int; [[Start position to delete]]
@in end: int; [[End position to delete]]
}
return: bool; [[$true if delete succeeded, $false otherwise]]
}
2014-07-22 08:36:29 -07:00
paste @protected {
[[Paste text at given position]]
params {
@in position: int; [[Position to insert text]]
}
return: bool; [[$true if paste succeeded, $false otherwise]]
}
}
}