summaryrefslogtreecommitdiff
path: root/ug_navibar_layout.edc
diff options
context:
space:
mode:
authorByeongin Oh <quddls.oh@samsung.com>2012-08-24 10:51:26 +0900
committerByeongin Oh <quddls.oh@samsung.com>2012-08-24 10:51:26 +0900
commit0d999810a6c86a8ae486fc5f8273d175708c8fb1 (patch)
tree9528c5594112ec7a623c0a79429ac346f3c84baa /ug_navibar_layout.edc
parent500e1d3c6ff1f159af461e63132c178f9afcbab2 (diff)
downloadug-myfile-efl-0d999810a6c86a8ae486fc5f8273d175708c8fb1.tar.gz
ug-myfile-efl-0d999810a6c86a8ae486fc5f8273d175708c8fb1.tar.bz2
ug-myfile-efl-0d999810a6c86a8ae486fc5f8273d175708c8fb1.zip
fix bugs
Change-Id: I374bc1ba88b06028d6183596b3c9f30e2b95934a
Diffstat (limited to 'ug_navibar_layout.edc')
-rw-r--r--ug_navibar_layout.edc89
1 files changed, 87 insertions, 2 deletions
diff --git a/ug_navibar_layout.edc b/ug_navibar_layout.edc
index 227bc81..982807e 100644
--- a/ug_navibar_layout.edc
+++ b/ug_navibar_layout.edc
@@ -19,7 +19,7 @@
#define GENLIST_ITEM_H 71*UG_MF_SCALE_H
#define PATH_INFO_H 30*UG_MF_SCALE_H
#define PATH_INFO_LABEL_H 25
-#define PATH_INFO_BG_COLOR 200 200 200 127
+#define PATH_INFO_BG_COLOR 215 225 232 255
#define BOTTOM_LINE_COLOR 199 199 199 255
@@ -346,6 +346,7 @@ collections
{
name: "pathinfo";
parts {
+ #if 0
part
{
name: "info";
@@ -357,10 +358,94 @@ collections
min: 0 PATH_INFO_H;
}
}
+ #endif
- }
+ part
+ {
+ name: "base";
+ type: RECT;
+ repeat_events: 0;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ min: MAIN_W PATH_INFO_H;
+ color: PATH_INFO_BG_COLOR;
+ }
+ }
+ part
+ {
+ name: "bg";
+ type: RECT;
+ clip_to: "disclip";
+ repeat_events: 0;
+ mouse_events: 0;
+ description {
+ state: "default" 0.0;
+ color: PATH_INFO_BG_COLOR;
+ }
+ }
+ MF_UG_PART_PADDING_TOP(0)
+ MF_UG_PART_PADDING_BOTTOM( 0 )
+ MF_UG_PART_PADDING_LEFT( 10 )
+ part
+ {
+ name: "bottom_line";
+ type: RECT;
+ mouse_events: 0;
+ description { state: "default" 0.0;
+ min: 0 1;
+ fixed: 0 1;
+ visible: 1;
+ color: BOTTOM_LINE_COLOR;
+ rel1
+ {
+ relative: 0.0 1.0;
+ offset: 0 -1;
+ }
+ }
+ }
+ part { name: "info";
+ type: TEXT;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ align: 0.0 0.5;
+ rel1
+ {
+ relative: 1.0 1.0;
+ offset: 0 0;
+ to_x: "elm.padding.left";
+ to_y: "elm.padding.top";
+ }
+ rel2
+ {
+ relative: 1.0 0.0;
+ offset: 0 0;
+ to_x: "elm.padding.left";
+ to_y: "elm.padding.bottom";
+ }
+ color: 164 164 164 255;
+ text {
+ font: "SLP:style=Medium";
+ size: 32;
+ min: 1 1;
+ align: 0.0 0.5;
+ }
+ }
+ }
+ part
+ {
+ name: "disclip";
+ type: RECT;
+ description
+ {
+ state: "default" 0.0;
+ }
+ }
+ }
}
+
}