michael bouchaud | 1 Jul 2010 11:31
Picon

[E-devel] Focus problem with edje_external

Hi, I made a little edje with edje_external.
This is very basic but I have a problem of focus.
Maybee I do something wrong, but noway I don't find where come the problem.
To see the problem. Edit the first and second entry. After this try to
change the
content of the first entry. The entry don't want change his content and you
stay
on the second entry.

I hope to be clear.

Cheers
  Michael
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
michael bouchaud | 1 Jul 2010 11:33
Picon

Re: [E-devel] Focus problem with edje_external

Sorry I forgot to attach my program :/

2010/7/1 michael bouchaud <michael.bouchaud <at> gmail.com>

> Hi, I made a little edje with edje_external.
> This is very basic but I have a problem of focus.
> Maybee I do something wrong, but noway I don't find where come the problem.
> To see the problem. Edit the first and second entry. After this try to
> change the
> content of the first entry. The entry don't want change his content and you
> stay
> on the second entry.
>
> I hope to be clear.
>
> Cheers
>   Michael
>
>
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
(Continue reading)

michael bouchaud | 1 Jul 2010 11:46
Picon

Re: [E-devel] Focus problem with edje_external

Sorry, sorry, sorry ....
you can download the archive here
-> http://rapidshare.com/files/404241721/test-edje-external.tar.bz2.html

2010/7/1 michael bouchaud <michael.bouchaud <at> gmail.com>

> Sorry I forgot to attach my program :/
>
> 2010/7/1 michael bouchaud <michael.bouchaud <at> gmail.com>
>
> Hi, I made a little edje with edje_external.
>> This is very basic but I have a problem of focus.
>> Maybee I do something wrong, but noway I don't find where come the
>> problem.
>> To see the problem. Edit the first and second entry. After this try to
>> change the
>> content of the first entry. The entry don't want change his content and
>> you stay
>> on the second entry.
>>
>> I hope to be clear.
>>
>> Cheers
>>   Michael
>>
>>
>
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
(Continue reading)

Iván Briano (Sachiel | 1 Jul 2010 16:32
Picon

Re: [E-devel] Focus problem with edje_external

On Thu, Jul 1, 2010 at 6:46 AM, michael bouchaud
<michael.bouchaud <at> gmail.com> wrote:
> Sorry, sorry, sorry ....
> you can download the archive here
> -> http://rapidshare.com/files/404241721/test-edje-external.tar.bz2.html
>

No time now to look at it, but how are you loading the edje file? This is
a known problem with the way Elementary handles focus and should
be solved by using an elm_layout to load the .edj file instead of just
using edje_object_add().

> 2010/7/1 michael bouchaud <michael.bouchaud <at> gmail.com>
>
>> Sorry I forgot to attach my program :/
>>
>> 2010/7/1 michael bouchaud <michael.bouchaud <at> gmail.com>
>>
>> Hi, I made a little edje with edje_external.
>>> This is very basic but I have a problem of focus.
>>> Maybee I do something wrong, but noway I don't find where come the
>>> problem.
>>> To see the problem. Edit the first and second entry. After this try to
>>> change the
>>> content of the first entry. The entry don't want change his content and
>>> you stay
>>> on the second entry.
>>>
>>> I hope to be clear.
>>>
(Continue reading)

Atton Jonathan | 1 Jul 2010 16:44
Picon

Re: [E-devel] Current Application Dev Status

I agree with gustavo, in a perfect world all the UI is created in the edje
file. EXTERNAL is required to do this but I do not know what the status is.

Currently the UI of Enki is hard-coded in the C-files but I plan to rewrite
it with the EXTERNAL way.

2010/6/30 Gustavo Sverzut Barbieri <barbieri <at> profusion.mobi>

> On Wed, Jun 30, 2010 at 6:09 PM, Christian K.
> <waffenklang <at> googlemail.com> wrote:
> > Hello,
> >
> > after a long break of programming linux applications, I want to
> > restart with some userspace applications using E17.
> >
> > As the development of e is rapid, my question is:
> >
> > What is the current state-of-the art method of developing user
> > applications using e17?
> > Using Elementary and creating all within c code?
> > Using edj to create ui and just write the logic in code?
> > or something else?
>
> I'm one that advocates doing all the layout and as much as possible of
> the UI in edje, jus the logic in C.
>
> I do not like using much things like buttons to build fancy uis, for
> forms, okay, but fighting them for some nice interactive UI is not
> good and although Elementary provides means to theme buttons, I rather
> design the UI stuff in Edje.
(Continue reading)

michael bouchaud | 1 Jul 2010 16:53
Picon

Re: [E-devel] Focus problem with edje_external

Thx, yes I was using edje_object_add.
So I have migrated this with elm_layout_add.
And now, no focus problem.

one more times thx for your help :)

2010/7/1 Iván Briano (Sachiel) <sachieru <at> gmail.com>

> On Thu, Jul 1, 2010 at 6:46 AM, michael bouchaud
> <michael.bouchaud <at> gmail.com> wrote:
> > Sorry, sorry, sorry ....
> > you can download the archive here
> > -> http://rapidshare.com/files/404241721/test-edje-external.tar.bz2.html
> >
>
> No time now to look at it, but how are you loading the edje file? This is
> a known problem with the way Elementary handles focus and should
> be solved by using an elm_layout to load the .edj file instead of just
> using edje_object_add().
>
> > 2010/7/1 michael bouchaud <michael.bouchaud <at> gmail.com>
> >
> >> Sorry I forgot to attach my program :/
> >>
> >> 2010/7/1 michael bouchaud <michael.bouchaud <at> gmail.com>
> >>
> >> Hi, I made a little edje with edje_external.
> >>> This is very basic but I have a problem of focus.
> >>> Maybee I do something wrong, but noway I don't find where come the
> >>> problem.
(Continue reading)

Christian K. | 1 Jul 2010 20:16

Re: [E-devel] Current Application Dev Status

Thanks :)

Are these EXTERNAL part types documented anywhere? I'm too blind to
find something..

2010/7/1 Christian K. <waffenklang <at> googlemail.com>:
> Thanks :)
>
> Are these EXTERNAL part types documented anywhere? I'm too blind to
> find something..
>
>
>
> 2010/7/1 Atton Jonathan <jonathan.atton <at> gmail.com>:
>> I agree with gustavo, in a perfect world all the UI is created in the edje
>> file. EXTERNAL is required to do this but I do not know what the status is.
>>
>> Currently the UI of Enki is hard-coded in the C-files but I plan to rewrite
>> it with the EXTERNAL way.
>>
>> 2010/6/30 Gustavo Sverzut Barbieri <barbieri <at> profusion.mobi>
>>>
>>> On Wed, Jun 30, 2010 at 6:09 PM, Christian K.
>>> <waffenklang <at> googlemail.com> wrote:
>>> > Hello,
>>> >
>>> > after a long break of programming linux applications, I want to
>>> > restart with some userspace applications using E17.
>>> >
>>> > As the development of e is rapid, my question is:
(Continue reading)

Atton Jonathan | 1 Jul 2010 20:22
Picon

[E-devel] edje-external and box

hello,

How can I retrieve a external object which is in a edje box by using the
name of the object ?

A simple example :

part {
      name: "tools";
      type: BOX;
      description {}
         box {
            items {
                  item {
                        type: GROUP;
                        source: "object name";
                  ...

group { \
      name:"object name;" \
      parts { \
            part { \
                  name: "object name"; \
                  type: EXTERNAL; \
                  repeat_events: 0; \
                  source: "elm/button"; \
   .....

I think we should improve edje_object_part_external_object_get(), this way
we can easily place the external object where we wish in the theme.
(Continue reading)

Boris 'billiob' Faure | 1 Jul 2010 20:28
Picon
Gravatar

Re: [E-devel] edje-external and box

On Thu, Jul 1, 2010 at 20:22, Atton Jonathan <jonathan.atton <at> gmail.com> wrote:
> hello,
>
> How can I retrieve a external object which is in a edje box by using the
> name of the object ?
>
> A simple example :
>
>
> part {
>      name: "tools";
>      type: BOX;
>      description {}
>         box {
>            items {
>                  item {
>                        type: GROUP;
>                        source: "object name";
                         name: "plop"
>                  ...
>
>
> group { \
>      name:"object name;" \
>      parts { \
>            part { \
>                  name: "object name"; \
>                  type: EXTERNAL; \
>                  repeat_events: 0; \
>                  source: "elm/button"; \
(Continue reading)

Atton Jonathan | 1 Jul 2010 20:39
Picon

Re: [E-devel] edje-external and box

BAD BAD WRONG :D

If you do that you fix the position of the button in a box :/

wu should use a recursive search in boxs

2010/7/1 Boris 'billiob' Faure <billiob <at> gmail.com>

> On Thu, Jul 1, 2010 at 20:22, Atton Jonathan <jonathan.atton <at> gmail.com>
> wrote:
> > hello,
> >
> > How can I retrieve a external object which is in a edje box by using the
> > name of the object ?
> >
> > A simple example :
> >
> >
> > part {
> >      name: "tools";
> >      type: BOX;
> >      description {}
> >         box {
> >            items {
> >                  item {
> >                        type: GROUP;
> >                        source: "object name";
>                          name: "plop"
> >                  ...
> >
(Continue reading)


Gmane