efl/src/lib/elementary/elm_app_client.eo

69 lines
2.0 KiB
Plaintext

import eina_types;
type Elm_App_Client_Open_View_Cb: __undefined_type;
type Elm_App_Client_Pending: __undefined_type;
class Elm.App.Client (Efl.Object)
{
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 {
Efl.Object.destructor;
Efl.Object.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.]]
}
}