On 12/07/11 00:14, Jonas M. Gastal wrote:
> Hey all,
>
> I've been trying to write documentation for elm_label, however there are a
> number of things that seem to not work:
>   - elm_label_ellipsis_set() is only respected for ELM_WRAP_CHAR
It also works with ELM_WRAP_WORD/NONE here...

>   - elm_label_slide_set() doesn't work(no change setting it to true or false)
Did you set up style?
     elm_object_style_set(label, "slide_long");
Slide duration?
     elm_label_slide_duration_set(label, 5);

>   - elm_object_style_set(label, "marker") causes the label's text to not show
Dunno about this one.
>   - elm_label_wrap_width_set() and elm_label_wrap_height_set() do nothing
Wrap width and wrap height define size limits on the object. Calling 
them does essentially two things:
1. Set hint_max on the label object to the wrap sizes.
2. Make sure the object wraps at those limits no matter what. (in the 
case of height restriction, it's making sure the text gets ellipsized).

I hope this helped,
Tom.

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to