}
}
- /* application with toolbar and main content area with a back and next buttons and title area */
+ /* application with toolbar and main content area with a back button and title area */
group { name: "elm/layout/application/toolbar-content-back";
parts {
part { name: "elm.swallow.content";
}
}
}
- part { name: "elm.text.back";
- type: TEXTBLOCK;
- entry_mode: PLAIN;
- description { state: "default" 0.0;
- visible: 0;
- }
- }
+
part { name: "back";
type: EXTERNAL;
source: "elm/button";
}
params.string: "label" "Back";
}
+ }
+ programs {
+ program {
+ signal: "clicked";
+ source: "back";
+ action: SIGNAL_EMIT "elm,action,back" "";
+ }
+ }
+
+ part { name: "elm.swallow.end";
+ type: SWALLOW;
+ description { state: "default" 0.0;
+ align: 1.0 0.0;
+ fixed: 1 1;
+ rel1 { to_y: "elm.external.toolbar";
+ relative: 1.0 1.0;
+ offset: -2 1;
+ }
+ rel2 { to_y: "elm.external.toolbar";
+ relative: 1.0 1.0;
+ offset: -1 32;
+ }
+ }
+ }
+
+ part { name: "elm.text.title";
+ type: TEXT;
+ effect: SOFT_SHADOW;
+ scale: 1;
+ description { state: "default" 0.0;
+ rel1 { to_y: "elm.external.toolbar";
+ to_x: "back";
+ relative: 1.0 1.0;
+ offset: 2 1;
+ }
+ rel2 { to_y: "back";
+ to_x: "elm.swallow.end";
+ relative: 0.0 1.0;
+ offset: -3 -1;
+ }
+ text {
+ font: "Sans:style=Bold";
+ size: 12;
+ }
+ }
+ }
+ }
+ }
+
+ /* application with toolbar and main content area with a back and next buttons and title area */
+ group { name: "elm/layout/application/toolbar-content-back-next";
+ parts {
+ part { name: "elm.swallow.content";
+ type: SWALLOW;
+ description { state: "default" 0.0;
+ rel1 { to_y: "title_clipper";
+ relative: 0.0 1.0;
+ offset: -1 1;
+ }
+ }
+ }
+
+ part { name: "elm.external.toolbar";
+ type: EXTERNAL;
+ source: "elm/toolbar";
+ description { state: "default" 0.0;
+ fixed: 0 1;
+ align: 0.5 0.0;
+ rel2 {
+ relative: 1.0 0.0;
+ offset: -1 47;
+ }
+ }
+ }
+ part { name: "title_clipper";
+ type: RECT;
+ description { state: "default" 0.0;
+ visible: 1;
+ rel1 {
+ to_y: "back";
+ }
+ rel2 {
+ to_y: "back";
+ }
+ }
description { state: "hidden" 0.0;
inherit: "default" 0.0;
visible: 0;
+ rel2 {
+ relative: 1.0 0.0;
+ }
}
}
- part { name: "elm.text.next";
- type: TEXTBLOCK;
- entry_mode: PLAIN;
+ part { name: "back";
+ type: EXTERNAL;
+ source: "elm/button";
+ clip_to: "back_clipper";
+ description { state: "default" 0.0;
+ align: 0.0 0.0;
+ fixed: 1 1;
+ rel1 { to_y: "elm.external.toolbar";
+ relative: 0.0 1.0;
+ offset: 0 1;
+ }
+ rel2 { to_y: "elm.external.toolbar";
+ relative: 0.0 1.0;
+ offset: 50 32;
+ }
+ params.string: "label" "Back";
+ }
+ }
+ part { name: "back_clipper";
+ type: RECT;
+ clip_to: "title_clipper";
description { state: "default" 0.0;
+ visible: 1;
+ }
+ description { state: "hidden" 0.0;
visible: 0;
}
}
part { name: "next";
type: EXTERNAL;
source: "elm/button";
+ clip_to: "next_clipper";
description { state: "default" 0.0;
align: 1.0 0.0;
fixed: 1 1;
}
params.string: "label" "Next";
}
- description { state: "hidden" 0.0;
- inherit: "default" 0.0;
+ }
+ part { name: "next_clipper";
+ type: RECT;
+ clip_to: "title_clipper";
+ description { state: "default" 0.0;
+ visible: 1;
+ }
+ description { state: "hidden" 0.0;
visible: 0;
- }
+ }
}
programs {
program {
action: SIGNAL_EMIT "elm,action,back" "";
}
program {
- signal: "elm,back,hide";
+ signal: "elm,title,hide";
source: "elm";
action: STATE_SET "hidden" 0.0;
- target: "back";
+ transition: LINEAR 0.1;
+ target: "title_clipper";
}
program {
- signal: "elm,back,show";
+ signal: "elm,title,show";
source: "elm";
action: STATE_SET "default" 0.0;
- target: "back";
+ target: "title_clipper";
}
program {
- signal: "entry,changed";
- source: "elm.text.back";
- script {
- new buf[32];
- get_text(PART:"elm.text.back", buf, sizeof(buf));
- external_param_set_str(PART:"back", "label", buf);
- }
+ signal: "elm,back,hide";
+ source: "elm";
+ action: STATE_SET "hidden" 0.0;
+ target: "back_clipper";
+ }
+ program {
+ signal: "elm,back,show";
+ source: "elm";
+ action: STATE_SET "default" 0.0;
+ target: "back_clipper";
}
program {
signal: "clicked";
signal: "elm,next,hide";
source: "elm";
action: STATE_SET "hidden" 0.0;
- target: "next";
+ target: "next_clipper";
}
program {
signal: "elm,next,show";
source: "elm";
action: STATE_SET "default" 0.0;
- target: "next";
- }
- program {
- signal: "entry,changed";
- source: "elm.text.next";
- script {
- new buf[32];
- get_text(PART:"elm.text.next", buf, sizeof(buf));
- external_param_set_str(PART:"next", "label", buf);
- }
+ target: "next_clipper";
}
}
part { name: "elm.text.title";
type: TEXT;
effect: SOFT_SHADOW;
scale: 1;
+ clip_to: "title_clipper";
description { state: "default" 0.0;
rel1 { to_y: "elm.external.toolbar";
to_x: "back";