summaryrefslogtreecommitdiffstats
path: root/friendfinder/vkbd/vkbd-main.edc
blob: 201bc957b40fd25e02c85d421184e39ffcf17562 (plain) (blame)
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#define GROUP_DEFAULTS	\
	description { \
               state: "default" 0.0; \
               min: 240 150; \
               max: 240 150; \
		fixed: 1 1; \
              rel1 { \
		  to: "background"; \
                  relative: 0.0  0.0; \
		  offset: 0 50;	\
              }\
            }\
            description { \
               state: "hidden" 0.0; \
               inherit: "default" 0.0; \
               visible: 0; \
            } \


group {
      name: "main";

      min: 240 200;
      parts {
	
         part {
            name: "background";
            type: IMAGE;
	    mouse_events: 0;
            description {
               state: "default" 0.0;
	    min: 240 240;
	    max: 240 240;
               
		rel1 {
		  relative: 1.0 1.0;
		  offset: -240 -240;
		}
		rel2 {
                  relative: 1.0 1.0;
               }
               image {
                  normal: "ilist_1.png";
               }
            }
         }
	

         part {
            name: "field_bg";
            mouse_events: 0;
            type: RECT;
            description {
               state: "default" 0.0;
               color: 0 0 0 5;
               rel1 {
                  relative: 0.0 1.0;
		  offset: 4 -240;
               }
               rel2 {
                  relative: 1.0 1.0;
                  offset: -4 -182;
               }
            }
         }

         part {
            name: "field";
            mouse_events: 0;
            type: TEXTBLOCK;
            description {
               state: "default" 0.0;
               color: 30 30 30 255;
               rel1 {
                  to: "field_bg";
                  relative: 0 0;
                  offset: 4 4;
               }
               rel2 {
                  to: "field_bg";
                  relative: 1 1;
                  offset: -5 -5;
               }
               text {
		  text: "";
                  style: "field_style";
               }
            }
         }

         part {
            name: "alpha";
            type: GROUP;
            source: "alpha";
	    mouse_events: 1;
	    repeat_events: 1;
	    GROUP_DEFAULTS            
         }

         part {
            name: "special-1";
            type: GROUP;
            source: "special-1";
	    mouse_events: 1;
	    repeat_events: 1;
            GROUP_DEFAULTS 
         }
	part {
            name: "special-2";
            type: GROUP;
            source: "special-2";
	    mouse_events: 1;
	    repeat_events: 1;
            GROUP_DEFAULTS 
         }
}

      programs {
         program {
            name: "show-alpha";
            signal: "show-alpha";
            action: STATE_SET "default" 0.0;
            target: "alpha";
         }
         program {
            name: "hide-alpha";
            signal: "hide-alpha";
            action: STATE_SET "hidden" 0.0;
            target: "alpha";
         }

         program {
            name: "hide-special-1";
            signal: "hide-special-1";
            action: STATE_SET "hidden" 0.0;
            target: "special-1";
         }
         program {
            name: "show-special-1";
            signal: "show-special-1";
            action: STATE_SET "default" 0.0;
            target: "special-1";
         }
	
	program {
            name: "hide-special-2";
            signal: "hide-special-2";
            action: STATE_SET "hidden" 0.0;
            target: "special-2";
         }
         program {
            name: "show-special-2";
            signal: "show-special-2";
            action: STATE_SET "default" 0.0;
            target: "special-2";
         }

	program {
		name: "hide-signal";
		signal: "kbd-hide";
		action: SIGNAL_EMIT "kbd" "hide";
	}

         program {
            name: "toggle-alpha";
            signal: "toggle-alpha";
            after: "hide-special-1";
	    after: "hide-special-2";
            after: "show-alpha";
         }
         
	program {
            name: "toggle-special-1";
            signal: "toggle-special-1";
            after: "hide-alpha";
	    after: "hide-special-2";
            after: "show-special-1";
         }
         
	program {
            name: "toggle-special-2";
            signal: "toggle-special-2";
            after: "hide-alpha";
            after: "hide-special-1";
	    after: "show-special-2";
        }
         program {
            name: ".@123_clicked";
            signal: "mouse,clicked,1";
            source: "*:key-bg-.@123";
            after: "toggle-special-1";
         }
       	program {
            name: "ABC_clicked";
            signal: "mouse,clicked,1";
            source: "*:key-bg-ABC";
            after: "toggle-alpha";
         }
	 program {
            name: "symb_clicked";
            signal: "mouse,clicked,1";
            source: "special-1:key-bg-symb";
            after: "toggle-special-2";
         }

	program {
		name: "hide_clicked";
		signal: "mouse,clicked,1";
		source: "*:key-bg-hide";
		after: "hide-signal";
	}

         program {
            name: "init";
            signal: "show";
            after: "toggle-alpha";
         }
      }
   }