efl/src/lib/efl/interfaces/efl_control.eo

28 lines
650 B
Plaintext

/* FIXME: Rename */
interface Efl.Control {
[[Efl control interface]]
methods {
@property priority {
[[Control the priority of the object.]]
set {
}
get {
}
values {
priority: int; [[The priority of the object]]
}
}
@property suspend {
[[Controls whether the object is suspended or not.]]
set {
}
get {
}
values {
suspend: bool; [[Controls whether the object is suspended or not.]]
}
}
}
}