2 * Copyright 2012 Samsung Electronics Co., Ltd
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
8 * http://www.tizenopensource.org/license
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.
18 #include "browser-macro.edc"
22 name: "edit_homepage_view";
33 rel1 { relative: 0.0 0.0; }
34 rel2 { relative: 1.0 1.0; }
39 name: "elm.swallow.entry";
48 rel1 { relative: 0.0 0.0; to: bg; offset: 20 0; }
49 rel2 { relative: 1.0 0.0; to: bg; offset: -20 0; }
55 group { name: "elm/genlist/item/browser-settings/select_all/default";
56 alias: "elm/genlist/item_odd/browser-settings/select_all/default";
57 alias: "elm/genlist/item_compress/browser-settings/select_all/default";
58 alias: "elm/genlist/item_compress_odd/browser-settings/select_all/default";
60 data.item: "stacking" "above";
61 data.item: "selectraise" "on";
62 data.item: "texts" "elm.text";
63 data.item: "contents" "elm.swallow.icon elm.swallow.end";
65 BEAT_GENLIST_PART_BASE( 120 )
71 description { state: "default" 0.0;
76 BEAT_GENLIST_PART_BG_IMAGE
77 BEAT_GENLIST_PART_BOTTOM_LINE
78 BEAT_GENLIST_PART_PADDING_LEFT( 15 )
79 BEAT_GENLIST_PART_PADDING_RIGHT( 22 )
80 part { name: "elm.swallow.end";
84 description { state: "default" 0.0;
87 rel1.to_x: "elm.padding.right";
90 to_x: "elm.padding.right";
94 part { name: "elm.text";
99 description { state: "default" 0.0;
103 to_x: "elm.swallow.icon";
106 to_x: "elm.swallow.end";
110 color: 255 255 255 255;
112 font: "SLP:style=Roman";
118 description { state: "selected" 0.0;
119 inherit: "default" 0.0;
120 color: 255 255 255 255;
123 part { name: "elm.swallow.icon";
127 description { state: "default" 0.0;
135 to_x: "elm.padding.left";
137 rel2.to_x: "elm.padding.left";
141 BEAT_GENLIST_SELECT_ALL_PART_DISCLIP
144 // signal: elm,state,%s,active
145 // a "check" item named %s went active
146 // signal: elm,state,%s,passive
147 // a "check" item named %s went passive
148 // default is passive
149 program { name: "go_active";
150 signal: "elm,state,selected";
152 action: STATE_SET "selected" 0.0;
156 program { name: "go_passive";
157 signal: "elm,state,unselected";
159 action: STATE_SET "default" 0.0;
162 transition: LINEAR 0.1;
164 program { name: "go_disabled";
165 signal: "elm,state,disabled";
167 action: STATE_SET "disabled" 0.0;
170 program { name: "go_enabled";
171 signal: "elm,state,enabled";
173 action: STATE_SET "default" 0.0;