On Wed, 28 Sep 2011 16:57:30 -0700 "Enlightenment SVN" <[email protected]> wrote:
> Log: > THEMES/detorious: fix some missing programs, change 'menu' and 'default' > focus out. > * manage contents visibility, does not seem to affect runtime, but > the preview looked weird. > > * 'menu' should not be colored on focus-out, likely it will not have > any focus... same as 'popup' > > * 'standard' should have focus-out color, same as 'still' given that > default and still do no wobble effect. > > > > Author: barbieri > Date: 2011-09-28 16:57:30 -0700 (Wed, 28 Sep 2011) > New Revision: 63646 > Trac: http://trac.enlightenment.org/e/changeset/63646 > > Modified: > trunk/THEMES/detourious/bits/comp.edc > > Modified: trunk/THEMES/detourious/bits/comp.edc > =================================================================== > --- trunk/THEMES/detourious/bits/comp.edc 2011-09-28 23:07:18 UTC (rev > 63645) +++ trunk/THEMES/detourious/bits/comp.edc 2011-09-28 23:57:30 > UTC (rev 63646) @@ -269,27 +269,62 @@ > mouse_events: 1; > description { state: "default" 0.0; > } > + description { state: "hidden" 0.0; > + visible: 0; > + } > } > } > programs { > program { name: "show1"; > signal: "e,state,visible,on"; > source: "e"; > + action: STATE_SET "default" 0.0; > + target: "e.swallow.content"; > + after: "show2"; > + } > + program { name: "show2"; > action: SIGNAL_EMIT "e,action,show,done" "e"; > } > program { name: "hide1"; > signal: "e,state,visible,off"; > source: "e"; > + action: STATE_SET "hidden" 0.0; > + target: "e.swallow.content"; > + after: "hide2"; > + } > + program { name: "hide2"; > action: SIGNAL_EMIT "e,action,hide,done" "e"; > } > } > } > //---- > group { name: "e/comp/still"; > - alias: "e/comp/menu"; > + alias: "e/comp/default"; > parts { > + part { name: "clipper"; > + type: RECT; > + mouse_events: 0; > + description { state: "default" 0.0; > + visible: 0; > + color: 255 255 255 0; > + rel1 { > + relative: -1.0 -1.0; > + offset: -9999 -9999; > + } > + rel2 { > + relative: 2.0 2.0; > + offset: 9999 9999; > + } > + } > + description { state: "visible" 0.0; > + inherit: "default" 0.0; > + visible: 1; > + color: 255 255 255 255; > + } > + } > part { name: "shadow"; > mouse_events: 0; > + clip_to: "clipper"; > description { state: "default" 0.0; > image { > normal: "images/comp/comp-sh1.png"; > @@ -316,6 +351,7 @@ > part { name: "focus-clipper"; > type: RECT; > mouse_events: 0; > + clip_to: "clipper"; > description { state: "default" 0.0; > color_class: "comp_focus-out_color"; > rel1 { > @@ -357,11 +393,21 @@ > program { name: "show1"; > signal: "e,state,visible,on"; > source: "e"; > + action: STATE_SET "visible" 0.0; > + target: "clipper"; > + after: "show2"; > + } > + program { name: "show2"; > action: SIGNAL_EMIT "e,action,show,done" "e"; > } > program { name: "hide1"; > signal: "e,state,visible,off"; > source: "e"; > + action: STATE_SET "default" 0.0; > + target: "clipper"; > + after: "hide2"; > + } > + program { name: "hide2"; > action: SIGNAL_EMIT "e,action,hide,done" "e"; > } > program { name: "focus"; > @@ -381,8 +427,8 @@ > } > } > //---- > -group { name: "e/comp/default"; > - alias: "e/comp/popup"; > +group { name: "e/comp/popup"; > + alias: "e/comp/menu"; > parts { > part { name: "clipper"; > type: RECT; > > > ------------------------------------------------------------------------------ > All the data continuously generated in your IT infrastructure contains a > definitive record of customers, application performance, security > threats, fraudulent activity and more. Splunk takes this data and makes > sense of it. Business sense. IT sense. Common sense. > http://p.sf.net/sfu/splunk-d2dcopy1 > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn you seem to have only a vague understanding of formatting :P -- Mike Blumenkrantz Zentific: Coding in binary since '10. ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2dcopy1 _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
