summaryrefslogtreecommitdiffstats
path: root/data/themes/default/edc/elm/win.edc
blob: 343de6c6e2f6b3ad7bfb643934c582111a9fc75f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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;
            }
         }
      }
      part { name: "blocker"; type: RECT;
         description { state: "default" 0.0;
            rel1.relative : 0.0 0.0;
            rel2.relative : 1.0 1.0;
            color: 64 64 64 150;
            visible: 0;
         }
         description { state: "visible" 0.0;
            inherit: "default" 0.0;
            visible: 1;
         }
      }
   }
   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";
      }
      program { name: "hide_blocker";
         signal: "elm,action,hide_blocker";
         source: "elm";
         action: STATE_SET "default" 0.0;
         target: "blocker";
      }
      program { name: "show_blocker";
         signal: "elm,action,show_blocker";
         source: "elm";
         action: STATE_SET "visible" 0.0;
         target: "blocker";
      }
   }
}