summaryrefslogtreecommitdiffstats
path: root/data/themes/default/edc/elm/inwin.edc
diff options
context:
space:
mode:
Diffstat (limited to 'data/themes/default/edc/elm/inwin.edc')
-rw-r--r--data/themes/default/edc/elm/inwin.edc79
1 files changed, 79 insertions, 0 deletions
diff --git a/data/themes/default/edc/elm/inwin.edc b/data/themes/default/edc/elm/inwin.edc
new file mode 100644
index 0000000..99e596b
--- /dev/null
+++ b/data/themes/default/edc/elm/inwin.edc
@@ -0,0 +1,79 @@
+group { name: "elm/win/inwin/default";
+ images {
+ image: "button_normal.png" COMP;
+ }
+ parts {
+ part { name: "base"; type: RECT; mouse_events: 1;
+ description { state: "default" 0.0;
+ color: 0 0 0 0;
+ }
+ description { state: "visible" 0.0;
+ inherit: "default" 0.0;
+ color: 0 0 0 128;
+ }
+ }
+ part { name: "pop"; mouse_events: 1;
+ description { state: "default" 0.0;
+ rel1.to: "elm.swallow.content";
+ rel1.offset: -5 -5;
+ rel2.to: "elm.swallow.content";
+ rel2.offset: 4 4;
+ image {
+ normal: "button_normal.png";
+ border: 4 4 3 5;
+ middle: SOLID;
+ }
+ }
+ }
+ part { name: "elm.swallow.content"; type: SWALLOW;
+ description { state: "default" 0.0;
+ rel1.relative: 0.1 0.1;
+ rel2.relative: 0.9 0.9;
+ }
+ }
+ }
+ programs {
+ program { name: "show";
+ signal: "elm,action,show";
+ source: "elm";
+ action: STATE_SET "visible" 0.0;
+ transition: DECELERATE 0.5;
+ target: "base";
+ }
+ program { name: "hide";
+ signal: "elm,action,hide";
+ source: "elm";
+ action: STATE_SET "default" 0.0;
+ transition: DECELERATE 0.5;
+ target: "base";
+ }
+ }
+}
+
+group { name: "elm/win/inwin/minimal";
+ inherit: "elm/win/inwin/default";
+ parts {
+ part { name: "elm.swallow.content";
+ type: SWALLOW;
+ description { state: "default" 0.0;
+ fixed: 1 1;
+ rel1.relative: 0.5 0.5;
+ rel2.relative: 0.5 0.5;
+ }
+ }
+ }
+}
+
+group { name: "elm/win/inwin/minimal_vertical";
+ inherit: "elm/win/inwin/default";
+ parts {
+ part { name: "elm.swallow.content";
+ type: SWALLOW;
+ description { state: "default" 0.0;
+ fixed: 1 1;
+ rel1.relative: 0.1 0.5;
+ rel2.relative: 0.9 0.5;
+ }
+ }
+ }
+}