diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-02-07 13:20:07 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-02-07 13:20:07 +0000 |
commit | aa6a2d173d8c8771643a54c1a364f666bc63b410 (patch) | |
tree | 2e0b7b8f8f11d95940ea87611e32bd5eede6c3f2 /data/themes/edc | |
parent | f49dd52cd3941ca7c36b4373090b953dbf725fda (diff) | |
download | enlightenment-aa6a2d173d8c8771643a54c1a364f666bc63b410.tar.gz enlightenment-aa6a2d173d8c8771643a54c1a364f666bc63b410.tar.xz enlightenment-aa6a2d173d8c8771643a54c1a364f666bc63b410.zip |
giant comp rejiggering commit because anything smaller would have broken something:
* remove xwin for container canvas: now drawn directly on the compositor canvas
* added SHAPE_DEBUG define for bored developers
* bindings now use new e struct for mouse/wheel events
* container+zone now get mouse events from smart callbacks instead of x events
* rename comp api namespace
* change comp underlay theme to have a swallow for the wallpaper
* add names to all zone/container/comp objects to make debugging much easier
* some minor related updates to go along with this
SVN revision: 83752
Diffstat (limited to 'data/themes/edc')
-rw-r--r-- | data/themes/edc/comp.edc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/data/themes/edc/comp.edc b/data/themes/edc/comp.edc index 52b5ef18c..ee507b623 100644 --- a/data/themes/edc/comp.edc +++ b/data/themes/edc/comp.edc @@ -1,4 +1,4 @@ -group { name: "e/modules/comp/preview"; +group { name: "e/comp/preview"; parts { part { name: "e.swallow.preview"; type: SWALLOW; mouse_events: 0; description { state: "default" 0.0; @@ -21,17 +21,17 @@ group { name: "e/modules/comp/preview"; } } -group { name: "e/modules/comp/screen/base/default"; +group { name: "e/comp/screen/base/default"; + alias: "e/comp/screen/base/noeffects"; parts { - part { name: "black"; type: RECT; mouse_events: 0; + part { name: "e.swallow.background"; type: SWALLOW; mouse_events: 0; description { state: "default" 0.0; - color: 0 0 0 255; } } } } -group { name: "e/modules/comp/screen/overlay/default"; +group { name: "e/comp/screen/overlay/default"; images.image: "screen_circular_shadow.png" COMP; parts { part { name: "clip"; type: RECT; mouse_events: 0; @@ -174,8 +174,8 @@ group { name: "e/modules/comp/screen/overlay/default"; } -group { name: "e/modules/comp/screen/overlay/noeffects"; - inherit: "e/modules/comp/screen/overlay/default"; +group { name: "e/comp/screen/overlay/noeffects"; + inherit: "e/comp/screen/overlay/default"; programs { program { name: "screensaver_on"; |