[Tizen] Sound & Haptic] [Multisense] Wav files are replaced as per new guideline...
[profile/ivi/efl-theme-tizen.git] / themes / tizen.edc
1 /*
2  * efl-theme-tizen
3  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4  *
5  * Licensed under the Apache License, Version 2.0 (the License);
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an AS IS BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18
19
20 // LICENSE NOTE:
21 // This file (and only this one) is licenses under public-domain. The reason
22 // is that this is meant to serve as a template for making your own themes and
23 // Elementary's LGPL license is not intended to follow. The images used do come
24 // under LGPL, but this file specifically for the structure of your theme is
25 // public-domain. This means you can take, use, re-license and otherwise
26 // have zero restrictions on using this file as a base for your theme.
27
28 // theme configuration file for each theme (tizen, tizen-black, ...)
29 #include TIZEN_TMP_INC
30
31 #define INDICATOR_H             27
32 #define CONTROLBAR_LARGE_H              78
33 #define CONTROLBAR_SMALL_H              65
34 #define CONTROLBAR_W                    78
35 #define SOFTKEY_H               72
36 #define SEGMENT_H               50
37 #define PART_RECT(NAME, REFER_PART, COLOR) \
38    part { name: NAME; \
39       type: RECT; \
40       description { state: "default" 0.0; \
41          rel1.to: REFER_PART; \
42          rel2.to: REFER_PART; \
43          color: COLOR; \
44       } \
45    }
46
47 externals {
48    external: "elm";
49 }
50
51 collections {
52    sounds {
53       sample {
54          name: "touch_sound" RAW;
55          source: "Tizen_Touch.wav";
56       }
57    }
58 #include "widgets/access.edc"
59 #include "widgets/badge.edc"
60 #include "widgets/bg.edc"
61 #include "widgets/bubble.edc"
62 #include "widgets/button.edc"
63 #include "widgets/check.edc"
64 #include "widgets/colorselector.edc"
65 #include "widgets/conformant.edc"
66 #include "widgets/ctxpopup.edc"
67 #include "widgets/datetime.edc"
68 #include "widgets/diskselector.edc"
69 #include "widgets/editfield.edc"
70 #include "widgets/entry.edc"
71 #include "widgets/gengrid.edc"
72 #include "widgets/scroller.edc"
73 #include "widgets/genlist/genlist.edc" // include scroller first
74 #include "widgets/index.edc"
75 #include "widgets/label.edc"
76 #include "widgets/layout.edc"
77 #include "widgets/map.edc"
78 #include "widgets/multibuttonentry.edc"
79 #include "widgets/naviframe.edc"
80 #include "widgets/notify.edc"
81 #include "widgets/panes.edc"
82 #include "widgets/photocam.edc"
83 #include "widgets/popup.edc"
84 #include "widgets/progressbar.edc"
85 #include "widgets/radio.edc"
86 #include "widgets/segmentedcontrol.edc"
87 #include "widgets/selectioninfo.edc"
88 #include "widgets/slider.edc"
89 #include "widgets/tickernoti.edc"
90 #include "widgets/toolbar.edc"
91
92
93    group { name: "elm/focus_highlight/top/default";
94       images {
95          image: "00_focus.png" COMP;
96       }
97       data {
98          item: "animate" "off";
99       }
100       parts {
101          part { name: "base";
102             type: RECT;
103             repeat_events: 1;
104             description { state: "default" 0.0;
105                rel1.relative: 0.0 0.0;
106                rel2.relative: 1.0 1.0;
107                visible: 0;
108             }
109          }
110          part { name: "shine";
111             type: IMAGE;
112             mouse_events: 0;
113             repeat_events: 1;
114             ignore_flags: ON_HOLD;
115             scale: 1;
116             description { state: "default" 0.0;
117                visible: 0;
118                rel1.offset: -4 -4;
119                rel2.offset: 4 4;
120                image {
121                   normal: "00_focus.png";
122                   border: 7 7 7 7;
123                   border_scale: 1;
124                }
125             }
126             description { state: "show" 0.0;
127                inherit:  "default" 0.0;
128                visible: 1;
129             }
130          }
131       }
132       programs {
133          program { name: "show";
134             signal: "elm,action,focus,show";
135             source: "elm";
136             action: STATE_SET "show" 0.0;
137             target: "shine";
138             after: "show_end";
139          }
140          program { name: "show_end";
141             action: SIGNAL_EMIT "elm,action,focus,show,end" "";
142          }
143          program { name: "hide";
144             signal: "elm,action,focus,hide";
145             source: "elm";
146             action: STATE_SET "default" 0.0;
147             target: "shine";
148             after: "hide_end";
149          }
150          program { name: "hide_end";
151             action: SIGNAL_EMIT "elm,action,focus,hide,end" "";
152          }
153       }
154    }
155 }
156