summaryrefslogtreecommitdiff
path: root/src/examples/edje/multiseat_system_names.edc
blob: 3f79109749d9d671d7a76ce929f6516de95e2f16 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
collections {

   group {
      name: "example/main";
      min: 400 400;
      use_system_seat_names: 1;

      parts {
         part {
            name: "bg";
            type: RECT;
            mouse_events: 0;
            description {
               state: "default" 0.0;
            }
         }

         part {
            name: "title";
            type: TEXT;
            mouse_events: 0;
            description {
               state: "default" 0.0;
               color: 0 0 0 255;
               rel1 {
                  relative: 0.0 0.0;
                  offset: 0 0;
                  to: "bg";
               }
               rel2 {
                  relative: 1.0 0.2;
                  offset: -1 -1;
                  to: "bg";
               }
               text {
                  text: "Multiseat System Names Example";
                  size: 16;
                  font: "sans";
                  min: 1 1;
               }
            }
         }

         part {
            name: "button_bg,1";
            type: RECT;
            mouse_events: 1;
            description {
               state: "default" 0.0;
               rel1.relative: 0.1 0.25;
               rel2.relative: 0.45 0.8;
               color: 200 200 200 255;
            }
            description {
               state: "over,default" 0.0;
               inherit: "default" 0.0;
               color: 200 120 120 255;
            }
            description {
               state: "over,secondary" 0.0;
               inherit: "default" 0.0;
               color: 120 120 200 255;
            }
         }

         part {
            name: "button,1";
            type: RECT;
            mouse_events: 0;
            description {
               state: "default" 0.0;
               rel1 {
                  to: "button_bg,1";
                  offset: 10 10;
               }
               rel2 {
                  to: "button_bg,1";
                  offset: -11 -11;
               }
               color: 200 200 200 255;
            }
         }

         part {
            name: "button_bg,2";
            type: RECT;
            mouse_events: 1;
            description {
               state: "default" 0.0;
               rel1.relative: 0.55 0.25;
               rel2.relative: 0.9 0.8;
               color: 200 200 200 255;
            }
            description {
               state: "over,default" 0.0;
               inherit: "default" 0.0;
               color: 200 120 120 255;
            }
            description {
               state: "over,secondary" 0.0;
               inherit: "default" 0.0;
               color: 120 120 200 255;
            }
         }

         part {
            name: "button,2";
            type: RECT;
            mouse_events: 0;
            description {
               state: "default" 0.0;
               rel1 {
                  to: "button_bg,2";
                  offset: 10 10;
               }
               rel2 {
                  to: "button_bg,2";
                  offset: -11 -11;
               }
               color: 200 200 200 255;
            }
         }
      }

      programs {
         program {
            name: "button,1,over,default";
            signal: "mouse,in,default";
            source: "button_bg,1";
            action: STATE_SET "over,default" 0.0;
            target: "button_bg,1";
         }

         program {
            name: "button,1,over,secondary";
            signal: "mouse,in,secondary";
            source: "button_bg,1";
            action: STATE_SET "over,secondary" 0.0;
            target: "button_bg,1";
         }

         program {
            name: "button,1,out";
            signal: "mouse,out";
            source: "button_bg,1";
            action: STATE_SET "default" 0.0;
            target: "button_bg,1";
         }

         program {
            name: "button,2,over,default";
            signal: "mouse,in,default";
            source: "button_bg,2";
            action: STATE_SET "over,default" 0.0;
            target: "button_bg,2";
         }

         program {
            name: "button,2,over,secondary";
            signal: "mouse,in,secondary";
            source: "button_bg,2";
            action: STATE_SET "over,secondary" 0.0;
            target: "button_bg,2";
         }

         program {
            name: "button,2,out";
            signal: "mouse,out";
            source: "button_bg,2";
            action: STATE_SET "default" 0.0;
            target: "button_bg,2";
         }
      }
   }
}