summaryrefslogtreecommitdiff
path: root/src/lib/elm_app_client.eo
blob: 292f356ea469e8c227fd88aaafe92e4eb03fc293 (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
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 {
            /*@ Return a iterator with all views of application. */
         }
         values {
            Eina_Iterator *ret; /*@ the iterator with all views, must be freed after use */
         }
      }
      package {
         get {
            /*@ Return the application package. */
         }
         values {
            const(char)* ret; /*@ application package */
         }
      }
   }
   methods {
      view_all_close {
         /*@ Close all views of application. */
      }
      terminate {
         /*@ Terminate application. */
      }
      view_open {
         /*@ Open a application view. */
         params {
            @in Eina_Value *args; /*@ an array of */
            @in Elm_App_Client_Open_View_Cb view_open_cb; /*@ callback to be called when view open */
            @in const(void)* data; /*@ calback 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 Elm_App_Client_Pending *pending; /*@ the view open handler */
         }
      }
   }
   implements {
      Eo.Base.constructor;
      Eo.Base.destructor;
   }
   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. */
   }

}