seoz pushed a commit to branch master.

commit 5105fcd5fc68a0498f159c37f17366bf9279a09b
Author: Daniel Juyung Seo <[email protected]>
Date:   Tue Jul 23 13:38:20 2013 +0900

    add inwin to dark elm theme.
---
 edje/dark.edc          |  2 +-
 edje/edc/elm/inwin.edc | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+), 1 deletion(-)

diff --git a/edje/dark.edc b/edje/dark.edc
index 567ce99..9dff491 100644
--- a/edje/dark.edc
+++ b/edje/dark.edc
@@ -32,7 +32,7 @@ collections {
 #include "edc/elm/pointer.edc"
 //#include "edc/elm/fileselector.edc"
 #include "edc/elm/win.edc"
-//#include "edc/elm/inwin.edc"
+#include "edc/elm/inwin.edc"
 #include "edc/elm/slideshow.edc"
 #include "edc/elm/diskselector.edc"
 #include "edc/elm/ctxpopup.edc"
diff --git a/edje/edc/elm/inwin.edc b/edje/edc/elm/inwin.edc
new file mode 100644
index 0000000..56a6835
--- /dev/null
+++ b/edje/edc/elm/inwin.edc
@@ -0,0 +1,80 @@
+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" 1.0;
+            color: 150 150 150 64;
+         }
+      }
+      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;
+            }
+            fill.smooth: 0;
+         }
+      }
+      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;
+         }
+      }
+   }
+}

-- 

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk

Reply via email to