seoz pushed a commit to branch master.

commit e5427a853b8ed0c2a060c934179415671bc0d0d9
Author: Daniel Juyung Seo <[email protected]>
Date:   Mon Jul 22 14:57:45 2013 +0900

    add win theme to dark elm theme.
---
 edje/dark.edc        |  2 +-
 edje/edc/elm/win.edc | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+), 1 deletion(-)

diff --git a/edje/dark.edc b/edje/dark.edc
index 522d8e0..c905808 100644
--- a/edje/dark.edc
+++ b/edje/dark.edc
@@ -31,7 +31,7 @@ collections {
 //#include "edc/elm/thumb.edc"
 //#include "edc/elm/pointer.edc"
 //#include "edc/elm/fileselector.edc"
-//#include "edc/elm/win.edc"
+#include "edc/elm/win.edc"
 //#include "edc/elm/inwin.edc"
 //#include "edc/elm/slideshow.edc"
 //#include "edc/elm/disksel.edc"
diff --git a/edje/edc/elm/win.edc b/edje/edc/elm/win.edc
new file mode 100644
index 0000000..56af51f
--- /dev/null
+++ b/edje/edc/elm/win.edc
@@ -0,0 +1,46 @@
+group { name: "elm/win/base/default";
+   parts {
+      part { name: "menu_bg"; type: RECT;
+         description { state: "default" 0.0;
+            color: 64 64 64 255;
+            align: 0.5 0;
+            rel2.to: "elm.swallow.menu";
+         }
+      }
+      part { name: "elm.swallow.menu"; type: SWALLOW;
+         description { state: "default" 0.0;
+            rel2.relative: 1.0 0.0;
+            visible: 0;
+            align: 0.5 0;
+            fixed: 1 1;
+         }
+         description { state: "visible" 0.0;
+            inherit: "default" 0.0;
+            visible: 1;
+            fixed: 0 1;
+         }
+      }
+      part { name: "elm.swallow.contents"; type: SWALLOW;
+         description { state: "default" 0.0;
+            rel1 {
+               to_y: "elm.swallow.menu";
+               relative: 0.0 1.0;
+            }
+         }
+      }
+   }
+   programs {
+      program { name: "show_menu";
+         signal: "elm,action,show_menu";
+         source: "elm";
+         action: STATE_SET "visible" 0.0;
+         target: "elm.swallow.menu";
+      }
+      program { name: "hide_menu";
+         signal: "elm,action,hide";
+         source: "elm";
+         action: STATE_SET "default" 0.0;
+         target: "elm.swallow.menu";
+      }
+   }
+}

-- 

------------------------------------------------------------------------------
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