From 288aeff59eebe7d7233cc0654651f48ce42c3dc2 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Tue, 22 Jan 2013 15:01:18 +0000 Subject: [PATCH] add "flush" style for panes.. this is a placeholder now for some real gfx. did this to test with... SVN revision: 83089 --- .../elementary/data/themes/widgets/panes.edc | 135 ++++++++++++++++++ 1 file changed, 135 insertions(+) diff --git a/legacy/elementary/data/themes/widgets/panes.edc b/legacy/elementary/data/themes/widgets/panes.edc index 015f4b4f65..fc8d98a9f5 100644 --- a/legacy/elementary/data/themes/widgets/panes.edc +++ b/legacy/elementary/data/themes/widgets/panes.edc @@ -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; + } + } + } + } +}