Add create/destroy in krate-admin-cli
[platform/core/security/krate.git] / tools / apps / kaskit / res / edje / launcher.edc
1 group { name: "main_window";
2         parts {
3                 part { name: "bg";
4                         type: RECT;
5                         mouse_events: 1;
6                         repeat_events: 0;
7                         description { state: "default" 0.0;
8                                 color: 0 0 0 0;
9                                 rel1 {relative: 0.0 0.0;}
10                                 rel2 {relative: 1.0 1.0;}
11                         }
12                 }
13                 part { name: "popup_window";
14                         type: SWALLOW;
15                         description { state: "default" 0.0;
16                                 rel1 {relative: 0.0 0.2; to: "bg"; offset: 22 0;}
17                                 rel2 {relative: 1.0 0.8; to: "bg"; offset: -22 0;}
18                         }
19                 }
20                 programs {
21                         program { name: "background_clicked_cb";
22                                 signal: "mouse,clicked,1";
23                                 source: "bg";
24                                 action: SIGNAL_EMIT "bg_clicked" "layout";
25                         }
26                 }
27         }
28 }
29
30 group { name: "popup_layout";
31         images{
32                 image: "popup_bg.png" COMP;
33         }
34         parts {
35                 part { name: "bg";
36                         type: IMAGE;
37                         description { state: "default" 0.0;
38                                 rel1 {relative: 0.0 0.0;}
39                                 rel2 {relative: 1.0 1.0;}
40                                 image {
41                                         normal: "popup_bg.png";
42                                         border: 5 5 5 5;
43                                 }
44                         }
45                 }
46                 part { name: "separator";
47                         type: RECT;
48                         description { state: "default" 0.0;
49                                 rel1 { relative: 0.07 62/569; to: "bg";}
50                                 rel2 {relative: 0.93 64/569; to: "bg";}
51                                 color: 7 180 211 250;
52                         }
53                 }
54                 part { name: "popup_title_bg";
55                         type: SWALLOW;
56                         description { state: "default" 0.0;
57                                 rel1 {relative: 0.15 0; to: "bg";}
58                                 rel2 {relative: 0.85 62/569; to: "bg";}
59                                 color: 0 0 0 0;
60                                 visible: 0;
61                         }
62                         description { state: "done" 0.0;
63                                 inherit: "default" 0.0;
64                                 visible: 1;
65                         }
66                 }
67                 part { name: "popup_title";
68                         type: TEXT;
69                         mouse_events: 1;
70                         repeat_events: 1;
71                         description { state: "default" 0.0;
72                                 rel1 { relative: 0.0 0.0; to: "popup_title_bg";}
73                                 rel2 { relative: 1.0 1.0; to: "popup_title_bg";}
74                                 color: 7 180 211 250;
75                                 visible: 1;
76                                 text {
77                                         text: "";
78                                         size: 40;
79                                 }
80                         }
81                 }
82                 part { name: "popup_content";
83                         type: SWALLOW;
84                         description { state: "default";
85                                 rel1 {relative: 0.0 0.0; to_x: "bg"; to_y: "separator"; offset: 22 22;}
86                                 rel2 {relative: 1.0 1.0; to: "bg"; offset: -22 -22;}
87                         }
88                 }
89         }
90 }