update according to latest eolian changes

This commit is contained in:
Daniel Kolesa 2014-08-27 15:44:11 +01:00
parent d84dfe2985
commit a30da9253e
5 changed files with 37 additions and 42 deletions

View File

@ -2,14 +2,6 @@ class Elm_App_Client (Eo.Base)
{
legacy_prefix: null;
eo_prefix: elm_app_client;
constructors {
constructor {
/*@ Class constructor of elm_app_client. */
params {
@in const(char)* package; /*@ Package of application */
}
}
}
properties {
views {
get {
@ -29,6 +21,13 @@ class Elm_App_Client (Eo.Base)
}
}
methods {
constructor @constructor {
/*@ Class constructor of elm_app_client. */
legacy: null;
params {
@in const(char)* package; /*@ Package of application */
}
}
view_all_close {
/*@ Close all views of application. */
}

View File

@ -2,14 +2,6 @@ class Elm_App_Client_View (Eo.Base)
{
legacy_prefix: null;
eo_prefix: elm_app_client_view;
constructors {
constructor {
/*@ Class constructor of elm_app_client_view */
params {
@in const(char)* path; /*@ DBus path of view */
}
}
}
properties {
state {
get {
@ -88,6 +80,13 @@ class Elm_App_Client_View (Eo.Base)
}
}
methods {
constructor @constructor {
/*@ Class constructor of elm_app_client_view */
legacy: null;
params {
@in const(char)* path; /*@ DBus path of view */
}
}
pause {
/*@ Pause view */
params {

View File

@ -2,15 +2,6 @@ class Elm_App_Server (Eo.Base)
{
legacy_prefix: null;
eo_prefix: elm_app_server;
constructors {
constructor {
/*@ Class constructor of elm_app_server */
params {
@in const(char)* packageid; /*@ package of application */
@in Elm_App_Server_Create_View_Cb create_view_cb; /*@ callback to be called when user whants to open some application view */
}
}
}
properties {
icon {
set {
@ -59,6 +50,14 @@ class Elm_App_Server (Eo.Base)
}
}
methods {
constructor @constructor {
/*@ Class constructor of elm_app_server */
legacy: null;
params {
@in const(char)* packageid; /*@ package of application */
@in Elm_App_Server_Create_View_Cb create_view_cb; /*@ callback to be called when user whants to open some application view */
}
}
close_all {
/*@ Close all views of application */
}

View File

@ -2,14 +2,6 @@ class Elm_App_Server_View (Eo.Base)
{
legacy_prefix: null;
eo_prefix: elm_app_server_view;
constructors {
constructor {
/*@ Class constructor of elm_app_server_view */
params {
@in const(char)* id; /*@ identifier of view */
}
}
}
properties {
progress {
set {
@ -91,6 +83,13 @@ class Elm_App_Server_View (Eo.Base)
}
}
methods {
constructor @constructor {
/*@ Class constructor of elm_app_server_view */
legacy: null;
params {
@in const(char)* id; /*@ identifier of view */
}
}
pause {
}
resume {

View File

@ -2,15 +2,6 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window,
Elm_Interface_Atspi_Widget_Action)
{
eo_prefix: elm_obj_win;
constructors {
constructor {
/*@ No description supplied by the EAPI. */
params {
@in const(char)* name;
@in Elm_Win_Type type;
}
}
}
properties {
keyboard_win {
set {
@ -1182,6 +1173,14 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window,
}
}
methods {
constructor @constructor {
/*@ No description supplied by the EAPI. */
legacy: null;
params {
@in const(char)* name;
@in Elm_Win_Type type;
}
}
wm_manual_rotation_done {
/*@
To notify the rotation done to WM manually.