2.0_alpha
[apps/core/preloaded/video-player.git] / res / edc / subtitle.edc
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *     http://www.tizenopensource.org/license
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 #include "vp_font.edc"
19 #define SUBTITLE_W 400
20 #define SUBTITLE_H 100
21
22
23
24 collections {
25         group {
26                 name: "subtitle";
27
28                 parts {
29                         part {
30                                 name: "subtitle.txt";
31                                 type: TEXT;
32                                 scale: 1;
33                                 mouse_events: 0;
34                                 description {
35                                         state: "default" 0.0;
36                                         visible: 1;
37                                         min: SUBTITLE_W SUBTITLE_H;
38                                         color: FONT_COLOR;
39                                         color3: 0 0 0 255;
40                                         fixed: 0 1;
41                                         align: 0.0 0.0;
42                                         rel1 { relative: 0.0 0.5; offset: 0 0; }
43                                         rel2 { relative: 1.0 0.7; offset: 0 0; }
44                                         text {
45                                                 text_class: "list_line1";
46                                                 font: FONT_NANE;
47                                                 size: TITLE_FONT_SIZE;
48                                                 text:  "";
49                                                 align: 0.5 0.5;
50                                         }
51                                 }
52                         }
53                 } /* parts */
54         } /* group */
55 } /* collections */