summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorCarsten Haitzler <raster@rasterman.com>2012-04-20 12:51:10 +0000
committerCarsten Haitzler <raster@rasterman.com>2012-04-20 12:51:10 +0000
commit54c3814f36053ea6574e203ac04a9c771ad6f739 (patch)
tree55fd344d8223347b6b032b7a7f7510333dacb41f /data
parent1d6072b8df4fe8ef8860592071299795475752e9 (diff)
downloadelementary-54c3814f36053ea6574e203ac04a9c771ad6f739.tar.gz
use the new escape text set to clear up issues if theme has TEXT vs
TEXTBLOCK items and handling escapes so text is consistend across elm. fiuxes the fileselector issues kai reported. SVN revision: 70362
Diffstat (limited to 'data')
-rw-r--r--data/themes/widgets/flipselector.edc46
1 files changed, 23 insertions, 23 deletions
diff --git a/data/themes/widgets/flipselector.edc b/data/themes/widgets/flipselector.edc
index 99d9cf1a6..39c3117ee 100644
--- a/data/themes/widgets/flipselector.edc
+++ b/data/themes/widgets/flipselector.edc
@@ -23,7 +23,7 @@ group { name: "elm/flipselector/base/default";
public animator_bottom_down(val, Float:pos) {
new tmp[FLIP_PICKER_MAX_LEN];
- set_tween_state(PART:"bottom", pos, "shrink", 0.0, "default", 0.0);
+ set_tween_state(PART:"elm.bottom", pos, "shrink", 0.0, "default", 0.0);
set_tween_state(PART:"bottom_sheet", pos, "shrink", 0.0, "default",
0.0);
set_tween_state(PART:"shadow", pos, "half", 0.0, "full",
@@ -42,7 +42,7 @@ group { name: "elm/flipselector/base/default";
}
public animator_top_down(val, Float:pos) {
- set_tween_state(PART:"top", pos, "default", 0.0, "shrink", 0.0);
+ set_tween_state(PART:"elm.top", pos, "default", 0.0, "shrink", 0.0);
set_tween_state(PART:"top_sheet", pos, "default", 0.0, "shrink",
0.0);
set_tween_state(PART:"shadow", pos, "default", 0.0, "half",
@@ -53,7 +53,7 @@ group { name: "elm/flipselector/base/default";
}
public animator_bottom_up(val, Float:pos) {
- set_tween_state(PART:"bottom", pos, "default", 0.0, "shrink", 0.0);
+ set_tween_state(PART:"elm.bottom", pos, "default", 0.0, "shrink", 0.0);
set_tween_state(PART:"bottom_sheet", pos, "default", 0.0, "shrink",
0.0);
set_tween_state(PART:"shadow", pos, "full", 0.0, "half",
@@ -66,7 +66,7 @@ group { name: "elm/flipselector/base/default";
public animator_top_up(val, Float:pos) {
new tmp[FLIP_PICKER_MAX_LEN];
- set_tween_state(PART:"top", pos, "shrink", 0.0, "default", 0.0);
+ set_tween_state(PART:"elm.top", pos, "shrink", 0.0, "default", 0.0);
set_tween_state(PART:"top_sheet", pos, "shrink", 0.0, "default",
0.0);
set_tween_state(PART:"shadow", pos, "half", 0.0, "default",
@@ -100,17 +100,17 @@ group { name: "elm/flipselector/base/default";
set_text(PART:"bottom_b", tmp);
- set_state(PART:"top", "shrink", 0.0);
- set_text(PART:"top", tmp);
- set_state(PART:"top", "default", 0.0);
- set_text(PART:"top", tmp);
+ set_state(PART:"elm.top", "shrink", 0.0);
+ set_text(PART:"elm.top", tmp);
+ set_state(PART:"elm.top", "default", 0.0);
+ set_text(PART:"elm.top", tmp);
replace_str(prev, 0, tmp);
- set_state(PART:"bottom", "default", 0.0);
- set_text(PART:"bottom", value);
- set_state(PART:"bottom", "shrink", 0.0);
- set_text(PART:"bottom", value);
+ set_state(PART:"elm.bottom", "default", 0.0);
+ set_text(PART:"elm.bottom", value);
+ set_state(PART:"elm.bottom", "shrink", 0.0);
+ set_text(PART:"elm.bottom", value);
set_text(PART:"top_b", value);
@@ -139,17 +139,17 @@ group { name: "elm/flipselector/base/default";
set_text(PART:"top_b", tmp);
- set_state(PART:"bottom", "shrink", 0.0);
- set_text(PART:"bottom", tmp);
- set_state(PART:"bottom", "default", 0.0);
- set_text(PART:"bottom", tmp);
+ set_state(PART:"elm.bottom", "shrink", 0.0);
+ set_text(PART:"elm.bottom", tmp);
+ set_state(PART:"elm.bottom", "default", 0.0);
+ set_text(PART:"elm.bottom", tmp);
replace_str(prev, 0, tmp);
- set_state(PART:"top", "default", 0.0);
- set_text(PART:"top", value);
- set_state(PART:"top", "shrink", 0.0);
- set_text(PART:"top", value);
+ set_state(PART:"elm.top", "default", 0.0);
+ set_text(PART:"elm.top", value);
+ set_state(PART:"elm.top", "shrink", 0.0);
+ set_text(PART:"elm.top", value);
set_text(PART:"bottom_b", value);
@@ -282,7 +282,7 @@ group { name: "elm/flipselector/base/default";
}
}
- part { name: "bottom";
+ part { name: "elm.bottom";
mouse_events: 0;
clip_to: "bottom_clipper";
type: TEXT;
@@ -332,7 +332,7 @@ group { name: "elm/flipselector/base/default";
size: 30;
min: 1 1;
align: 0.5 0.5;
- source: "top";
+ source: "elm.top";
}
}
}
@@ -353,7 +353,7 @@ group { name: "elm/flipselector/base/default";
}
}
- part { name: "top";
+ part { name: "elm.top";
mouse_events: 0;
clip_to: "top_clipper";
type: TEXT;