summaryrefslogtreecommitdiff
path: root/src/lib/elm_app_server.eo
blob: d2ae4cf31276ea8723b1968e0f1521ddf733beee (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
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 {
         }
         get {
         }
         values {
            Eina_Stringshare *icon; /*@ title of icon */
         }
      }
      views {
         get {
            /*@ Return a iterator with all views of application */
         }
         values {
            Eina_Iterator *ret; /*@ Iterator with all views of application, you must free iterator after use */
         }
      }
      path {
         get {
         }
         values {
            const(char)* ret;
         }
      }
      package {
         get {
         }
         values {
            Eina_Stringshare *ret;
         }
      }
      pixels {
         get {
            /*@ Get application raw icon. */
         }
         set {
            /*@ Set icon to application, using the raw pixels of image. */
         }
         values {
            uint w;
            uint h;
            bool has_alpha;
            const(ubyte)* pixels;
         }
      }
   }
   methods {
      close_all {
         /*@ Close all views of application */
      }
      view_check {
         /*@ If view id is available and unique, return the full DBus object path of view */
         params {
            @in const(char)* id; /*@ view identifier */
         }
         return: bool; /* @c EINA_TRUE if id is valid or @c EINA_FALSE if not */
      }
      view_add {
         /*@ Add a view to elm_app_server. This should only be used if the application open a view that was not requested by create_view_cb. */
         params {
            @in Elm_App_Server_View *view; /*@ elm_app_server_view */
         }
      }
      title_set {
         /*@ Set a title to application. */
         params {
            @in const(char)* title; /*@ title of application */
         }
      }
      title_get {
         /*@ Get title of application */
         return: Eina_Stringshare *; /* title of application */
      }
      save {
         /*@ Save the state of all views */
      }
   }
   implements {
      Eo.Base.constructor;
      Eo.Base.destructor;
   }
   events {
      terminate; /*@ Called when application must be terminated. */
   }

}