Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Michaël Bouchaud
It isn't difficult to do it from the c code. Use the function to set the
size hint align to 0.5 1.0 of the objet appended.
like evas_object_size_hint_align_set(o, 0.5, 1.0); if you use the legacy
api.


2015-04-28 16:04 GMT+02:00 Davide Andreoli d...@gurumeditation.it:

 2015-04-28 15:39 GMT+02:00 Michaël Bouchaud y...@efl.so:

  like this http://pastebin.com/PvfDxn8L
 
  2015-04-28 15:37 GMT+02:00 Michaël Bouchaud y...@efl.so:
 
   just add align: 0.5 1.0; in items block
 

 too easy that way :P
 As I explained the box is populated from C code, not in the edc.


  
   2015-04-28 14:45 GMT+02:00 Davide Andreoli d...@gurumeditation.it:
  
   2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
  
On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli 
   d...@gurumeditation.it

said:
   
 2015-04-27 7:06 GMT+02:00 Carsten Haitzler ras...@rasterman.com
 :

  On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
  wolfgang.moraw...@gmail.com said:
 
  align: 0.5 0.5;
 
  is the default in every description - try 0.5 1.0 for bottom
   aligned -
  depending what you want to align to bottom... :)
 

 The problem is that align for box items do not really works,
 please give a look at this super simple example:
 http://pastebin.com/dRBspmJu
 and the result:
 http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg

 As you can see, only the first item is bottom-aligned, because
 of the explicit align on the item (line 36). But the second item
 do not respect the align asked on line 27.

 This is just an example, in the real world the box is populated
 from
 the C/python code. Thus the designer is not able to choose the
 vertical alignment for the items in the box.
   
you don't want to align the items, but align the BOX. make the box
 not
   an
expanded blob but a minimal sized blob vertically and then align
 that.
using
min size of items to expand this 0 height box to the minimum size of
items...
   
  
   I think I really want to align the items, not the box. Your solution
  works
   only
   when items are homogeneous (same size).
  
   Do you have a solution for this one?
   http://pastebin.com/hVBLiFxm
   http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg
  
   here I would like to have all the items aligned to the bottom, and
   remember
   that it will be populated from code, so I cannot set alignment for
 each
   item.
  
   A classic example of this layout usage is the mac-style launcher.
  
  
  
 Is this a bug? An expected behavior?

 Thanks


 
   Hi,
   i have some trouble to align the userslist.box to the bottom.
   Git source is:
  
   https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
   It is allways centered (screenshot:
   http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg
 )
   The edc part is at line 339:
  
   part { name: userslist; type: SPACER;
  description { state: default 0.0;
 rel1  {
to: user;
relative: 1.0 0.0;
offset: 24 0;
 }
 rel2 {
to: user;
relative: 1.0 (1.0 - 1.0);
 }
  }
  description { state: visible 0.0;
 rel1  {
to: user;
relative: 1.0 0.0;
offset: 24 0;
 }
 rel2 {
to: user;
relative: 2.0 1.0;
 }
  }
  part { name: userslist.box; /* API */
 type: BOX;
 description { state: default 0.0;
box {
   layout: horizontal;
   align: 0.0 0.0;
   padding: 24 0;
}
 }
  }
  
   Thanks
   wfx
  
 
   
  
 
 --
   One dashboard for servers and applications across
Physical-Virtual-Cloud
   Widest out-of-the-box monitoring support with 50+ applications
   Performance metrics, stats and reports that give you
 Actionable
Insights
   Deep dive visibility with transaction tracing using APM
 Insight.
   http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net
  
  

Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Wolfgang Morawetz
This will make the split of designe and code useless. 

 Michaël Bouchaud schrieb 

It isn't difficult to do it from the c code. Use the function to set the
size hint align to 0.5 1.0 of the objet appended.
like evas_object_size_hint_align_set(o, 0.5, 1.0); if you use the legacy
api.


2015-04-28 16:04 GMT+02:00 Davide Andreoli d...@gurumeditation.it:

 2015-04-28 15:39 GMT+02:00 Michaël Bouchaud y...@efl.so:

  like this http://pastebin.com/PvfDxn8L
 
  2015-04-28 15:37 GMT+02:00 Michaël Bouchaud y...@efl.so:
 
   just add align: 0.5 1.0; in items block
 

 too easy that way :P
 As I explained the box is populated from C code, not in the edc.


  
   2015-04-28 14:45 GMT+02:00 Davide Andreoli d...@gurumeditation.it:
  
   2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
  
On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli 
   d...@gurumeditation.it

said:
   
 2015-04-27 7:06 GMT+02:00 Carsten Haitzler ras...@rasterman.com
 :

  On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
  wolfgang.moraw...@gmail.com said:
 
  align: 0.5 0.5;
 
  is the default in every description - try 0.5 1.0 for bottom
   aligned -
  depending what you want to align to bottom... :)
 

 The problem is that align for box items do not really works,
 please give a look at this super simple example:
 http://pastebin.com/dRBspmJu
 and the result:
 http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg

 As you can see, only the first item is bottom-aligned, because
 of the explicit align on the item (line 36). But the second item
 do not respect the align asked on line 27.

 This is just an example, in the real world the box is populated
 from
 the C/python code. Thus the designer is not able to choose the
 vertical alignment for the items in the box.
   
you don't want to align the items, but align the BOX. make the box
 not
   an
expanded blob but a minimal sized blob vertically and then align
 that.
using
min size of items to expand this 0 height box to the minimum size of
items...
   
  
   I think I really want to align the items, not the box. Your solution
  works
   only
   when items are homogeneous (same size).
  
   Do you have a solution for this one?
   http://pastebin.com/hVBLiFxm
   http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg
  
   here I would like to have all the items aligned to the bottom, and
   remember
   that it will be populated from code, so I cannot set alignment for
 each
   item.
  
   A classic example of this layout usage is the mac-style launcher.
  
  
  
 Is this a bug? An expected behavior?

 Thanks


 
   Hi,
   i have some trouble to align the userslist.box to the bottom.
   Git source is:
  
   https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
   It is allways centered (screenshot:
   http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg
 )
   The edc part is at line 339:
  
   part { name: userslist; type: SPACER;
  description { state: default 0.0;
 rel1  {
to: user;
relative: 1.0 0.0;
offset: 24 0;
 }
 rel2 {
to: user;
relative: 1.0 (1.0 - 1.0);
 }
  }
  description { state: visible 0.0;
 rel1  {
to: user;
relative: 1.0 0.0;
offset: 24 0;
 }
 rel2 {
to: user;
relative: 2.0 1.0;
 }
  }
  part { name: userslist.box; /* API */
 type: BOX;
 description { state: default 0.0;
box {
   layout: horizontal;
   align: 0.0 0.0;
   padding: 24 0;
}
 }
  }
  
   Thanks
   wfx
  
 
   
  
 
 --
   One dashboard for servers and applications across
Physical-Virtual-Cloud
   Widest out-of-the-box monitoring support with 50+ applications
   Performance metrics, stats and reports that give you
 Actionable
Insights
   Deep dive visibility with transaction tracing using APM
 Insight.
   http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
   ___
   enlightenment-devel mailing 

[E-devel] Input for 1.14 release announcement

2015-04-28 Thread Stefan Schmidt
Hello.

I have made my way through our NEWS files and git logs to put together
some notes for the upcoming release announcement.

My draft looks like this so far:
https://phab.enlightenment.org/w/efl_and_elementary_1_14_release_announcement/

I welcome everyone to have a look if I missed their important feature,
summarized it wrongly or just want to help out to fix some typos and non
native speaker problems in the draft.

regards
Stefan Schmidt

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Davide Andreoli
2015-04-28 15:39 GMT+02:00 Michaël Bouchaud y...@efl.so:

 like this http://pastebin.com/PvfDxn8L

 2015-04-28 15:37 GMT+02:00 Michaël Bouchaud y...@efl.so:

  just add align: 0.5 1.0; in items block


too easy that way :P
As I explained the box is populated from C code, not in the edc.


 
  2015-04-28 14:45 GMT+02:00 Davide Andreoli d...@gurumeditation.it:
 
  2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
 
   On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli 
  d...@gurumeditation.it
   
   said:
  
2015-04-27 7:06 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
   
 On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
 wolfgang.moraw...@gmail.com said:

 align: 0.5 0.5;

 is the default in every description - try 0.5 1.0 for bottom
  aligned -
 depending what you want to align to bottom... :)

   
The problem is that align for box items do not really works,
please give a look at this super simple example:
http://pastebin.com/dRBspmJu
and the result:
http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg
   
As you can see, only the first item is bottom-aligned, because
of the explicit align on the item (line 36). But the second item
do not respect the align asked on line 27.
   
This is just an example, in the real world the box is populated from
the C/python code. Thus the designer is not able to choose the
vertical alignment for the items in the box.
  
   you don't want to align the items, but align the BOX. make the box not
  an
   expanded blob but a minimal sized blob vertically and then align that.
   using
   min size of items to expand this 0 height box to the minimum size of
   items...
  
 
  I think I really want to align the items, not the box. Your solution
 works
  only
  when items are homogeneous (same size).
 
  Do you have a solution for this one?
  http://pastebin.com/hVBLiFxm
  http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg
 
  here I would like to have all the items aligned to the bottom, and
  remember
  that it will be populated from code, so I cannot set alignment for each
  item.
 
  A classic example of this layout usage is the mac-style launcher.
 
 
 
Is this a bug? An expected behavior?
   
Thanks
   
   

  Hi,
  i have some trouble to align the userslist.box to the bottom.
  Git source is:
 
  https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
  It is allways centered (screenshot:
  http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg )
  The edc part is at line 339:
 
  part { name: userslist; type: SPACER;
 description { state: default 0.0;
rel1  {
   to: user;
   relative: 1.0 0.0;
   offset: 24 0;
}
rel2 {
   to: user;
   relative: 1.0 (1.0 - 1.0);
}
 }
 description { state: visible 0.0;
rel1  {
   to: user;
   relative: 1.0 0.0;
   offset: 24 0;
}
rel2 {
   to: user;
   relative: 2.0 1.0;
}
 }
 part { name: userslist.box; /* API */
type: BOX;
description { state: default 0.0;
   box {
  layout: horizontal;
  align: 0.0 0.0;
  padding: 24 0;
   }
}
 }
 
  Thanks
  wfx
 

  
 
 --
  One dashboard for servers and applications across
   Physical-Virtual-Cloud
  Widest out-of-the-box monitoring support with 50+ applications
  Performance metrics, stats and reports that give you Actionable
   Insights
  Deep dive visibility with transaction tracing using APM Insight.
  http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
 
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


 --
 - Codito, ergo sum - I code, therefore I am
   --
 The Rasterman (Carsten Haitzler)ras...@rasterman.com




  
 
 --
 One dashboard for servers and applications across
   Physical-Virtual-Cloud
 Widest out-of-the-box 

Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Olliver Schinagl
Hey all,

I'll ignore the mail mangling :p stuf,

First, thanks fory our input Viacheslav, let me repeat to understand 
properly what you are saying.

To my edje program, in the button edc, I add a second target,
  programs {
program { name: button_unfocus; source: elm;
   signal: elm,action,unfocus; source: elm;
   action: STATE_SET default 0.0;
   target: base;
+ target: elm.text;
}

My first reaction was 'huh, isn't the entire button part of the group 
'base', but uppon further inspection, I saw that the first part is also 
called base.

So thanks! I'll test that and keep that in mind for the future ;)

Olliver
On 28-04-15 11:39, Viacheslav Reutskyi wrote:
 Hello.
 Add this line to your programs :
 target: elm.text;

 If you want to change the state for a few part, in program, you must 
 set each part as target for program.

 I am want propose to try Eflete. This is the graphical editor for 
 widget styles.

 -
 Best regards
 Viacheslav Reutskyi

 12:04, April 28, 2015, Olliver Schinagl :

 To reply to myself, i'll paste the relevant sections so you don't
 have
 to figure out what exactly i did ;)

part { name: elm.text; type: TEXT; mouse_events: 0;
   scale: 1;
   description { state: default 0.0;
  rel1.offset: 0 5;
  rel1.relative: 1.0 0.0;
  rel1.to_x: elm.swallow.content;
  rel1.to_y: base;
  rel2.offset: -8 -8;
  rel2.to: base;
  color_class: button_text;
  text { font: FN; size: 8;
 align: 0.5 0.5;
 min: 0 0;
 text_class: button;
  }
  visible: 0;
   }
 + description { state: focus 0.0;
 +   inherit: default 0.0;
 +   color: 0 0 0 255;
 + }
 +description { state: clicked 0.0;
 +inherit: default 0.0;
 +color: 0 0 0 255;
 +}

 and all off the following is +

 programs {
program { name: button_unfocus; source: elm;
   signal: elm,action,unfocus; source: elm;
   action: STATE_SET default 0.0;
   target: base;
}
program { name: button_focus; source: elm;
   signal: elm,action,focus; source: elm;
   action: STATE_SET focus 0.0;
   target: base;
}

 The idea was, that when a button received the focus, unfocused or
 'clicked' state, the font color of the button text changes
 (because the
 image normal image is really unreadable with a white font, whereas
 the
 outline image is really horrible to read witha  black font.

 Olliver

 On 28-04-15 08:20, Olliver Schinagl wrote:

  Hey list,

  I've been playing with the elm_button edc (see attached) and
 wanted to
  change the text color of a button when the state is clicked
 (and/or
  focused). Can anybody verify my syntax is wrong, since it
 does not
  work at all :(

  Changing the font-color works fine for the elm.text for the
 default
  state just fine, just not on the states i've described.

  Thank you,
  Olliver



  
 --
  One dashboard for servers and applications across
 Physical-Virtual-Cloud
  Widest out-of-the-box monitoring support with 50+ applications
  Performance metrics, stats and reports that give you
 Actionable Insights
  Deep dive visibility with transaction tracing using APM Insight.
  http://ad.doubleclick.net/ddm/clk/290420510;117567292;y


  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

 -- 
 Met vriendelijke groeten, Kind regards, 与亲切的问候

 Olliver Schinagl
 Research  Development
 Ultimaker B.V.
 http://www.ultimaker.com


 -- 


 IMAGINE IT  MAKE IT

 Meet us online at Twitter , Facebook
 , Google+

 www.ultimaker.com
 
 --
 One dashboard for servers and applications across
 Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable
 Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 

Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Davide Andreoli
2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com:

 On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli d...@gurumeditation.it
 
 said:

  2015-04-27 7:06 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
 
   On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
   wolfgang.moraw...@gmail.com said:
  
   align: 0.5 0.5;
  
   is the default in every description - try 0.5 1.0 for bottom aligned -
   depending what you want to align to bottom... :)
  
 
  The problem is that align for box items do not really works,
  please give a look at this super simple example:
  http://pastebin.com/dRBspmJu
  and the result:
  http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg
 
  As you can see, only the first item is bottom-aligned, because
  of the explicit align on the item (line 36). But the second item
  do not respect the align asked on line 27.
 
  This is just an example, in the real world the box is populated from
  the C/python code. Thus the designer is not able to choose the
  vertical alignment for the items in the box.

 you don't want to align the items, but align the BOX. make the box not an
 expanded blob but a minimal sized blob vertically and then align that.
 using
 min size of items to expand this 0 height box to the minimum size of
 items...


I think I really want to align the items, not the box. Your solution works
only
when items are homogeneous (same size).

Do you have a solution for this one?
http://pastebin.com/hVBLiFxm
http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg

here I would like to have all the items aligned to the bottom, and remember
that it will be populated from code, so I cannot set alignment for each
item.

A classic example of this layout usage is the mac-style launcher.



  Is this a bug? An expected behavior?
 
  Thanks
 
 
  
Hi,
i have some trouble to align the userslist.box to the bottom.
Git source is:
https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
It is allways centered (screenshot:
http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg )
The edc part is at line 339:
   
part { name: userslist; type: SPACER;
   description { state: default 0.0;
  rel1  {
 to: user;
 relative: 1.0 0.0;
 offset: 24 0;
  }
  rel2 {
 to: user;
 relative: 1.0 (1.0 - 1.0);
  }
   }
   description { state: visible 0.0;
  rel1  {
 to: user;
 relative: 1.0 0.0;
 offset: 24 0;
  }
  rel2 {
 to: user;
 relative: 2.0 1.0;
  }
   }
   part { name: userslist.box; /* API */
  type: BOX;
  description { state: default 0.0;
 box {
layout: horizontal;
align: 0.0 0.0;
padding: 24 0;
 }
  }
   }
   
Thanks
wfx
   
  
 --
One dashboard for servers and applications across
 Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable
 Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
   
  
  
   --
   - Codito, ergo sum - I code, therefore I am
 --
   The Rasterman (Carsten Haitzler)ras...@rasterman.com
  
  
  
  
 --
   One dashboard for servers and applications across
 Physical-Virtual-Cloud
   Widest out-of-the-box monitoring support with 50+ applications
   Performance metrics, stats and reports that give you Actionable
 Insights
   Deep dive visibility with transaction tracing using APM Insight.
   http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
 
 --
  One dashboard for servers and applications across Physical-Virtual-Cloud
  Widest out-of-the-box monitoring support 

Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Michaël Bouchaud
just add align: 0.5 1.0; in items block

2015-04-28 14:45 GMT+02:00 Davide Andreoli d...@gurumeditation.it:

 2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com:

  On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli 
 d...@gurumeditation.it
  
  said:
 
   2015-04-27 7:06 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
  
On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
wolfgang.moraw...@gmail.com said:
   
align: 0.5 0.5;
   
is the default in every description - try 0.5 1.0 for bottom aligned
 -
depending what you want to align to bottom... :)
   
  
   The problem is that align for box items do not really works,
   please give a look at this super simple example:
   http://pastebin.com/dRBspmJu
   and the result:
   http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg
  
   As you can see, only the first item is bottom-aligned, because
   of the explicit align on the item (line 36). But the second item
   do not respect the align asked on line 27.
  
   This is just an example, in the real world the box is populated from
   the C/python code. Thus the designer is not able to choose the
   vertical alignment for the items in the box.
 
  you don't want to align the items, but align the BOX. make the box not an
  expanded blob but a minimal sized blob vertically and then align that.
  using
  min size of items to expand this 0 height box to the minimum size of
  items...
 

 I think I really want to align the items, not the box. Your solution works
 only
 when items are homogeneous (same size).

 Do you have a solution for this one?
 http://pastebin.com/hVBLiFxm
 http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg

 here I would like to have all the items aligned to the bottom, and remember
 that it will be populated from code, so I cannot set alignment for each
 item.

 A classic example of this layout usage is the mac-style launcher.



   Is this a bug? An expected behavior?
  
   Thanks
  
  
   
 Hi,
 i have some trouble to align the userslist.box to the bottom.
 Git source is:

 https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
 It is allways centered (screenshot:
 http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg )
 The edc part is at line 339:

 part { name: userslist; type: SPACER;
description { state: default 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 1.0 (1.0 - 1.0);
   }
}
description { state: visible 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 2.0 1.0;
   }
}
part { name: userslist.box; /* API */
   type: BOX;
   description { state: default 0.0;
  box {
 layout: horizontal;
 align: 0.0 0.0;
 padding: 24 0;
  }
   }
}

 Thanks
 wfx

   
 
 --
 One dashboard for servers and applications across
  Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable
  Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

   
   
--
- Codito, ergo sum - I code, therefore I am
  --
The Rasterman (Carsten Haitzler)ras...@rasterman.com
   
   
   
   
 
 --
One dashboard for servers and applications across
  Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable
  Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net

Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Michaël Bouchaud
like this http://pastebin.com/PvfDxn8L

2015-04-28 15:37 GMT+02:00 Michaël Bouchaud y...@efl.so:

 just add align: 0.5 1.0; in items block

 2015-04-28 14:45 GMT+02:00 Davide Andreoli d...@gurumeditation.it:

 2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com:

  On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli 
 d...@gurumeditation.it
  
  said:
 
   2015-04-27 7:06 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
  
On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
wolfgang.moraw...@gmail.com said:
   
align: 0.5 0.5;
   
is the default in every description - try 0.5 1.0 for bottom
 aligned -
depending what you want to align to bottom... :)
   
  
   The problem is that align for box items do not really works,
   please give a look at this super simple example:
   http://pastebin.com/dRBspmJu
   and the result:
   http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg
  
   As you can see, only the first item is bottom-aligned, because
   of the explicit align on the item (line 36). But the second item
   do not respect the align asked on line 27.
  
   This is just an example, in the real world the box is populated from
   the C/python code. Thus the designer is not able to choose the
   vertical alignment for the items in the box.
 
  you don't want to align the items, but align the BOX. make the box not
 an
  expanded blob but a minimal sized blob vertically and then align that.
  using
  min size of items to expand this 0 height box to the minimum size of
  items...
 

 I think I really want to align the items, not the box. Your solution works
 only
 when items are homogeneous (same size).

 Do you have a solution for this one?
 http://pastebin.com/hVBLiFxm
 http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg

 here I would like to have all the items aligned to the bottom, and
 remember
 that it will be populated from code, so I cannot set alignment for each
 item.

 A classic example of this layout usage is the mac-style launcher.



   Is this a bug? An expected behavior?
  
   Thanks
  
  
   
 Hi,
 i have some trouble to align the userslist.box to the bottom.
 Git source is:

 https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
 It is allways centered (screenshot:
 http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg )
 The edc part is at line 339:

 part { name: userslist; type: SPACER;
description { state: default 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 1.0 (1.0 - 1.0);
   }
}
description { state: visible 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 2.0 1.0;
   }
}
part { name: userslist.box; /* API */
   type: BOX;
   description { state: default 0.0;
  box {
 layout: horizontal;
 align: 0.0 0.0;
 padding: 24 0;
  }
   }
}

 Thanks
 wfx

   
 
 --
 One dashboard for servers and applications across
  Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable
  Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

   
   
--
- Codito, ergo sum - I code, therefore I am
  --
The Rasterman (Carsten Haitzler)ras...@rasterman.com
   
   
   
   
 
 --
One dashboard for servers and applications across
  Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable
  Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___

[E-devel] Fwd: Improving collaboration in free and open source software

2015-04-28 Thread Stefan Schmidt
Hello.

Maybe some of you are interested in this.

regards
Stefan Schmidt


 Forwarded Message 
Subject:Improving collaboration in free and open source software
Date:   Sun, 26 Apr 2015 15:12:03 +0200
From:   Anna Filippova an...@u.nus.edu
To: Stefan Schmidt ste...@datenfreihafen.org



Dear Stefan Schmidt,

I hope this finds you well!

As part of my doctoral work at the National University of Singapore, I am
conducting a research study on how Free and Open Source Software teams work
together. Using a short survey, the project hopes to make concrete
recommendations for improving work, and to share these results with the
community. 

I would like to extend an invitation to you and your team to participate in
this research project. The survey should take less than 15 minutes to
complete, and your feedback will be entirely anonymous.

In return for your time, you can nominate a project of your choice to
receive a donation. At the end of the survey, you can vote up the project
you contribute to at the moment, or simply a project you support. The top
voted small, medium and large projects will receive USD 100 each. 

You may access the survey at any time using the link below:

https://www.soscisurvey.de/foss_survey/?d=AX7DNHVYMW9NCKHY

You may also follow updates at http://www.annafil.com/foss_survey.php.
Please don’t hesitate to get in touch with me if you have any questions
at all regarding the survey or the project as a whole.

With warmest regards,

Anna Filippova
National University of Singapore

--

This e-mail was sent using SoSci Survey
(https://www.soscisurvey.de/index.php?page=imprint). For information about
content and privacy please contact Anna Filippova an...@u.nus.edu.

If you do not want to receive further e-mails via SoSci Survey, please
click here: https://www.soscisurvey.de/admin/privacy.php?t=AX7DNHVYMW9NCKHY




--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Michaël Bouchaud
You can make a container group with 2 parts...
The first one fill the place and the second, who is a swallow, aligned to
bottom.
You swallow your content in this group and add this group to the box.

2015-04-28 16:44 GMT+02:00 Wolfgang Morawetz wolfgang.moraw...@gmail.com:

 This will make the split of designe and code useless.

  Michaël Bouchaud schrieb 

 It isn't difficult to do it from the c code. Use the function to set the
 size hint align to 0.5 1.0 of the objet appended.
 like evas_object_size_hint_align_set(o, 0.5, 1.0); if you use the legacy
 api.
 
 
 2015-04-28 16:04 GMT+02:00 Davide Andreoli d...@gurumeditation.it:
 
  2015-04-28 15:39 GMT+02:00 Michaël Bouchaud y...@efl.so:
 
   like this http://pastebin.com/PvfDxn8L
  
   2015-04-28 15:37 GMT+02:00 Michaël Bouchaud y...@efl.so:
  
just add align: 0.5 1.0; in items block
  
 
  too easy that way :P
  As I explained the box is populated from C code, not in the edc.
 
 
   
2015-04-28 14:45 GMT+02:00 Davide Andreoli d...@gurumeditation.it
 :
   
2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com:
   
 On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli 
d...@gurumeditation.it
 
 said:

  2015-04-27 7:06 GMT+02:00 Carsten Haitzler 
 ras...@rasterman.com
  :
 
   On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
   wolfgang.moraw...@gmail.com said:
  
   align: 0.5 0.5;
  
   is the default in every description - try 0.5 1.0 for bottom
aligned -
   depending what you want to align to bottom... :)
  
 
  The problem is that align for box items do not really works,
  please give a look at this super simple example:
  http://pastebin.com/dRBspmJu
  and the result:
  http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg
 
  As you can see, only the first item is bottom-aligned, because
  of the explicit align on the item (line 36). But the second
 item
  do not respect the align asked on line 27.
 
  This is just an example, in the real world the box is populated
  from
  the C/python code. Thus the designer is not able to choose the
  vertical alignment for the items in the box.

 you don't want to align the items, but align the BOX. make the
 box
  not
an
 expanded blob but a minimal sized blob vertically and then align
  that.
 using
 min size of items to expand this 0 height box to the minimum
 size of
 items...

   
I think I really want to align the items, not the box. Your
 solution
   works
only
when items are homogeneous (same size).
   
Do you have a solution for this one?
http://pastebin.com/hVBLiFxm
http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg
   
here I would like to have all the items aligned to the bottom, and
remember
that it will be populated from code, so I cannot set alignment for
  each
item.
   
A classic example of this layout usage is the mac-style launcher.
   
   
   
  Is this a bug? An expected behavior?
 
  Thanks
 
 
  
Hi,
i have some trouble to align the userslist.box to the
 bottom.
Git source is:
   
   
 https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
It is allways centered (screenshot:
   
 http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg
  )
The edc part is at line 339:
   
part { name: userslist; type: SPACER;
   description { state: default 0.0;
  rel1  {
 to: user;
 relative: 1.0 0.0;
 offset: 24 0;
  }
  rel2 {
 to: user;
 relative: 1.0 (1.0 - 1.0);
  }
   }
   description { state: visible 0.0;
  rel1  {
 to: user;
 relative: 1.0 0.0;
 offset: 24 0;
  }
  rel2 {
 to: user;
 relative: 2.0 1.0;
  }
   }
   part { name: userslist.box; /* API */
  type: BOX;
  description { state: default 0.0;
 box {
layout: horizontal;
align: 0.0 0.0;
padding: 24 0;
 }
  }
   }
   
Thanks
wfx
   
  

   
  
 
 --
One dashboard for 

Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Olliver Schinagl

hey list,

ok i tried this suggestion and re-read the docs, my initial attached 
file (with this added chnage to all programs) should work, but doesn't. 
What happens that the button that has focus, is without any text, which 
ever button receives focus next, is then un-texted and the now 
un-focused button is also textless now.


Clousou does still show the text and does say the color as 255 0 0 255; 
for example, but cannot see it anymore. So where is my edc wrong?


On 28-04-15 13:40, Olliver Schinagl wrote:

Hey all,

I'll ignore the mail mangling :p stuf,

First, thanks fory our input Viacheslav, let me repeat to understand 
properly what you are saying.


To my edje program, in the button edc, I add a second target,
 programs {
   program { name: button_unfocus; source: elm;
  signal: elm,action,unfocus; source: elm;
  action: STATE_SET default 0.0;
  target: base;
+ target: elm.text;
   }

My first reaction was 'huh, isn't the entire button part of the group 
'base', but uppon further inspection, I saw that the first part is 
also called base.


So thanks! I'll test that and keep that in mind for the future ;)

Olliver
On 28-04-15 11:39, Viacheslav Reutskyi wrote:

Hello.
Add this line to your programs :
target: elm.text;

If you want to change the state for a few part, in program, you must 
set each part as target for program.


I am want propose to try Eflete. This is the graphical editor for 
widget styles.


-
Best regards
Viacheslav Reutskyi

12:04, April 28, 2015, Olliver Schinagl :

To reply to myself, i'll paste the relevant sections so you don't
have
to figure out what exactly i did ;)

   part { name: elm.text; type: TEXT; mouse_events: 0;
  scale: 1;
  description { state: default 0.0;
 rel1.offset: 0 5;
 rel1.relative: 1.0 0.0;
 rel1.to_x: elm.swallow.content;
 rel1.to_y: base;
 rel2.offset: -8 -8;
 rel2.to: base;
 color_class: button_text;
 text { font: FN; size: 8;
align: 0.5 0.5;
min: 0 0;
text_class: button;
 }
 visible: 0;
  }
+ description { state: focus 0.0;
+   inherit: default 0.0;
+   color: 0 0 0 255;
+ }
+description { state: clicked 0.0;
+inherit: default 0.0;
+color: 0 0 0 255;
+}

and all off the following is +

programs {
   program { name: button_unfocus; source: elm;
  signal: elm,action,unfocus; source: elm;
  action: STATE_SET default 0.0;
  target: base;
   }
   program { name: button_focus; source: elm;
  signal: elm,action,focus; source: elm;
  action: STATE_SET focus 0.0;
  target: base;
   }

The idea was, that when a button received the focus, unfocused or
'clicked' state, the font color of the button text changes
(because the
image normal image is really unreadable with a white font,
whereas the
outline image is really horrible to read witha  black font.

Olliver

On 28-04-15 08:20, Olliver Schinagl wrote:

 Hey list,

 I've been playing with the elm_button edc (see attached) and
wanted to
 change the text color of a button when the state is clicked
(and/or
 focused). Can anybody verify my syntax is wrong, since it
does not
 work at all :(

 Changing the font-color works fine for the elm.text for the
default
 state just fine, just not on the states i've described.

 Thank you,
 Olliver



 
--
 One dashboard for servers and applications across
Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you
Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y


 ___
 enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-- 
Met vriendelijke groeten, Kind regards, 与亲切的问候


Olliver Schinagl
Research  Development
Ultimaker B.V.
http://www.ultimaker.com


-- 



IMAGINE IT  MAKE IT

Meet us online at Twitter , Facebook
, Google+

www.ultimaker.com

--
One dashboard for servers and applications across
Physical-Virtual-Cloud
Widest out-of-the-box 

Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Olliver Schinagl
To reply to myself, i'll paste the relevant sections so you don't have 
to figure out what exactly i did ;)

   part { name: elm.text; type: TEXT; mouse_events: 0;
  scale: 1;
  description { state: default 0.0;
 rel1.offset: 0 5;
 rel1.relative: 1.0 0.0;
 rel1.to_x: elm.swallow.content;
 rel1.to_y: base;
 rel2.offset: -8 -8;
 rel2.to: base;
 color_class: button_text;
 text { font: FN; size: 8;
align: 0.5 0.5;
min: 0 0;
text_class: button;
 }
 visible: 0;
  }
+ description { state: focus 0.0;
+   inherit: default 0.0;
+   color: 0 0 0 255;
+ }
+description { state: clicked 0.0;
+inherit: default 0.0;
+color: 0 0 0 255;
+}

and all off the following is +

programs {
   program { name: button_unfocus; source: elm;
  signal: elm,action,unfocus; source: elm;
  action: STATE_SET default 0.0;
  target: base;
   }
   program { name: button_focus; source: elm;
  signal: elm,action,focus; source: elm;
  action: STATE_SET focus 0.0;
  target: base;
   }

The idea was, that when a button received the focus, unfocused or 
'clicked' state, the font color of the button text changes (because the 
image normal image is really unreadable with a white font, whereas the 
outline image is really horrible to read witha  black font.

Olliver

On 28-04-15 08:20, Olliver Schinagl wrote:
 Hey list,

 I've been playing with the elm_button edc (see attached) and wanted to 
 change the text color of a button when the state is clicked (and/or 
 focused). Can anybody verify my syntax is wrong, since it does not 
 work at all :(

 Changing the font-color works fine for the elm.text for the default 
 state just fine, just not on the states i've described.

 Thank you,
 Olliver



 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y


 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-- 
Met vriendelijke groeten, Kind regards, 与亲切的问候

Olliver Schinagl
Research  Development
Ultimaker B.V.
http://www.ultimaker.com


-- 


IMAGINE IT  MAKE IT

Meet us online at Twitter http://twitter.com/ultimaker, Facebook 
http://facebook.com/ultimaker, Google+ http://google.com/+Ultimaker

www.ultimaker.com
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EFL + Elementary ABI report v1.14.0 alpha1

2015-04-28 Thread Tom Hacohen
On 20/04/15 12:27, Tom Hacohen wrote:
 On 13/04/15 15:34, Tom Hacohen wrote:
 On 07/04/15 16:05, Tom Hacohen wrote:
 Hey,

 Here again, the new EFL + Elementary ABI reports.

 As usual:
 https://devs.enlightenment.org/~tasn/abi/

 Things look mostly OK. There are maybe some issues with data types in
 the EFL. I need to take a better look. I'd appreciate it if more people
 do too.

 Hey,

 I just uploaded updated reports for beta1.


 Reports for beta2 are up.

Reports for beta3 are up.

--
Tom.


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje align box to bottom.

2015-04-28 Thread Davide Andreoli
2015-04-28 17:08 GMT+02:00 Michaël Bouchaud y...@efl.so:

 You can make a container group with 2 parts...
 The first one fill the place and the second, who is a swallow, aligned to
 bottom.
 You swallow your content in this group and add this group to the box.


Here you are cheating :)
The whole point of this thread is that edje seems (is?) not able to
vertically align
items in a box, and this should be a basic operation for a box.




 2015-04-28 16:44 GMT+02:00 Wolfgang Morawetz wolfgang.moraw...@gmail.com
 :

  This will make the split of designe and code useless.
 
   Michaël Bouchaud schrieb 
 
  It isn't difficult to do it from the c code. Use the function to set the
  size hint align to 0.5 1.0 of the objet appended.
  like evas_object_size_hint_align_set(o, 0.5, 1.0); if you use the legacy
  api.
  
  
  2015-04-28 16:04 GMT+02:00 Davide Andreoli d...@gurumeditation.it:
  
   2015-04-28 15:39 GMT+02:00 Michaël Bouchaud y...@efl.so:
  
like this http://pastebin.com/PvfDxn8L
   
2015-04-28 15:37 GMT+02:00 Michaël Bouchaud y...@efl.so:
   
 just add align: 0.5 1.0; in items block
   
  
   too easy that way :P
   As I explained the box is populated from C code, not in the edc.
  
  

 2015-04-28 14:45 GMT+02:00 Davide Andreoli 
 d...@gurumeditation.it
  :

 2015-04-28 0:32 GMT+02:00 Carsten Haitzler ras...@rasterman.com
 :

  On Mon, 27 Apr 2015 21:47:57 +0200 Davide Andreoli 
 d...@gurumeditation.it
  
  said:
 
   2015-04-27 7:06 GMT+02:00 Carsten Haitzler 
  ras...@rasterman.com
   :
  
On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
wolfgang.moraw...@gmail.com said:
   
align: 0.5 0.5;
   
is the default in every description - try 0.5 1.0 for
 bottom
 aligned -
depending what you want to align to bottom... :)
   
  
   The problem is that align for box items do not really works,
   please give a look at this super simple example:
   http://pastebin.com/dRBspmJu
   and the result:
  
 http://www.enlightenment.org/ss/e-553e90974f63b7.62413817.jpg
  
   As you can see, only the first item is bottom-aligned,
 because
   of the explicit align on the item (line 36). But the second
  item
   do not respect the align asked on line 27.
  
   This is just an example, in the real world the box is
 populated
   from
   the C/python code. Thus the designer is not able to choose
 the
   vertical alignment for the items in the box.
 
  you don't want to align the items, but align the BOX. make the
  box
   not
 an
  expanded blob but a minimal sized blob vertically and then
 align
   that.
  using
  min size of items to expand this 0 height box to the minimum
  size of
  items...
 

 I think I really want to align the items, not the box. Your
  solution
works
 only
 when items are homogeneous (same size).

 Do you have a solution for this one?
 http://pastebin.com/hVBLiFxm
 http://www.enlightenment.org/ss/e-553f801e21d243.51319171.jpg

 here I would like to have all the items aligned to the bottom,
 and
 remember
 that it will be populated from code, so I cannot set alignment
 for
   each
 item.

 A classic example of this layout usage is the mac-style launcher.



   Is this a bug? An expected behavior?
  
   Thanks
  
  
   
 Hi,
 i have some trouble to align the userslist.box to the
  bottom.
 Git source is:


  https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
 It is allways centered (screenshot:

  http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg
   )
 The edc part is at line 339:

 part { name: userslist; type: SPACER;
description { state: default 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 1.0 (1.0 - 1.0);
   }
}
description { state: visible 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 2.0 1.0;
   }
}
part { name: userslist.box; /* API */
   type: BOX;
   description { state: default 0.0;
  box {

[E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Olliver Schinagl

Hey list,

I've been playing with the elm_button edc (see attached) and wanted to 
change the text color of a button when the state is clicked (and/or 
focused). Can anybody verify my syntax is wrong, since it does not work 
at all :(


Changing the font-color works fine for the elm.text for the default 
state just fine, just not on the states i've described.


Thank you,
Olliver

--
Met vriendelijke groeten, Kind regards, 与亲切的问候

Olliver Schinagl
Research  Development
Ultimaker B.V.
http://www.ultimaker.com


--


IMAGINE IT  MAKE IT

Meet us online at Twitter http://twitter.com/ultimaker, Facebook 
http://facebook.com/ultimaker, Google+ http://google.com/+Ultimaker


www.ultimaker.com
group { name: elm/button/base/default;
   images.image: button_normal.png COMP;
   images.image: button_outline.png COMP;
#define ICON 1
#define LABEL2
#define MASK 3
#define DISABLE  4
   script {
  public btmode;
  public eval_mode(m) {
 new m1 = m  MASK;
 new d = m  DISABLE;
 if (m1 == (ICON | LABEL)) {
if (!d) {
   set_state(PART:elm.swallow.content, visible, 0.0);
   set_state(PART:sizer.content, visible, 0.0);
   set_state(PART:elm.text, visible, 0.0);
   set_state(PART:icon_clip, default, 0.0);
   set_state(PART:event, default, 0.0);
} else {
   set_state(PART:elm.swallow.content, visible, 0.0);
   set_state(PART:sizer.content, visible, 0.0);
   set_state(PART:elm.text, disabled_visible, 0.0);
   set_state(PART:icon_clip, disabled, 0.0);
   set_state(PART:event, disabled, 0.0);
}
 } else if (m1 == (ICON)) {
if (!d) {
   set_state(PART:elm.swallow.content, icononly, 0.0);
   set_state(PART:sizer.content, icononly, 0.0);
   set_state(PART:elm.text, default, 0.0);
   set_state(PART:icon_clip, default, 0.0);
   set_state(PART:event, default, 0.0);
} else {
   set_state(PART:elm.swallow.content, icononly, 0.0);
   set_state(PART:sizer.content, icononly, 0.0);
   set_state(PART:elm.text, default, 0.0);
   set_state(PART:icon_clip, disabled, 0.0);
   set_state(PART:event, disabled, 0.0);
}
 } else if (m1 == (LABEL)) {
if (!d) {
   set_state(PART:elm.swallow.content, default, 0.0);
   set_state(PART:sizer.content, default, 0.0);
   set_state(PART:elm.text, textonly, 0.0);
   set_state(PART:icon_clip, default, 0.0);
   set_state(PART:event, default, 0.0);
} else {
   set_state(PART:elm.swallow.content, default, 0.0);
   set_state(PART:sizer.content, default, 0.0);
   set_state(PART:elm.text, disabled_textonly, 0.0);
   set_state(PART:icon_clip, disabled, 0.0);
   set_state(PART:event, disabled, 0.0);
}
 } else {
if (!d) {
   set_state(PART:elm.swallow.content, default, 0.0);
   set_state(PART:sizer.content, default, 0.0);
   set_state(PART:elm.text, icononly, 0.0);
   set_state(PART:icon_clip, default, 0.0);
   set_state(PART:event, default, 0.0);
} else {
   set_state(PART:elm.swallow.content, default, 0.0);
   set_state(PART:sizer.content, default, 0.0);
   set_state(PART:elm.text, icononly, 0.0);
   set_state(PART:icon_clip, disabled, 0.0);
   set_state(PART:event, disabled, 0.0);
}
 }
  }
   }
   parts {
  part { name: base; mouse_events: 0;
 description { state: default 0.0;
image.normal: button_outline.png;
image.border: 13 13 13 13;
image.middle: SOLID;
rel1.offset: 0 0;
rel2.offset: -1 -1;
fill.smooth: 0;
 }
 description { state: focus 0.0;
inherit: default 0.0;
image.normal: button_normal.png;
 }
 description { state: clicked 0.0;
inherit: default 0.0;
image.normal: button_normal.png;
 }
  }
  part { name: icon_clip; type: RECT;
 description { state: default 0.0;
 }
 description { state: disabled 0.0;
inherit: default 0.0;
color: 255 255 255 64;
 }
  }
  part { name: elm.swallow.content; type: SWALLOW; mouse_events: 0;
 clip_to: icon_clip;
 description { state: default 0.0;
fixed: 1 0;
align: 0.0 0.5;
rel1.offset: 6 5;
rel1.to: base;
rel2.relative: 0.0 1.0;
rel2.offset: 6 -8;
rel2.to: base;
visible: 0;
 }
 description { state: visible 0.0;
inherit: 

Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Viacheslav Reutskiy
OMG, it's do my mobile client :(
Thanks. Tom, but, as I know, claws have not port to android

-
Best regards
Viacheslav Reutskyi (rimmed)



On 04/28/2015 12:55 PM, Tom Hacohen wrote:
 Congratulations. You've just won the shittiest email client of the ML
 award. We've had some very good entries over the years, but this tops
 them all.

 You can collect your award at: http://www.claws-mail.org/

 --
 Tom.

 On 28/04/15 10:39, Viacheslav Reutskyi wrote:
  Hello.
  Add this line to your programs :
  target: elm.text;
  If you want to change the state for a few part, in program, you must set
  each part as target for program.
  I am want propose to try Eflete. This is the graphical editor for 
 widget
  styles.
  -
  Best regards
  Viacheslav Reutskyi
  12:04, April 28, 2015, Olliver Schinagl :

To reply to myself, i'll paste the relevant sections so you don't have
to figure out what exactly i did ;)
       part { name: elm.text; type: TEXT; mouse_events: 0;
          scale: 1;
          description { state: default 0.0;
             rel1.offset: 0 5;
             rel1.relative: 1.0 0.0;
             rel1.to_x: elm.swallow.content;
             rel1.to_y: base;
             rel2.offset: -8 -8;
             rel2.to: base;
             color_class: button_text;
             text { font: FN; size: 8;
                align: 0.5 0.5;
                min: 0 0;
                text_class: button;
             }
             visible: 0;
          }
+ Â Â Â Â description { state: focus 0.0;
+ Â Â Â Â Â Â inherit: default 0.0;
+ Â Â Â Â Â Â color: 0 0 0 255;
+ Â Â Â Â }
+ Â Â Â description { state: clicked 0.0;
+ Â Â Â Â Â Â Â inherit: default 0.0;
+ Â Â Â Â Â Â Â color: 0 0 0 255;
+ Â Â Â }
and all off the following is +
    programs {
       program { name: button_unfocus; source: elm;
          signal: elm,action,unfocus; source: elm;
      action: STATE_SET default 0.0;
          target: base;
       }
       program { name: button_focus; source: elm;
          signal: elm,action,focus; source: elm;
      action: STATE_SET focus 0.0;
          target: base;
       }
The idea was, that when a button received the focus, unfocused or
'clicked' state, the font color of the button text changes (because 
 the
image normal image is really unreadable with a white font, whereas the
outline image is really horrible to read witha  black font.
Olliver
On 28-04-15 08:20, Olliver Schinagl wrote:

 Hey list,
 I've been playing with the elm_button edc (see attached) and wanted 
 to
 change the text color of a button when the state is clicked (and/or
 focused). Can anybody verify my syntax is wrong, since it does not
 work at all :(
 Changing the font-color works fine for the elm.text for the default
 state just fine, just not on the states i've described.
 Thank you,
 Olliver
 
 
--
 One dashboard for servers and applications across 
 Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable 
 Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Met vriendelijke groeten, Kind regards, ä¸äº²åçé®å
Olliver Schinagl
Research  Development
Ultimaker B.V.
http://www.ultimaker.com
--
IMAGINE IT  MAKE IT
Meet us online at Twitter , Facebook
, Google+
www.ultimaker.com

 --

One dashboard for servers and applications across 
 Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable 
 Insights
Deep dive visibility with transaction 

Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Tom Hacohen
On 28/04/15 11:09, Viacheslav Reutskiy wrote:
 OMG, it's do my mobile client :(
 Thanks. Tom, but, as I know, claws have not port to android

I was joking, I don't use claws myself. Was just bringing it to your 
attention.

If you're looking for a good mobile client for Android, I'd recommend K9 
mail. Also, I hear the gmail app now supports other mail providers, but 
it's up to you if you'd like to use google for yet another thing. :)

--
Tom.

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread The Rasterman
On Tue, 28 Apr 2015 12:39:56 +0300 Viacheslav Reutskyi rim...@yandex.ru said:

WTH? i have never seen this level of email-mangle before.

Hello.
Add this line to your programs :
target: elm.text;
If you want to change the state for a few part, in program, you must set
each part as target for program.
I am want propose to try Eflete. This is the graphical editor for widget
styles.
-
Best regards
Viacheslav Reutskyi
12:04, April 28, 2015, Olliver Schinagl :
 
  To reply to myself, i'll paste the relevant sections so you don't have
  to figure out what exactly i did ;)
  Â Â Â Â Â Â Â part { name: elm.text; type: TEXT; mouse_events: 0;
  Â Â Â Â Â Â Â Â Â Â scale: 1;
  Â Â Â Â Â Â Â Â Â Â description { state: default 0.0;
  Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.offset: 0 5;
  Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.relative: 1.0 0.0;
  Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.to_x: elm.swallow.content;
  Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.to_y: base;
  Â Â Â Â Â Â Â Â Â Â Â Â Â rel2.offset: -8 -8;
  Â Â Â Â Â Â Â Â Â Â Â Â Â rel2.to: base;
  Â Â Â Â Â Â Â Â Â Â Â Â Â color_class: button_text;
  Â Â Â Â Â Â Â Â Â Â Â Â Â text { font: FN; size: 8;
  Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â align: 0.5 0.5;
  Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â min: 0 0;
  Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â text_class: button;
  Â Â Â Â Â Â Â Â Â Â Â Â Â }
  Â Â Â Â Â Â Â Â Â Â Â Â Â visible: 0;
  Â Â Â Â Â Â Â Â Â Â }
  + Â Â Â Â description { state: focus 0.0;
  + Â Â Â Â Â Â inherit: default 0.0;
  + Â Â Â Â Â Â color: 0 0 0 255;
  + Â Â Â Â }
  + Â Â Â description { state: clicked 0.0;
  + Â Â Â Â Â Â Â inherit: default 0.0;
  + Â Â Â Â Â Â Â color: 0 0 0 255;
  + Â Â Â }
  and all off the following is +
  Â Â Â Â programs {
  Â Â Â Â Â Â Â program { name: button_unfocus; source: elm;
  Â Â Â Â Â Â Â Â Â Â signal: elm,action,unfocus; source: elm;
  Â Â Â Â Â Â action: STATE_SET default 0.0;
  Â Â Â Â Â Â Â Â Â Â target: base;
  Â Â Â Â Â Â Â }
  Â Â Â Â Â Â Â program { name: button_focus; source: elm;
  Â Â Â Â Â Â Â Â Â Â signal: elm,action,focus; source: elm;
  Â Â Â Â Â Â action: STATE_SET focus 0.0;
  Â Â Â Â Â Â Â Â Â Â target: base;
  Â Â Â Â Â Â Â }
  The idea was, that when a button received the focus, unfocused or
  'clicked' state, the font color of the button text changes (because the
  image normal image is really unreadable with a white font, whereas the
  outline image is really horrible to read witha  black font.
  Olliver
  On 28-04-15 08:20, Olliver Schinagl wrote:
 
  Â Hey list,
  Â I've been playing with the elm_button edc (see attached) and wanted to
  Â change the text color of a button when the state is clicked (and/or
  Â focused). Can anybody verify my syntax is wrong, since it does not
  Â work at all :(
  Â Changing the font-color works fine for the elm.text for the default
  Â state just fine, just not on the states i've described.
  Â Thank you,
  Â Olliver
  Â
 
  --
  Â One dashboard for servers and applications across
 Physical-Virtual-Cloud  Widest out-of-the-box monitoring support with 50+
 applications  Performance metrics, stats and reports that give you
 Actionable Insights  Deep dive visibility with transaction tracing using APM
 Insight. Â http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
  Â ___
  Â enlightenment-devel mailing list
  Â enlightenment-devel@lists.sourceforge.net
  Â https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
  --
  Met vriendelijke groeten, Kind regards, ä¸äº²åçé®å
  Olliver Schinagl
  Research  Development
  Ultimaker B.V.
  http://www.ultimaker.com
  --
  IMAGINE IT  MAKE IT
  Meet us online at Twitter , Facebook
  , Google+
  www.ultimaker.com
  
 --
  
  One dashboard for servers and applications across Physical-Virtual-Cloud
  Widest out-of-the-box monitoring support with 50+ applications
  Performance metrics, stats and reports that give you Actionable Insights
  Deep dive visibility with transaction tracing using APM Insight.
  http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 --
 One dashboard for servers and applications across Physical-Virtual-Cloud 
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, 

Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Viacheslav Reutskiy

On 04/28/2015 01:12 PM, Tom Hacohen wrote:
 On 28/04/15 11:09, Viacheslav Reutskiy wrote:
 OMG, it's do my mobile client :(
 Thanks. Tom, but, as I know, claws have not port to android
 I was joking, I don't use claws myself. Was just bringing it to your
 attention.

 If you're looking for a good mobile client for Android, I'd recommend K9
 mail. Also, I hear the gmail app now supports other mail providers, but
 it's up to you if you'd like to use google for yet another thing. :)

Thanks, I will try.

 --
 Tom.

 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-- 
Best regards Viacheslav Reutskyi

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Viacheslav Reutskyi

   Hello.
   Add this line to your programs :
   target: elm.text;
   If you want to change the state for a few part, in program, you must set
   each part as target for program.
   I am want propose to try Eflete. This is the graphical editor for widget
   styles.
   -
   Best regards
   Viacheslav Reutskyi
   12:04, April 28, 2015, Olliver Schinagl :

 To reply to myself, i'll paste the relevant sections so you don't have
 to figure out what exactly i did ;)
 Â Â Â Â Â Â Â part { name: elm.text; type: TEXT; mouse_events: 0;
 Â Â Â Â Â Â Â Â Â Â scale: 1;
 Â Â Â Â Â Â Â Â Â Â description { state: default 0.0;
 Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.offset: 0 5;
 Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.relative: 1.0 0.0;
 Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.to_x: elm.swallow.content;
 Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.to_y: base;
 Â Â Â Â Â Â Â Â Â Â Â Â Â rel2.offset: -8 -8;
 Â Â Â Â Â Â Â Â Â Â Â Â Â rel2.to: base;
 Â Â Â Â Â Â Â Â Â Â Â Â Â color_class: button_text;
 Â Â Â Â Â Â Â Â Â Â Â Â Â text { font: FN; size: 8;
 Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â align: 0.5 0.5;
 Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â min: 0 0;
 Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â text_class: button;
 Â Â Â Â Â Â Â Â Â Â Â Â Â }
 Â Â Â Â Â Â Â Â Â Â Â Â Â visible: 0;
 Â Â Â Â Â Â Â Â Â Â }
 + Â Â Â Â description { state: focus 0.0;
 + Â Â Â Â Â Â inherit: default 0.0;
 + Â Â Â Â Â Â color: 0 0 0 255;
 + Â Â Â Â }
 + Â Â Â description { state: clicked 0.0;
 + Â Â Â Â Â Â Â inherit: default 0.0;
 + Â Â Â Â Â Â Â color: 0 0 0 255;
 + Â Â Â }
 and all off the following is +
 Â Â Â Â programs {
 Â Â Â Â Â Â Â program { name: button_unfocus; source: elm;
 Â Â Â Â Â Â Â Â Â Â signal: elm,action,unfocus; source: elm;
 Â Â Â Â Â Â action: STATE_SET default 0.0;
 Â Â Â Â Â Â Â Â Â Â target: base;
 Â Â Â Â Â Â Â }
 Â Â Â Â Â Â Â program { name: button_focus; source: elm;
 Â Â Â Â Â Â Â Â Â Â signal: elm,action,focus; source: elm;
 Â Â Â Â Â Â action: STATE_SET focus 0.0;
 Â Â Â Â Â Â Â Â Â Â target: base;
 Â Â Â Â Â Â Â }
 The idea was, that when a button received the focus, unfocused or
 'clicked' state, the font color of the button text changes (because the
 image normal image is really unreadable with a white font, whereas the
 outline image is really horrible to read witha  black font.
 Olliver
 On 28-04-15 08:20, Olliver Schinagl wrote:

 Â Hey list,
 Â I've been playing with the elm_button edc (see attached) and wanted to
 Â change the text color of a button when the state is clicked (and/or
 Â focused). Can anybody verify my syntax is wrong, since it does not
 Â work at all :(
 Â Changing the font-color works fine for the elm.text for the default
 Â state just fine, just not on the states i've described.
 Â Thank you,
 Â Olliver
 Â 
 --
 Â One dashboard for servers and applications across Physical-Virtual-Cloud
 Â Widest out-of-the-box monitoring support with 50+ applications
 Â Performance metrics, stats and reports that give you Actionable Insights
 Â Deep dive visibility with transaction tracing using APM Insight.
 Â http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 Â ___
 Â enlightenment-devel mailing list
 Â enlightenment-devel@lists.sourceforge.net
 Â https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

 --
 Met vriendelijke groeten, Kind regards, ä¸äº²åçé®å
 Olliver Schinagl
 Research  Development
 Ultimaker B.V.
 http://www.ultimaker.com
 --
 IMAGINE IT  MAKE IT
 Meet us online at Twitter , Facebook
 , Google+
 www.ultimaker.com
 --
 
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___

Re: [E-devel] Use a different font for 'clicked' state

2015-04-28 Thread Tom Hacohen
Congratulations. You've just won the shittiest email client of the ML 
award. We've had some very good entries over the years, but this tops 
them all.

You can collect your award at: http://www.claws-mail.org/

--
Tom.

On 28/04/15 10:39, Viacheslav Reutskyi wrote:

 Hello.
 Add this line to your programs :
 target: elm.text;
 If you want to change the state for a few part, in program, you must set
 each part as target for program.
 I am want propose to try Eflete. This is the graphical editor for widget
 styles.
 -
 Best regards
 Viacheslav Reutskyi
 12:04, April 28, 2015, Olliver Schinagl :

   To reply to myself, i'll paste the relevant sections so you don't have
   to figure out what exactly i did ;)
   Â Â Â Â Â Â Â part { name: elm.text; type: TEXT; mouse_events: 0;
   Â Â Â Â Â Â Â Â Â Â scale: 1;
   Â Â Â Â Â Â Â Â Â Â description { state: default 0.0;
   Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.offset: 0 5;
   Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.relative: 1.0 0.0;
   Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.to_x: elm.swallow.content;
   Â Â Â Â Â Â Â Â Â Â Â Â Â rel1.to_y: base;
   Â Â Â Â Â Â Â Â Â Â Â Â Â rel2.offset: -8 -8;
   Â Â Â Â Â Â Â Â Â Â Â Â Â rel2.to: base;
   Â Â Â Â Â Â Â Â Â Â Â Â Â color_class: button_text;
   Â Â Â Â Â Â Â Â Â Â Â Â Â text { font: FN; size: 8;
   Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â align: 0.5 0.5;
   Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â min: 0 0;
   Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â text_class: button;
   Â Â Â Â Â Â Â Â Â Â Â Â Â }
   Â Â Â Â Â Â Â Â Â Â Â Â Â visible: 0;
   Â Â Â Â Â Â Â Â Â Â }
   + Â Â Â Â description { state: focus 0.0;
   + Â Â Â Â Â Â inherit: default 0.0;
   + Â Â Â Â Â Â color: 0 0 0 255;
   + Â Â Â Â }
   + Â Â Â description { state: clicked 0.0;
   + Â Â Â Â Â Â Â inherit: default 0.0;
   + Â Â Â Â Â Â Â color: 0 0 0 255;
   + Â Â Â }
   and all off the following is +
   Â Â Â Â programs {
   Â Â Â Â Â Â Â program { name: button_unfocus; source: elm;
   Â Â Â Â Â Â Â Â Â Â signal: elm,action,unfocus; source: elm;
   Â Â Â Â Â Â action: STATE_SET default 0.0;
   Â Â Â Â Â Â Â Â Â Â target: base;
   Â Â Â Â Â Â Â }
   Â Â Â Â Â Â Â program { name: button_focus; source: elm;
   Â Â Â Â Â Â Â Â Â Â signal: elm,action,focus; source: elm;
   Â Â Â Â Â Â action: STATE_SET focus 0.0;
   Â Â Â Â Â Â Â Â Â Â target: base;
   Â Â Â Â Â Â Â }
   The idea was, that when a button received the focus, unfocused or
   'clicked' state, the font color of the button text changes (because the
   image normal image is really unreadable with a white font, whereas the
   outline image is really horrible to read witha  black font.
   Olliver
   On 28-04-15 08:20, Olliver Schinagl wrote:

   Â Hey list,
   Â I've been playing with the elm_button edc (see attached) and wanted to
   Â change the text color of a button when the state is clicked (and/or
   Â focused). Can anybody verify my syntax is wrong, since it does not
   Â work at all :(
   Â Changing the font-color works fine for the elm.text for the default
   Â state just fine, just not on the states i've described.
   Â Thank you,
   Â Olliver
   Â 
 
   --
   Â One dashboard for servers and applications across 
 Physical-Virtual-Cloud
   Â Widest out-of-the-box monitoring support with 50+ applications
   Â Performance metrics, stats and reports that give you Actionable 
 Insights
   Â Deep dive visibility with transaction tracing using APM Insight.
   Â http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
   Â ___
   Â enlightenment-devel mailing list
   Â enlightenment-devel@lists.sourceforge.net
   Â https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

   --
   Met vriendelijke groeten, Kind regards, ä¸äº²åçé®å
   Olliver Schinagl
   Research  Development
   Ultimaker B.V.
   http://www.ultimaker.com
   --
   IMAGINE IT  MAKE IT
   Meet us online at Twitter , Facebook
   , Google+
   www.ultimaker.com
   
 --
   
   One dashboard for servers and applications across Physical-Virtual-Cloud
   Widest out-of-the-box monitoring support with 50+ applications
   Performance metrics, stats and reports that give you Actionable Insights
   Deep dive visibility with transaction tracing using APM Insight.
   http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net