diff options
author | Gustavo Sverzut Barbieri <barbieri@profusion.mobi> | 2013-01-02 20:38:36 +0000 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-02 20:38:36 +0000 |
commit | 7ec37a51a92e4b2adf7b04dc169a31946393da97 (patch) | |
tree | d29f4a56b1d9a015685c1de755cde7f3d0478287 /data/themes/edc/systray.edc | |
parent | 2f5703e37018549c2bfe5610cdd0f465569105c9 (diff) | |
download | enlightenment-7ec37a51a92e4b2adf7b04dc169a31946393da97.tar.gz enlightenment-7ec37a51a92e4b2adf7b04dc169a31946393da97.tar.xz enlightenment-7ec37a51a92e4b2adf7b04dc169a31946393da97.zip |
systray: split xembed part into own file, prepare to receive d-bus
There is a new d-bus systray spec by KDE that is less retarded. It's
used by KDE and other environments such as Ubuntu's Unity. We'll
integrate code to have E17 to support this spec, then we must separate
the XEmbed part into its own file to avoid confusion.
Patch by: Gustavo Sverzut Barbieri <barbieri@profusion.mobi>
SVN revision: 82016
Diffstat (limited to 'data/themes/edc/systray.edc')
-rw-r--r-- | data/themes/edc/systray.edc | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/data/themes/edc/systray.edc b/data/themes/edc/systray.edc index 54b987d8b..19452943e 100644 --- a/data/themes/edc/systray.edc +++ b/data/themes/edc/systray.edc @@ -14,17 +14,17 @@ group { name: "e/modules/systray/main"; color: 255 0 0 128; } } - part { name: "e.size"; type: RECT; mouse_events: 0; + part { name: "e.xembed.size"; type: RECT; mouse_events: 0; description { state: "default" 0.0; visible: 0; rel1.offset: -1 0; rel2.offset: 0 -1; } } - part { name: "e.box"; type: BOX; + part { name: "e.xembed.box"; type: BOX; description { state: "default" 0.0; - rel1.to: "e.size"; - rel2.to: "e.size"; + rel1.to: "e.xembed.size"; + rel2.to: "e.xembed.size"; box { layout: "horizontal"; padding: 2 0; @@ -45,72 +45,72 @@ group { name: "e/modules/systray/main"; program { signal: "e,action,orient,horiz"; source: "e"; action: STATE_SET "default" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,vert"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,left"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,right"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,top"; source: "e"; action: STATE_SET "default" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,bottom"; source: "e"; action: STATE_SET "default" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_tl"; source: "e"; action: STATE_SET "default" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_tr"; source: "e"; action: STATE_SET "default" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_bl"; source: "e"; action: STATE_SET "default" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_br"; source: "e"; action: STATE_SET "default" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_lt"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_rt"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_lb"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "e.box"; + target: "e.xembed.box"; } program { signal: "e,action,orient,corner_rb"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "e.box"; + target: "e.xembed.box"; } } } |