List/scroller-thingies disabler rect for desktop theme too.

SVN revision: 54855
This commit is contained in:
Gustavo Lima Chaves 2010-11-23 07:17:35 +00:00
parent c4d899c419
commit 3714c8d1af
1 changed files with 26 additions and 0 deletions

View File

@ -513,6 +513,20 @@ externals.external: "elm";
rel2.offset: 0 -1; \
} \
} \
part { name: "disabler"; \
type: RECT; \
description { state: "default" 0.0; \
rel1.to: "clipper"; \
rel2.to: "clipper"; \
color: 0 0 0 0; \
visible: 0; \
} \
description { state: "disabled" 0.0; \
inherit: "default" 0.0; \
visible: 1; \
color: 128 128 128 128; \
} \
} \
programs { \
program { name: "load"; \
signal: "load"; \
@ -724,6 +738,18 @@ externals.external: "elm";
action: DRAG_VAL_PAGE 1.0 0.0; \
target: "elm.dragable.hbar"; \
} \
program { name: "disable"; \
signal: "elm,state,disabled"; \
source: "elm"; \
action: STATE_SET "disabled" 0.0; \
target: "disabler"; \
} \
program { name: "enable"; \
signal: "elm,state,enabled"; \
source: "elm"; \
action: STATE_SET "default" 0.0; \
target: "disabler"; \
} \
} \
collections {