docs: add descriptions and and more to ecore.idle classes

This commit is contained in:
Stefan Schmidt 2016-04-13 16:56:47 +02:00
parent 9f63aaca13
commit 89d63475ae
2 changed files with 8 additions and 2 deletions

View File

@ -2,10 +2,14 @@ import ecore_types;
class Ecore.Idle.Enterer (Eo.Base)
{
[[Setup callbacks to be called when the program enters the idle state.
Enterer callbacks are good for updating your program's state, if it has a state engine.
]]
eo_prefix: ecore_idle_enterer;
methods {
before_constructor {
[[Contructor. Will insert the handler at the beginning of the list.]]
[[This constructor will insert the handler at the beginning of the list.]]
legacy: null;
params {
@in func: Ecore_Task_Cb;
@ -13,7 +17,7 @@ class Ecore.Idle.Enterer (Eo.Base)
}
}
after_constructor {
[[Contructor. Will insert the handler at the end of the list.]]
[[This constructor will insert the handler at the end of the list.]]
legacy: null;
params {
@in func: Ecore_Task_Cb;

View File

@ -2,6 +2,8 @@ import ecore_types;
class Ecore.Idle.Exiter (Eo.Base)
{
[[Setup callbacks to be called when the program exits the idle state.]]
eo_prefix: ecore_idle_exiter;
methods {
constructor {