summaryrefslogtreecommitdiff
path: root/src/lib/elm_app_server_view.eo
blob: 8ff591715239a899b58eb8079461631391c3a68c (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
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 {
         }
         get {
         }
         values {
            short progress;
         }
      }
      new_events {
         set {
         }
         get {
         }
         values {
            int events;
         }
      }
      icon {
         set {
         }
         get {
         }
         values {
            const char *icon;
         }
      }
      title {
         set {
         }
         get {
         }
         values {
            const char *title;
         }
      }
      window {
         set {
         }
         values {
            Evas_Object *win;
         }
      }
      id {
         get {
         }
         values {
            Eina_Stringshare *ret;
         }
      }
      state {
         get {
         }
         values {
            Elm_App_View_State ret;
         }
      }
      path {
         get {
         }
         values {
            const char *ret;
         }
      }
      pixels {
         get {
            /*@ Get application raw icon. */
         }
         set {
            /*@ Set icon to application, using the raw pixels of image. */
         }
         values {
            unsigned int w;
            unsigned int h;
            Eina_Bool has_alpha;
            const unsigned char *pixels;
         }
      }
   }
   methods {
      pause {
      }
      resume {
      }
      shallow {
      }
      close {
      }
   }
   implements {
      Eo.Base.constructor;
      Eo.Base.destructor;
   }
   events {
      resumed; /*@ Called when view must be resumed */
      paused; /*@ Called when view must be paused */
      closed; /*@ Called when view must be closed */
      shallow; /*@ Called when view state is set to shallow */
      save; /*@ Called when view state should be saved */
   }

}