[E-devel] how to give focus on the swallow part

2008-10-23 Thread flower-mei
 hi all,

   If  I want to receive signal from the main group, I can set 
   self.main_group.focus=True
   thus, we can only  receive signal from the whole swallow part but  can't 
recognize which  special part?
   how can I set the focus to the swallow part so that it can receive  signal 
from the part in the swallow part?

 Thanks! 
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] how to give focus on the swallow part

2008-10-23 Thread Gustavo Sverzut Barbieri
On Thu, Oct 23, 2008 at 6:18 AM, flower-mei [EMAIL PROTECTED] wrote:
  hi all,

   If  I want to receive signal from the main group, I can set
   self.main_group.focus=True
   thus, we can only  receive signal from the whole swallow part but  can't 
 recognize which  special part?
   how can I set the focus to the swallow part so that it can receive  signal 
 from the part in the swallow part?

dealing with swallow parts is just like dealing with regular objects,
except that you must not compete with edje in their task to manage
object properties. That is, you should not move, resize, clip,
recolor, show or hide, all other stuff, including focus, is fine to
change.

that said, have you tried to:

 self.my_swallowed_object.focus = True

or

self.my_edje.part_object_get(my_swallow).focus = True

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: [EMAIL PROTECTED]
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] edje_cc error

2008-10-23 Thread flower-mei
hi all,
 With  efl development enviroment, I have install all needed lib but when I use 
edje_cc  it has the error:

   Missing PNG or JPEG loader modules for Evas or file does not exist, or is 
not readable.
  I don't know which lib have not  installed?

   who know the  reason?  
  thanks !
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje_cc error

2008-10-23 Thread Gustavo Sverzut Barbieri
On Thu, Oct 23, 2008 at 8:00 AM, flower-mei [EMAIL PROTECTED] wrote:
 hi all,
  With  efl development enviroment, I have install all needed lib but when I 
 use edje_cc  it has the error:

   Missing PNG or JPEG loader modules for Evas or file does not exist, or is 
 not readable.
  I don't know which lib have not  installed?

probably you missed evas loaders/savers, you need libpng and libjpeg
for those to be compiled, see ./configure output inside evas
directory.

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: [EMAIL PROTECTED]
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Pager wheel flipping problem with b_and_w theme

2008-10-23 Thread Viktor Kojouharov
There's a really annoying bug with the b_and_w theme (now the default
theme) and the pager module. If flipping desktops on mouse wheel is
enabled, scrolling on the pager will actually flip across 2 desks,
instead of one. There was no such problem with the bling theme, or any
other theme I know about.

Toma, if you have some time, can you look at this problem?


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] About animate

2008-10-23 Thread flower-mei
hi all,

   Just forgive me for my trouble for you
   I  know that   the animate  can  be started  when the signal  be emited, 
   but I don't know  other way to emited the signal or set up the signal except 
when the  mouse clicked signal 
 is emitted.

 thanks !  :) 
   
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] About animate

2008-10-23 Thread Matt Barclay
You can emit signals any time you want with:

edje_object_signal_emit(edje, my,fancy,signal, mysource);

For debugging, I like to register a stdin callback that let's me type
in a signal on STDIN which is then emitted in the application.   Then
I can simulate events for the GUI and the application:

int main(void) {

ecore_main_fd_handler_add(STDIN_FILENO, ECORE_FD_READ, stdin_cb, NULL,
NULL, NULL);

}

int stdin_cb(void *data, Ecore_Fd_Handler *fd_handler)
{
  int fd,num;
  char buf[1024];

  fd = ecore_main_fd_handler_fd_get(fd_handler);

  num = read(fd, buf, sizeof(buf));
  if(num  1)
{
  buf[num-1] = 0;
  printf(Emmiting Signal `%s'\n, buf);
  edje_object_signal_emit(edje, buf, stdin);
}

  return 1;
}

Hope that helps.

Regards,
Matt

On Thu, Oct 23, 2008 at 4:03 AM, flower-mei [EMAIL PROTECTED] wrote:
 hi all,

   Just forgive me for my trouble for you
   I  know that   the animate  can  be started  when the signal  be emited,
   but I don't know  other way to emited the signal or set up the signal 
 except when the  mouse clicked signal
  is emitted.

  thanks !  :)

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] About animate

2008-10-23 Thread Rafael Antognolli
Hi,

From the program code you can use Edje API:
edje_object_signal_emit(Evas_Object *obj, const char *emission, const
char *source);

And inside your theme, any program can do:

action: SIGNAL_EMIT name source;
target: part_name;

On Thu, Oct 23, 2008 at 9:03 AM, flower-mei [EMAIL PROTECTED] wrote:
 hi all,

   Just forgive me for my trouble for you
   I  know that   the animate  can  be started  when the signal  be emited,
   but I don't know  other way to emited the signal or set up the signal 
 except when the  mouse clicked signal
  is emitted.

  thanks !  :)

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




-- 
Rafael Antognolli
ProFUSION embedded systems
http://profusion.mobi

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] FOSDEM 2009

2008-10-23 Thread Sevcsik András
On Wed, Oct 22, 2008 at 3:13 PM, Nicolas Aguirre
[EMAIL PROTECTED]wrote:

 2008/10/22 Vincent Torri [EMAIL PROTECTED]

 
 
  no one is interested at all ?
 

 I'll be there.


Me too.



 --
 Nicolas Aguirre
 Mail: [EMAIL PROTECTED]
 Web: http://www.digital-corner.org
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




-- 
Minden jót,
Sevcsik András
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] FOSDEM 2009

2008-10-23 Thread Stephane Bauland
Sevcsik András wrote:
 On Wed, Oct 22, 2008 at 3:13 PM, Nicolas Aguirre
 [EMAIL PROTECTED]wrote:

   
 2008/10/22 Vincent Torri [EMAIL PROTECTED]

 
 no one is interested at all ?

   
 I'll be there.
 


 Me too.
   
I think i will be with you too. Not sure right now.


   
 --
 Nicolas Aguirre
 Mail: [EMAIL PROTECTED]
 Web: http://www.digital-corner.org
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

 



   


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel