blob: 61163b324a7c57c1262a4ab35d61d706e30ff462 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
import eina_types;
type Elm_App_Client_Open_View_Cb: __undefined_type;
type Elm_App_Client_Pending: __undefined_type;
class Elm.App.Client (Eo.Base)
{
methods {
@property views {
get {
[[Return a iterator with all views of application.]]
}
values {
ret: free(own(iterator<Elm.App.Client.View>), eina_iterator_free); [[The iterator with all views, must be freed after use.]]
}
}
@property package {
get {
[[Return the application package.]]
}
values {
ret: string; [[application package]]
}
}
constructor {
[[Class constructor of elm_app_client.]]
legacy: null;
params {
@in package: string; [[Package of application]]
}
}
view_all_close {
[[Close all views of application.]]
}
terminate {
[[Terminate application.]]
}
view_open {
[[Open an application view.]]
params {
@in args: generic_value * @optional; [[an array of.]]
@in view_open_cb: Elm_App_Client_Open_View_Cb @optional; [[callback to be called when view open]]
@in data: const(void_ptr) @optional; [[callback user data]]
}
return: Elm_App_Client_Pending *; [[handler to cancel the view opening if it takes to long ]]
}
view_open_cancel {
[[Cancel a pending elm_app_client_view_open().]]
params {
@in pending: Elm_App_Client_Pending *; [[the view open handler]]
}
}
}
implements {
Eo.Base.destructor;
Eo.Base.finalize;
}
constructors {
.constructor;
}
events {
view,created; [[Called when a view of this application is created.]]
view,deleted; [[Called when a view of this application is deleted.]]
view_list,loaded; [[Called when list of view is loaded.]]
application,terminated; [[Called when application is terminated.]]
}
}
|