add "flush" style for panes.. this is a placeholder now for some real

gfx. did this to test with...



SVN revision: 83089
This commit is contained in:
Carsten Haitzler 2013-01-22 15:01:18 +00:00
parent 8cc8a666dc
commit 288aeff59e
1 changed files with 135 additions and 0 deletions

View File

@ -853,3 +853,138 @@ group {
group { name: "elm/panes/vertical/flush";
parts {
part { name: "whole"; type: SPACER;
description { state: "default" 0.0;
}
}
part { name: "whole_left"; type: RECT;
description { state: "default" 0.0;
rel1.to: "elm.swallow.left";
rel2.to: "elm.swallow.left";
}
}
part { name: "whole_right"; type: RECT;
description { state: "default" 0.0;
rel1.to: "elm.swallow.right";
rel2.to: "elm.swallow.right";
}
}
part { name: "elm.swallow.left"; type: SWALLOW;
clip_to: "whole_left";
description { state: "default" 0.0;
rel2.to_x: "elm.bar";
rel2.relative: 1.0 1.0;
}
}
part { name: "elm.swallow.right"; type: SWALLOW;
clip_to: "whole_right";
description { state: "default" 0.0;
rel1.to_x: "elm.bar";
rel1.relative: 0.0 0.0;
}
}
part { name: "elm.bar"; type: SPACER;
dragable { confine: "whole";
x: 1 1 1;
y: 0 0 0;
}
description { state: "default" 0.0;
max: 0 99999;
min: 0 100;
fixed: 1 1;
rel1.relative: 0.0 0.5;
rel2.relative: 1.0 0.5;
}
}
part { name: "bar";
dragable.events: "elm.bar";
description { state: "default" 0.0;
max: 15 99999;
min: 15 100;
fixed: 1 1;
rel1.to: "elm.bar";
rel2.to: "elm.bar";
image {
normal: "bt_base2.png";
border: 7 7 7 7;
}
}
}
}
}
group { name: "elm/panes/horizontal/flush";
parts {
part { name: "whole"; type: SPACER;
description { state: "default" 0.0;
}
}
part { name: "whole_left"; type: RECT;
description { state: "default" 0.0;
rel1.to: "elm.swallow.left";
rel2.to: "elm.swallow.left";
}
}
part { name: "whole_right"; type: RECT;
description { state: "default" 0.0;
rel1.to: "elm.swallow.right";
rel2.to: "elm.swallow.right";
}
}
part { name: "elm.swallow.left"; type: SWALLOW;
clip_to: "whole_left";
description { state: "default" 0.0;
rel2.to_y: "elm.bar";
rel2.relative: 1.0 1.0;
}
}
part { name: "elm.swallow.right"; type: SWALLOW;
clip_to: "whole_right";
description { state: "default" 0.0;
rel1.to_y: "elm.bar";
rel1.relative: 0.0 0.0;
}
}
part { name: "elm.bar"; type: SPACER;
dragable { confine: "whole";
x: 0 0 0;
y: 1 1 1;
}
description { state: "default" 0.0;
max: 99999 0;
min: 100 0;
fixed: 1 1;
rel1.relative: 0.5 0.0;
rel2.relative: 0.5 1.0;
}
}
part { name: "bar";
dragable.events: "elm.bar";
description { state: "default" 0.0;
max: 99999 15;
min: 100 15;
fixed: 1 1;
rel1.to: "elm.bar";
rel2.to: "elm.bar";
image {
normal: "bt_base2.png";
border: 7 7 7 7;
}
}
}
}
}