summaryrefslogtreecommitdiff
path: root/res/edc/vp-main-listview-internal.edc
diff options
context:
space:
mode:
Diffstat (limited to 'res/edc/vp-main-listview-internal.edc')
-rw-r--r--res/edc/vp-main-listview-internal.edc172
1 files changed, 172 insertions, 0 deletions
diff --git a/res/edc/vp-main-listview-internal.edc b/res/edc/vp-main-listview-internal.edc
new file mode 100644
index 0000000..4cb4186
--- /dev/null
+++ b/res/edc/vp-main-listview-internal.edc
@@ -0,0 +1,172 @@
+/*
+* Copyright (c) 2000-2015 Samsung Electronics Co., Ltd All Rights Reserved
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/
+#include "image_res.edc"
+#include "vp_font.edc"
+
+collections {
+ group {
+ name: "main.listview.internal";
+
+ parts {
+ part {
+ name: "main.listview.background";
+ type: RECT;
+ mouse_events: 0;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ rel1 { relative: 0.0 0.0;}
+ rel2 { relative: 1.0 1.0;}
+ color: 248 246 239 0;
+ }
+ }
+ part {
+ name: "main.listview.content";
+ type: SWALLOW;
+ mouse_events: 1;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ align: 0.0 0.0;
+ rel1 { relative: 0.0 0.0; }
+ rel2 { relative: 1.0 1.0; }
+ }
+ description {
+ state: "show" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ description {
+ state: "hide" 0.0;
+ inherit: "default" 0.0;
+ visible: 0;
+ }
+ }
+ part {
+ name: "progress";
+ type: SWALLOW;
+ mouse_events: 1;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ align: 0.5 0.5;
+ rel1 { relative: 0.0 0.0; }
+ rel2 { relative: 1.0 1.0; }
+ color: 0 0 0 0;
+ }
+ description {
+ state: "show" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ description {
+ state: "hide" 0.0;
+ inherit: "default" 0.0;
+ visible: 0;
+ }
+ }
+ part {
+ name : "main.listview.tabbar";
+ type: SWALLOW;
+ mouse_events: 1;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ align: 0 0;
+ visible: 0;
+ min: 0 75;
+ color: 248 246 239 255;
+ fixed: 0 1;
+ rel1 { relative: 0.0 0.0;
+ to: "main.listview.content";
+ }
+ rel2 { relative: 1.0 0.0;
+ to: "main.listview.content";
+ }
+ }
+ description {
+ state: "show" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ }
+ part {
+ name: "main.listview.selection.info";
+ type: SWALLOW;
+ description {
+ state: "default" 0.0;
+ fixed: 0 1;
+ align: 0.5 1.0;
+ visible: 0;
+ rel1 { relative: 0.0 1.0; to: "main.listview.content"; }
+ rel2 { relative: 1.0 1.0; }
+ }
+ description {
+ state: "show" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ description {
+ state: "hide" 0.0;
+ inherit: "default" 0.0;
+ visible: 0;
+ }
+ }
+ part {
+ name: "gesture";
+ type: SWALLOW;
+ mouse_events: 1;
+ repeat_events: 1;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ rel1 { relative: 0.0 0.0;}
+ rel2 { relative: 1.0 1.0;}
+ }
+ }
+
+ programs {
+ program {
+ signal: "signal.main.listview.internal.selection.info.show";
+ source: "*";
+ action: STATE_SET "show" 0.0;
+ target: "main.listview.selection.info";
+ }
+ program {
+ signal: "signal.main.listview.internal.selection.info.hide";
+ source: "*";
+ action: STATE_SET "hide" 0.0;
+ target: "main.listview.selection.info";
+ }
+ program {
+ name: "signal.main.listview.tabbar.show";
+ signal: "signal.main.listview.tabbar.show";
+ source: "elm";
+ action: STATE_SET "show" 0.0;
+ target: "main.listview.tabbar";
+ }
+ program {
+ name: "signal.main.listview.tabbar.hide";
+ signal: "signal.main.listview.tabbar.hide";
+ source: "elm";
+ action: STATE_SET "default" 0.0;
+ target: "main.listview.tabbar";
+ }
+ }
+ } /* group */
+} /* collection */
+