Re: [E-devel] entrance

2010-05-31 Thread Vincent Pomageot
Hi,

Entrance has been removed from svn 3 month ago.
You can get it by checking out a revision before 46590.

Regards,

2010/5/31 rui kou mink...@gmail.com

 HI,where can I get the code of entrance??

 --

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




-- 
Vincent Pomageot vincent.pomag...@gmail.com

Etudiant Ingénieur
Génie Informatique - Ingénierie des Connaissances et des Supports
d'Information
Université de Technologie de Compiègne

+33 (0) 6 24 58 32 70
--

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


Re: [E-devel] E SVN: barbieri trunk/e/src/modules/mixer

2010-05-04 Thread Vincent Pomageot
On Tue, May 4, 2010 at 2:31 PM, Gustavo Sverzut Barbieri 
barbi...@profusion.mobi wrote:

 On Tue, May 4, 2010 at 9:12 AM, Vincent Pomageot
 vincent.pomag...@gmail.com wrote:
  On Mon, May 3, 2010 at 11:14 PM, Enlightenment SVN 
  no-re...@enlightenment.org wrote:
 
 
   TODO: a way to configure the volume independently of a shelf gadget.
 
 
  Maybe a new plugin for the great Everything !! :D
  - vol {up,down}
  - mute

 well, it wouldn't help much... actually the plugin, to be sane, would
 be provided by the existing mixer so we can unify the access to the
 sound card.

 the point is that the current UI and module assumes there is a gadget
 instance, you select one of these to be the card+channel to change,
 then up/down/mute go to it.

 to change it we'd have to create an UI to select the card + channel to
 use independent from gadgets (could use some of the code that does
 that for the instance configuration).

 Taking patches... :-)


Yeah i understand the problem...
would be (very) happy  proud to help but don't have the time for now (will
have more after this summer)


-- 
Vincent Pomageot vincent.pomag...@gmail.com

Etudiant Ingénieur
Génie Informatique - Ingénierie des Connaissances et des Supports
d'Information
Université de Technologie de Compiègne

+33 (0) 6 24 58 32 70
--
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] Enable Elementary to init e_dbus and efreet

2009-10-08 Thread Vincent Pomageot
Ok ! Now I understand why the static bool _elm_need_e_d_bus is there :)
You let the devs initialize what is optional but shut it down for them if
they did.

Nevertheless I should have been more precise in the description of my patch
because it also corrected a small typo in _elm_unneed_efreet():
line 412, #ifdef ELM_EDBUS should be #ifdef ELM_EFREET here..
an error that is so important... I'm so proud of me.. Will have to find
something else to do for a *real* first patch :p

Regards,

Vincent Pomageot

On Thu, Oct 8, 2009 at 2:59 AM, Carsten Haitzler ras...@rasterman.comwrote:

 On Thu, 8 Oct 2009 01:07:20 +0200 Vincent Pomageot 
 vincent.pomag...@gmail.com
 said:

  Hi,
 
  While playing whith Elementary I've spotted that e_dbus and efreet wasn't
  initialized (elm_need_{e_dbus,efreet} not called in elm_init)
  So here is my very first very little patch :)
  elm_main.c |4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)

 going to have to say no here. there is a REASON elm_need_e_dbus() and
 elm_need_efreet() are external api calls available to the app. dbus will
 need
 to go connect to debus server and thus add latency to init. efreet's init
 is
 even worse in that it starts a filesystem scan of all .desktop files. you
 dont
 want every app you run to go do these unless they really need them. so no.
 they
 are external api calls you call in your app IF you need those sepcific
 features
 in your app. in most cases people dont need them.


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




-- 
Vincent Pomageot
--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH] Enable Elementary to init e_dbus and efreet

2009-10-07 Thread Vincent Pomageot
Hi,

While playing whith Elementary I've spotted that e_dbus and efreet wasn't
initialized (elm_need_{e_dbus,efreet} not called in elm_init)
So here is my very first very little patch :)
elm_main.c |4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

-- 
Vincent Pomageot
Index: src/lib/elm_main.c
===
--- src/lib/elm_main.c  (revision 42916)
+++ src/lib/elm_main.c  (working copy)
@@ -409,7 +409,7 @@ elm_need_efreet(void)
 static void
 _elm_unneed_efreet(void)
 {
-#ifdef ELM_EDBUS
+#ifdef ELM_EFREET
if (_elm_need_efreet)
  {
 _elm_need_efreet = 0;
@@ -443,6 +443,8 @@ elm_quicklaunch_init(int argc, char **argv)
evas_init();
edje_init();
ecore_evas_init(); // FIXME: check errors
+   elm_need_e_dbus();
+   elm_need_efreet();
_elm_module_init();

_elm_exit_handler = ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT, 
_elm_signal_exit, NULL);
--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] elm_win_add() Cannot create window

2009-10-01 Thread Vincent Pomageot
Hi,

Sorry but elementary-test works for me with the latest svn revision.. Update
your working copy or if you're using a package for your distro, please
contact the package manager.

Regards,

Vincent Pomageot

On Thu, Oct 1, 2009 at 12:14 PM, Stephan Raue mailingli...@openelec.tvwrote:

 Hi all.

 i will test any programs based on evas/ ecore/ elementary... . when i am
 run under X11 the test programs from elementary i becom follow error:

 ERR:elementary elm_win.c:335 elm_win_add() Cannot create window.
 Unknown signal 11

 what can i do? Can anyone help me?

 Stephan

 --
   ### OpenELEC.tv ###
 The free and open Mediacenter Distribution 4 you
  http://www.openelec.tv



 --
 Come build with us! The BlackBerryreg; Developer Conference in SF, CA
 is the only developer event you need to attend this year. Jumpstart your
 developing skills, take BlackBerry mobile applications to market and stay
 ahead of the curve. Join us from November 9#45;12, 2009. Register now#33;
 http://p.sf.net/sfu/devconf
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




-- 
Vincent Pomageot
--
Come build with us! The BlackBerryreg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9#45;12, 2009. Register now#33;
http://p.sf.net/sfu/devconf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] everything module segv

2009-10-01 Thread Vincent Pomageot
Hi,

I've spotted a bug in everything module : browsing an empty directory makes
it crash.
Gdb led me to line 183 of evry_plugin_aggregator.c pp = lp-data where lp
is NULL.
A work around could be to check lp after its initialization line 122, but
I'm not sure it's the correct solution and that there isn't another problem
in view of the comment line 179 (eina_list_count should return 1 if there is
only one item..).

Please tell me if I have to fill a bug in trac.

Regards,

Vincent Pomageot
--
Come build with us! The BlackBerryreg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9#45;12, 2009. Register now#33;
http://p.sf.net/sfu/devconf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] everything module

2009-09-15 Thread Vincent Pomageot

 On Wed, Sep 16, 2009 at 12:18 AM, Enlightenment SVN 
 no-re...@enlightenment.org wrote:
 Log:
  enable 'everything' by default. no keybinding decided yet


Hi !

I think it's a good time for me to say that I'm fond of this module !

Thank you :)

P.S: maybe it could worth checking for aspell at compile/run time and
disabling if necessary the plugin as it could freeze e17..

Vincent Pomageot
--
Come build with us! The BlackBerryreg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9#45;12, 2009. Register now#33;
http://p.sf.net/sfu/devconf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: urandom IN trunk/TMP/st/elementary: data/themes src/bin src/lib

2009-09-13 Thread Vincent Pomageot
Hi,

The new image tog_dis_base.png is missing.

Regards,

Vincent Pomageot
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] single-line textblock auto scroll

2009-05-06 Thread Vincent Pomageot
Works fine for me too..

2009/5/7 Carsten Haitzler ras...@rasterman.com

 On Wed, 06 May 2009 19:59:38 +0200 Marco Trevisan (Treviño) 
 m...@3v1n0.net
 said:

  Carsten Haitzler (The Rasterman) wrote:
   On Tue, 05 May 2009 01:50:40 +0200 Marco Trevisan (Treviño)
   m...@3v1n0.net said:
  
   I don't know, why but also using elementary_test this is the only way
 to
   make the single-line entry to scroll as soon as you write (so to make
   the scroller follow the cursor).
   By the way, unfortunately this doesn't work with the password fields.
  
   just look at the scrolled entry test in elementary_test - it scrolls to
 the
   right for the single line entires (automatically as you type or move
 the
   cursor with arrow keys)
 
 
  It really seems bugged to me. Also using the latest elementary_test if I
  open the Entry Scrolled widget, as soon as I start typing in both the
  one-line text entries the text I write is hidden (in the left part) and
  the cursor seems to stay always in the first pixel of the entry.
  To see the text I've written I've to scroll/move the cursor with arrows
  in the left. Using the word-wrap thing this fixes the bug for the text
  (non-password) entry.
 
  Am I the only with this bug? I've it both in my freerunner and in my PC!

 you might be - for me the text auto-scrolls as i type and change the cursor
 position. have you also an up-to-date edje and evas?

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



 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Where is the edje preview program?

2009-04-27 Thread Vincent Pomageot
Hi,

There are edje_viewer and edje_editor in trunk, edje_player in PROTO...
Is it what you were looking for ?

Regards

Vincent Pomageot

2009/4/27 Zhou, Jianchun (周建春) jianchun.z...@asianux.com



 --
 Crystal Reports #45; New Free Runtime and 30 Day Trial
 Check out the new simplified licensign option that enables unlimited
 royalty#45;free distribution of the report engine for externally facing
 server and web deployment.
 http://p.sf.net/sfu/businessobjects
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Crystal Reports #45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty#45;free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: barbieri trunk/e/src/bin

2009-04-26 Thread Vincent Pomageot
Hi,

At revision 40375 :

 They are presented as a submenu with check items. Need to implement
  support in modules, so they'll check for these variables.

  DESIGNERS: could you please provide the following icons:

 * preferences-modes: contain the other icons

 * preferences-modes-presentation: system is in presentation mode,
   no screensaver, locks and dpms will be available.

 * preferences-modes-offline: system is offline, modules that keep
   polling internet services (weather, forecasts, ...) should stop
   and show I'm offline emblem. When network systems (network
   manager, connman, exhalt...) are integrated, they will change
   this state as well.


It seems to me that they are just variables to check for in the other
modules to determine a new kind of profil (like the silence mode of your
gsm).

Vincent Pomageot

2009/4/26 Viktor Kojouharov vkojouha...@gmail.com

 On Sat, 2009-04-25 at 13:54 -0700, Enlightenment SVN wrote:
  Log:
actions to toggle new modes.
 
  Author:   barbieri
  Date: 2009-04-25 13:54:12 -0700 (Sat, 25 Apr 2009)
  New Revision: 40385
 
  Modified:
trunk/e/src/bin/e_actions.c
 
  Modified: trunk/e/src/bin/e_actions.c
  ===
  --- trunk/e/src/bin/e_actions.c   2009-04-25 18:49:39 UTC (rev 40384)
  +++ trunk/e/src/bin/e_actions.c   2009-04-25 20:54:12 UTC (rev 40385)
  @@ -1801,6 +1801,22 @@
   }
 
 
  /***/
  +ACT_FN_GO(mode_presentation_toggle)
  +{
  +   e_config-mode.presentation = !e_config-mode.presentation;
  +   e_config_mode_changed();
  +   e_config_save_queue();
  +}
  +
 
 +/***/
  +ACT_FN_GO(mode_offline_toggle)
  +{
  +   e_config-mode.offline = !e_config-mode.offline;
  +   e_config_mode_changed();
  +   e_config_save_queue();
  +}
  +
 
 +/***/
   static E_Dialog *logout_dialog = NULL;
 
   static void
  @@ -2787,6 +2803,16 @@
  e_action_predef_name_set(_(Enlightenment), _(Exit Now),
exit_now, NULL, NULL, 0);
 
  +   ACT_GO(mode_presentation_toggle);
  +   e_action_predef_name_set(_(Enlightenment : Mode),
  + _(Presentation Mode Toggle),
  + mode_presentation_toggle, NULL, NULL, 0);
  +
  +   ACT_GO(mode_offline_toggle);
  +   e_action_predef_name_set(_(Enlightenment : Mode),
  + _(Offline Mode Toggle),
  + mode_offline_toggle, NULL, NULL, 0);
  +
  ACT_GO(logout);
  e_action_predef_name_set(_(System), _(Log Out), logout,
NULL, NULL, 0);
 

 What do those modes do, exactly?



 --
 Crystal Reports #45; New Free Runtime and 30 Day Trial
 Check out the new simplified licensign option that enables unlimited
 royalty#45;free distribution of the report engine for externally facing
 server and web deployment.
 http://p.sf.net/sfu/businessobjects
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Crystal Reports #45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty#45;free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] modules

2009-04-23 Thread Vincent Pomageot
Trying to optimize the usability for small screen can indeed improve user
experience with larger screen.




 yes. you will need to rebuild modules. the modules in E-MODULES-EXTRa have
 been
 fixed to pick up the release # from e and install correctly. now modules
 (and
 libs) have versioned release dirs. you will need to rebuild them so they
 install in the new release dir.


Thank you :)

vincent pomageot
--
Crystal Reports #45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty#45;free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] modules

2009-04-22 Thread Vincent Pomageot
Hi devs !

Good things first:
I've give a new try to the wallpaper 2 module after having read a post by
raster on the openmoko mailing list, and following a link to a beautiful
video showing its capacities.
I have to say that the first time I tried it I thought it was good but just
visually different than the other one.
Since then, I've populated it with a few wallpapers and I've been able to
admire the beauty (and efficiency) of classification by colors and nice
effects that please my eyes :p
Thank you raster for this awesome module that give me something I was
waiting for (I've read some time ago that Hisham Mardam Bey was writing an
app like that)...
The way to choose a wallpaper should be that way IMHO.

The bad things now ;)
It seems to me that the configuration menu of the gadget modules doesn't act
like this others do: generally, when you go from basic mode to advanced, you
just get more informations/configurations. With the gadget module you have
something different: the basic mode allow you to add new gadgets and the
advanced one to configure the theme and background... nothing important in
fact but I thought it could go with the wave of usability improvement
introduced by andreas these last days.

Last thing: I've updated my svn copy today and I get an error when trying to
load some modules:
there was an error blah
No module named mpdule/linux-gnu-i686-ver-pre-svn-01/module.so could be
found in the module search directories

Is it a known issue related to the recent work for release or should I go
for a list of all the modules that suddenly fails for me ?

Regards,

Vincent Pomageot
--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e_fm and thumb scroll

2009-04-13 Thread Vincent Pomageot
Well... I've updated my working copy and removed my ~/.e folder.
I'm able to reproduce the bug if I check the option Open dirs in place..
without this checked the thumbscroll in efm is working like a charm..

2009/4/11 Carsten Haitzler ras...@rasterman.com

 On Fri, 10 Apr 2009 19:43:49 +0200 Vincent Pomageot
 vincent.pomag...@gmail.com said:

  Hi devs !
 
  I would like to notify you that since some revisions (sadly I can't tell
  from which) if I enable thumb scroll in e17 and try to scroll with this
  action in efm, my click, down is directly caught on folders and it
 doesn't
  scroll but open them.. and I don't have the option one click action
  checked in the efm config..
  Don't know if it's a bug or the wanted behaviour.. (but I prefered the
  previous one :)

 i can't confirm it.. it works here.

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


--
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] e_fm and thumb scroll

2009-04-10 Thread Vincent Pomageot
Hi devs !

I would like to notify you that since some revisions (sadly I can't tell
from which) if I enable thumb scroll in e17 and try to scroll with this
action in efm, my click, down is directly caught on folders and it doesn't
scroll but open them.. and I don't have the option one click action
checked in the efm config..
Don't know if it's a bug or the wanted behaviour.. (but I prefered the
previous one :)

Regards

Vincent
--
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Being social...

2009-03-18 Thread Vincent Pomageot
There's already a group for enlightenment (e16  e17):
http://www.facebook.com/group.php?gid=983647ref=mf

Keep up the good work devs !

2009/3/18 Massimiliano Calamelli mcalame...@gmail.com

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 On Wed, 18 Mar 2009 23:15:14 +0900
 Toma tomha...@gmail.com wrote:

  It covers more. Can easily make an E17 page too.

 K, sounds clear and good :)

 Massimiliano
 - --
 Massimiliano Calamelli
 http://www.mcalamelli.net
 mcalame...@gmail.com
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.7 (MingW32)

 iD8DBQFJwQLNleGEL56NNP4RApl1AJ9toJpOc1tNhptpUBIJHBOKAjkt+wCdHiKA
 25Q9r7Kd5uAwMR/X1nG+PAk=
 =s6l3
 -END PGP SIGNATURE-


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Swallowing an image in an edje part

2008-12-13 Thread Vincent Pomageot
Thanks for your answer Gustavo !
I've tried the new evas_object_image_filled_add() and it works well I
think... for someone who want to fill the complete evas canvas with an image
and resize it when one or the other is resized.
What I wanted to do was to fill the part:swallow with my image in order to
have its top left corner at rel1 and the bottom right corner at rel2.
I think getting the part:swallow as an object and then querying its min size
didn't do what I expected but I've found a better way to do that :
edje_object_part_geometry_get()
So here is my code now :

   - const Evas_Object *swallow = NULL;
   - swallow = edje_object_part_object_get(my_edje, place_for_image);
   - edje_object_size_min_get(swallow, w, h);
   - evas_object_image_fill_set(image, 0, 0, w, h);
   + Evas_Coord x, y;
   + edje_object_part_geometry_get(my_edje, place_for_image, x, y ,w,
h);
   + printf(x:%d, y:%d, w:%d, h:%d, x, y, w, h);
   + evas_object_image_fill_set(image, 0, 0, w, h);
   + edje_object_part_swallow(my_edje, place_for_image, image);

With that call I can even remove the min size of the swallow part in the edc
because it seams to be calculated..
Don't know if the description of my problem is clearer now or if I really
understand what you proposed :p
But now it works so thank you Gustavo !

2008/12/12 Gustavo Sverzut Barbieri barbi...@profusion.mobi

 On Fri, Dec 12, 2008 at 6:07 PM, Vincent Pomageot
 vincent.pomag...@gmail.com wrote:
  Hi devs !
 
  I'm begining to play with edje and have difficulties to swallow an
  evas_object_image into an edje part swallow.
  I'm under the impression I have to call evas_object_image_fill_set()
 before
  swalloing the image into the edje but I must do something wrong because
  either my image isn't scaled to the swallowing part or I get something
 gray.

 yes, this is correct, Edje will not even know the swallowed part is an
 image, so it will not change fill property.

 if you want to keep it scaled (fill == (0, 0, w, h)), then you
 should add an event listener for EVAS_CALLBACK_RESIZE and apply fill
 again.

 For Python I added FilledImage that will do that for you for a long
 time, just noticed that C still miss such a helper! So I just added to
 SVN (r38120):

   Evas_Object  *evas_object_image_filled_add(Evas *e);
   void  evas_object_image_filled_set(Evas_Object *obj, Evas_Bool
 setting);
   Evas_Bool evas_object_image_filled_get(const Evas_Object *obj);

 See attached file for usage example.

 --
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: barbi...@gmail.com
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Swallowing an image in an edje part

2008-12-13 Thread Vincent Pomageot
You're right ! Working perfectly now !
I was associating my image with the canvas... that couldn't work..
Thanks a lot !

2008/12/13 Gustavo Sverzut Barbieri barbi...@profusion.mobi

 On Sat, Dec 13, 2008 at 9:04 AM, Vincent Pomageot
 vincent.pomag...@gmail.com wrote:
  Thanks for your answer Gustavo !
  I've tried the new evas_object_image_filled_add() and it works well I
  think... for someone who want to fill the complete evas canvas with an
 image
  and resize it when one or the other is resized.
  What I wanted to do was to fill the part:swallow with my image in order
 to
  have its top left corner at rel1 and the bottom right corner at rel2.
  I think getting the part:swallow as an object and then querying its min
 size
  didn't do what I expected but I've found a better way to do that :
  edje_object_part_geometry_get()
  So here is my code now :
 
 - const Evas_Object *swallow = NULL;
 - swallow = edje_object_part_object_get(my_edje, place_for_image);
 - edje_object_size_min_get(swallow, w, h);
 - evas_object_image_fill_set(image, 0, 0, w, h);
 + Evas_Coord x, y;
 + edje_object_part_geometry_get(my_edje, place_for_image, x, y
 ,w,
  h);
 + printf(x:%d, y:%d, w:%d, h:%d, x, y, w, h);
 + evas_object_image_fill_set(image, 0, 0, w, h);
 + edje_object_part_swallow(my_edje, place_for_image, image);
 
  With that call I can even remove the min size of the swallow part in the
 edc
  because it seams to be calculated..
  Don't know if the description of my problem is clearer now or if I really
  understand what you proposed :p
  But now it works so thank you Gustavo !

 You don't need none of this, in pseudo code your code should be something
 like:

   Evas_Object *image = evas_object_image_filled_add(evas);
   evas_object_image_file_set(image, path, NULL);
edje_object_part_swallow(my_edje, place_for_image, image);

 that's it, no show, no resize, no nothing. This should work.

 --
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: barbi...@gmail.com
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Swallowing an image in an edje part

2008-12-12 Thread Vincent Pomageot
Hi devs !

I'm begining to play with edje and have difficulties to swallow an
evas_object_image into an edje part swallow.
I'm under the impression I have to call evas_object_image_fill_set() before
swalloing the image into the edje but I must do something wrong because
either my image isn't scaled to the swallowing part or I get something gray.

Here is what I do :
[...]
my_edje = edje_object_add(evas);
edje_object_file_set(my_edje, theme.edj, main);

evas_object_move(my_edje, 0, 0);
edje_object_size_min_get(my_edje, w ,h);
evas_object_resize(my_edje, w, h);
ecore_evas_resize(ecore_evas, w, h);

image = evas_object_image_add(evas);
evas_object_image_file_set(image, /path/to/my/image.jpg, NULL);
evas_object_name_set(image, image_swallow);
const Evas_Object *swallow = NULL;
swallow = edje_object_part_object_get(my_edje, place_for_image);
edje_object_size_min_get(swallow, w, h);
evas_object_image_fill_set(image, 0, 0, w, h);
edje_object_part_swallow(my_edje, place_for_image, image);
[...]

And the edc :

collections {
group { name: main;
min: 131 111;
max: 131 111;
parts {
part { name: bg;
type: RECT;
description { state: default 0;
min:131 111;
max:131 111;
color: 255 255 255 255;
}
}

part { name: image_swallow;
type: SWALLOW;
clip_to: bg;
description { state: default 0;
min: 100 100;
rel1.relative: 0.15 0.07;
rel2.relative: 0.91 0.95;
}
}
[...]

I should be wrong somewhere (in fact I don't like to set the min size of the
swallowed part..)
So, iIs there anyone to help me please ?

Vincent
--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EFM: thoughts, current work et al.

2008-12-01 Thread Vincent Pomageot

 no. windows reversed the convention. before windows existed in the mac
 and
 amiga etc. worlds shift was multi-select, control was range select. i am
 following the original convention by default. efm can switch to do it the
 windows way. but nothng is exposed in the gui to do that - the code is
 there
 though.


Ok ! I didn't know that. Anyway that's not an habit that couldn't be lost -
particularly if it comes from windows ;)



 you could do this with multiple fm views... but this is going too far. efm
 is
 intended as a basic SIMPLE fm that you get for free because the majority
 of
 the infra for a fm is already lurking inside e - and this just exposes it.
 we
 need to get e17 released and so i want efm to remain simple - we can worry
 about more features after release - unless those features are really core
 to
 the thing working properly at all. as such the old fm that brought up a new
 window per dir worked wonders on macos and amigaos and a dozen others for
 many
 years. its very simple and flexible. thats all i wanted for e17 - fore e18
 etc.
 we can look at doing more.


For sure that's not needed for a release !
-
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] EFM: thoughts, current work et al.

2008-11-30 Thread Vincent Pomageot
Hi,

As a user I'm very happy to see all this keen interest with efm. I really
like it since I use the thumbscroll feature (sometimes I even try to scroll
the firefox pages like this !) and I think it's good for basic operation /
navigation.

Nevertheless I'm used to select multiple files in a list view from one to
another by holding Shift and to separtely select files by holding Control...
In efm it's the opposite, is it an error ?

Like many of you I would like to have shortcuts to copy/paste and I'll add :
Alt+directions to navigate through folders like in others filemanager.

+ a module like efm_nav and path but which will show us the path with
buttons for a speedy navigation

+ an implementation of the delete in trash like in the trash module

+ a column view like in the macos finder, but raster said :

the fm widget views 1 directory at a time - that's how its built.
 changing that is major surgery.


So I don't know if it's feasible, but could be really great with some nice
translations when the columns have to slide, and could permits the last
column to show some more informations on the file selected... I'm dreaming
:)

... or if it's something not doable, why not adding some fancy effect when
opening a folder (when the open dirs in place is checked) ?

Hope it could make e even better !
Thank you e dev !
-
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] [e-users] Exchange - A new place to trade themes and showcase applications and modules.

2008-07-22 Thread Vincent Pomageot
Hi all,

I'm not sure if it could be a better choice than OpenID, but
OAuthhttp://oauth.net/seems worth look at..

Thanks to Morlenxus for the great get-e (and easy_e17.sh!!) and to the new
team from Exchange !
Let's connect E to the web !


2008/7/22 Sthithaprajna Garapaty [EMAIL PROTECTED]:

 Exchange - read the name! ;) Its not a one-way street
 You should be able to both download and upload. Its all about sharing.
 Plus, how are you going to rate things and add comments if you cannot
 authenticate? If you need to open a browser everytime, no one's gonna
 do it and that'll kill the community aspect.

 On Tue, Jul 22, 2008 at 4:29 PM, Sevcsik András [EMAIL PROTECTED] wrote:
  On Tue, Jul 22, 2008 at 9:40 PM, Sthithaprajna Garapaty
  [EMAIL PROTECTED] wrote:
 
  The biggest problem with OpenID is that its not very good for desktop
  apps.  (it requires a browser and too many steps to allow apps to
  authenticate)
  So, any apps that would use the exchange API would suffer..
  There is a public authentication system from google that's similar to
  openID but friendlier for desktop apps, and I would lean more towards
  this.
 
  Why would apps had to deal with authentication? Authentication is needed
 for
  contributing and commenting on stuff, which is done in the browser.
  Downloading stuff doesn't require authentication, and that's what desktop
  applications would do. Or am I wrong?
 
 
  However, this means everyone needs a google account, and looks like
  there are already concerns about privacy from google.
  Let me know if there are any other authentication systems worth looking
  into.
  Otherwise, we can come up with an ultrasimple system of our own
  (or use Exchange's!)
 
  On Tue, Jul 22, 2008 at 3:06 PM, Dave Andreoli [EMAIL PROTECTED]
  wrote:
  
   - Ethan Grammatikidis [EMAIL PROTECTED] ha scritto:
  
   On Tue, 22 Jul 2008 20:12:02 +0200 (CEST), Dave Andreoli
   [EMAIL PROTECTED] said:
   
- Sthithaprajna Garapaty [EMAIL PROTECTED] ha scritto:
   
 On Sun, Jul 20, 2008 at 5:57 PM, Dan Kronstal
   [EMAIL PROTECTED]
 wrote:
  This seems like a really nice addition to the site, and a
   little
 more
  cohesive than a separate site for themes and such, but as a
   general
 comment
  on the e.org site it seems that it might be better to have a
   unified
 account
  system. i have separate accounts for wiki.e.org, forum.e.org,
   and
 now
  exchange.e.org? surely there's a better way...
 You're forgetting bugzilla  trac
   
...and forgetting also the users map!
Yes it's crazy to have all this account verification system, I
   think
the only reasonable solution is the use of openid.net (like every
   site
should do) in every service we have.
   

 We do want to integrate them all so there's a single sign-on, but
 because they are all separate systems, this might be a lot of
   work..
 Any volunteers?
   
I could change the login system of the user map to openid
Dave
  
   How trustworthy is openid? I see they are linked to AOL and Yahoo,
   who
   might not be as well-known for data collection as Google, but I would
   be
   greatly surprised if those services don't collect user data. I also
   wouldn't believe what I hear. Much the same goes for other companies
   in
   their list. AFAIK data collection on customers/users is normal for
   corporations today, unless stated otherwise in legally-binding terms.
   There is no mention of privacy at all on openid.net's front page,
   which
   I find distinctly worrying. No link to a 'privacy policy' is unusual
   nowadays.
  
  
   I don't know exactly, I never used this service, but on the site they
   say:
  
   Who Owns or Controls OpenID?
  
   OpenID has arisen from the open source community to solve the problems
   that could not be easily solved by other existing technologies. OpenID
 is a
   lightweight method of identifying individuals that uses the same
 technology
   framework that is used to identify websites. As such, OpenID is not
 owned by
   anyone, nor should it be. Today, anyone can choose to be an OpenID
 user or
   an OpenID Provider for free without having to register or be approved
 by any
   organization.
  
   The OpenID Foundation was formed to assist the open source model by
   providing a legal entity to be the steward for the community by
 providing
   needed infrastructure and generally helping to promote and support
 expanded
   adoption of OpenID.
  
   As Brad Fitzpatrick (the father of OpenID) said, Nobody should own
   this. Nobody's planning on making any money from this. The goal is to
   release every part of this under the most liberal licenses possible,
 so
   there's no money or licensing or registering required to play. It
 benefits
   the community as a whole if something like this exists, and we're all
 a part
   of the community.
  
   This statement continues to resonate today within the OpenID
 

Re: [E-devel] [SoC] Eyesight status report

2008-07-14 Thread Vincent Pomageot
Hi,

It's here : http://code.google.com/p/eyesight/

Regards

Vincent Pomageot

2008/7/14 Nathan Ingersoll [EMAIL PROTECTED]:

 On Mon, Jul 14, 2008 at 2:46 PM, Sevcsik András [EMAIL PROTECTED] wrote:
  I made a post to my blog (http://sevcsik.blogspot.com) when you can find
 a
  screenshot
 http://bp0.blogger.com/_EHjPYdSoHP4/SHuq3YkWS1I/BCE/mq46Oi_J_eM/s1600-h/eyesight_shot.png
 of
  the application. Here's the post:
 
  Today was the deadline of Google Summer of Code's midterm evaluations.
 So,
  here's a status report of the project.
  The current code is broken, but the last revision (r150) in the SVN
  repository is working and has the following capabilities:

 Could you provide the URL for your SVN repository?

 Thanks,
 Nathan

 -
 Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
 Studies have shown that voting for your favorite open source project,
 along with a healthy diet, reduces your potential for chronic lameness
 and boredom. Vote Now at http://www.sourceforge.net/community/cca08
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel