Kim Shinwoo | 29 Jun 2012 15:06
Picon

[E-devel] [Patch][layout] select layout in access mode

Dear all, hello.

in access mode, all text, textblock parts are ready to read. but this would
be not efficient way and in case of the widget which uses the elm_layout
internally, access mode does not work properly. for example, the elm_label
should speak "Label(EM_ACCESS_TYPE), Some Text(ELM_ACCESS_INFO)" but the
elm_label speaks "Textblock, Some Text" because the label uses layout
internally. Moreover access mode will create access widget for the
textblock in the label. So the layout should be registered, if necessary.
The attached is for this.

Sincerely,
Shinwoo Kim.
Attachment (elm_layout.access.set.diff): application/octet-stream, 2632 bytes
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Carsten Haitzler | 30 Jun 2012 08:29
Favicon
Gravatar

Re: [E-devel] [Patch][layout] select layout in access mode

On Fri, 29 Jun 2012 22:06:27 +0900 Kim Shinwoo <kimcinoo.efl <at> gmail.com> said:

> Dear all, hello.
> 
> in access mode, all text, textblock parts are ready to read. but this would
> be not efficient way and in case of the widget which uses the elm_layout
> internally, access mode does not work properly. for example, the elm_label
> should speak "Label(EM_ACCESS_TYPE), Some Text(ELM_ACCESS_INFO)" but the
> elm_label speaks "Textblock, Some Text" because the label uses layout
> internally. Moreover access mode will create access widget for the
> textblock in the label. So the layout should be registered, if necessary.
> The attached is for this.

need  <at> since in docs. :) and why no get if there is a set? :)

--

-- 
------------- Codito, ergo sum - "I code, therefore I am" --------------
The Rasterman (Carsten Haitzler)    raster <at> rasterman.com

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
Kim Shinwoo | 2 Jul 2012 09:27
Picon

Re: [E-devel] [Patch][layout] select layout in access mode

Thanks for your response.

now  <at> since is there. and "why no get if there is set?".. i don't get this
fully, um.. i can get the "textblock" for the ELM_ACCESS_TYPE with out
patch. on this status it would be possible to set the ELM_ACCESS_TYPE to
what widget wants. in this case it woks properly as "Widget Type, Text",
but there is unnecessary access object. So setting access mode would be
better than now. Thanks.

Sincerely
Shinwoo Kim.

2012/6/30 Carsten Haitzler <raster <at> rasterman.com>

> On Fri, 29 Jun 2012 22:06:27 +0900 Kim Shinwoo <kimcinoo.efl <at> gmail.com>
> said:
>
> > Dear all, hello.
> >
> > in access mode, all text, textblock parts are ready to read. but this
> would
> > be not efficient way and in case of the widget which uses the elm_layout
> > internally, access mode does not work properly. for example, the
> elm_label
> > should speak "Label(EM_ACCESS_TYPE), Some Text(ELM_ACCESS_INFO)" but the
> > elm_label speaks "Textblock, Some Text" because the label uses layout
> > internally. Moreover access mode will create access widget for the
> > textblock in the label. So the layout should be registered, if necessary.
> > The attached is for this.
>
(Continue reading)

Carsten Haitzler | 3 Jul 2012 13:46
Favicon
Gravatar

Re: [E-devel] [Patch][layout] select layout in access mode

On Mon, 2 Jul 2012 16:27:09 +0900 Kim Shinwoo <kimcinoo.efl <at> gmail.com> said:

> Thanks for your response.
> 
> now  <at> since is there. and "why no get if there is set?".. i don't get this

you have elm_layout_edje_object_access_set() to enable access to all parts, but
no way to GET the state of the mode you enabled. ie
elm_layout_edje_object_access_get().

> fully, um.. i can get the "textblock" for the ELM_ACCESS_TYPE with out
> patch. on this status it would be possible to set the ELM_ACCESS_TYPE to
> what widget wants. in this case it woks properly as "Widget Type, Text",
> but there is unnecessary access object. So setting access mode would be
> better than now. Thanks.
> 
> Sincerely
> Shinwoo Kim.
> 
> 2012/6/30 Carsten Haitzler <raster <at> rasterman.com>
> 
> > On Fri, 29 Jun 2012 22:06:27 +0900 Kim Shinwoo <kimcinoo.efl <at> gmail.com>
> > said:
> >
> > > Dear all, hello.
> > >
> > > in access mode, all text, textblock parts are ready to read. but this
> > would
> > > be not efficient way and in case of the widget which uses the elm_layout
> > > internally, access mode does not work properly. for example, the
(Continue reading)

Kim Shinwoo | 4 Jul 2012 06:47
Picon

Re: [E-devel] [Patch][layout] select layout in access mode

Hello, Thanks for your response.

I revised the patch which has the way to get the state of accessibility now.
But I'm not sure the NAME of api, which is better
elm_layout_edje_object_access_set() or
elm_layout_edje_object_CAN_access_set()?
Please give your feedback. Thanks again.

Cordially,
Shinwoo Kim.

2012/7/3 Carsten Haitzler <raster <at> rasterman.com>

> On Mon, 2 Jul 2012 16:27:09 +0900 Kim Shinwoo <kimcinoo.efl <at> gmail.com>
> said:
>
> > Thanks for your response.
> >
> > now  <at> since is there. and "why no get if there is set?".. i don't get this
>
> you have elm_layout_edje_object_access_set() to enable access to all
> parts, but
> no way to GET the state of the mode you enabled. ie
> elm_layout_edje_object_access_get().
>
> > fully, um.. i can get the "textblock" for the ELM_ACCESS_TYPE with out
> > patch. on this status it would be possible to set the ELM_ACCESS_TYPE to
> > what widget wants. in this case it woks properly as "Widget Type, Text",
> > but there is unnecessary access object. So setting access mode would be
> > better than now. Thanks.
(Continue reading)

Carsten Haitzler | 6 Jul 2012 06:04
Favicon
Gravatar

Re: [E-devel] [Patch][layout] select layout in access mode

On Wed, 4 Jul 2012 13:47:39 +0900 Kim Shinwoo <kimcinoo.efl <at> gmail.com> said:

in svn and i chose to change it to "CAN_access" . :) thanks muchly! :)

> Hello, Thanks for your response.
> 
> I revised the patch which has the way to get the state of accessibility now.
> But I'm not sure the NAME of api, which is better
> elm_layout_edje_object_access_set() or
> elm_layout_edje_object_CAN_access_set()?
> Please give your feedback. Thanks again.
> 
> Cordially,
> Shinwoo Kim.
> 
> 2012/7/3 Carsten Haitzler <raster <at> rasterman.com>
> 
> > On Mon, 2 Jul 2012 16:27:09 +0900 Kim Shinwoo <kimcinoo.efl <at> gmail.com>
> > said:
> >
> > > Thanks for your response.
> > >
> > > now  <at> since is there. and "why no get if there is set?".. i don't get this
> >
> > you have elm_layout_edje_object_access_set() to enable access to all
> > parts, but
> > no way to GET the state of the mode you enabled. ie
> > elm_layout_edje_object_access_get().
> >
> > > fully, um.. i can get the "textblock" for the ELM_ACCESS_TYPE with out
(Continue reading)


Gmane