fixed X11_softare_info changing
[ego.git] / test / test.edc
blobce4eebdd3603ccffad38874ccab8f0491e0a84c4
1 images {
2         image: "frywintux.jpeg" COMP;
5 fonts {
6         font: "notepad.ttf" "default";
9 collections {
10         group {
11                 name: "icon";
12                 parts {
13                         part {
14                                 name: "background";
15                                 type: RECT;
16                                 mouse_events: 1;
17                                 description {
18                                         state: "default" 0.0;
19                                         rel1.relative: 0 0;
20                                         rel2.relative: 1 1;
21                                         color: 255 255 255 255;
22                                 }
23                         }
25                         part {
26                                 name: "container";
27                                 type: SWALLOW;
28                                 mouse_events: 0;
29                                 description {
30                                         state: "default" 0.0;
31                                         rel1.relative: 0.2 0.2;
32                                         rel2.relative: 0.8 0.8;
33                                 }
34                                 description {
35                                         state: "default" 1.0;
36                                         rel1.relative: 0 0;
37                                         rel2.relative: 1 1;
38                                 }
39                         }
40                 }
41                 programs {
42                         program {
43                                 signal: "mouse,in";
44                                 source: "background";
45                                 action: STATE_SET "default" 1.0;
46                                 transition: ACCELERATE 0.2;
47                                 target: "container";
48                         }
49                         program {
50                                 signal: "mouse,out";
51                                 source: "background";
52                                 action: STATE_SET "default" 0.0;
53                                 transition: DECELERATE 0.5;
54                                 target: "container";
55                         }
56                 }
57         }