ephysics: add scroller bar on test custom theme

So people using standard profile can use it without mouse wheel.



SVN revision: 78683
This commit is contained in:
Bruno Dilly 2012-10-30 18:32:03 +00:00
parent d0126e755b
commit 0ca47806af
1 changed files with 51 additions and 0 deletions

View File

@ -30,6 +30,57 @@
} }
} }
part {
name: "sb_vbar";
type: RECT;
mouse_events: 0;
description {
state: "default" 0.0;
fixed: 1 1;
visible: 0;
min: 10 17;
align: 1.0 0.0;
rel1 {
relative: 1.0 0.0;
to_y: "elm.swallow.content";
to_x: "elm.swallow.content";
}
rel2 {
relative: 1.0 1.0;
to_x: "elm.swallow.content";
to_y: "elm.swallow.content";
}
}
}
part {
name: "elm.dragable.vbar";
type: RECT;
mouse_events: 1;
dragable {
x: 0 0 0;
y: 1 1 0;
confine: "sb_vbar";
}
description {
state: "default" 0.0;
fixed: 1 1;
min: 8 15;
max: 8 99999;
color: 139 97 57 255;
rel1 {
relative: 0.5 0.5;
offset: 0 0;
to: "sb_vbar";
}
rel2 {
relative: 0.5 0.5;
offset: 0 0;
to: "sb_vbar";
}
}
}
} }
} }