Re: [e-users] Execute Network Operation + Elementary Progress Bar

2012-10-08 Thread The Rasterman
On Mon, 8 Oct 2012 16:29:12 +0530 Amit S said: > Hi Rasterman, > > Following suggestion about using thread, I did some more research and found > the ecore-con APIs. > > If I replace the current curl operations with ecore-con APIs the call to > method is over and the progress bar is never shown,

Re: [e-users] FreeBSD enlightenment delay 5 minutes to start

2012-10-08 Thread The Rasterman
On Mon, 08 Oct 2012 21:06:02 +0200 rustyBSD said: > Le 08/10/2012 10:53, Carsten Haitzler (The Rasterman) a écrit : > > is bsd stopping the child process from senging a sigusr1 to its parent? is > > getppid not returning the parent pid? this code is: > > > >kill(getppid(), SIGUSR1); > > > > i

Re: [e-users] Execute Network Operation + Elementary Progress Bar

2012-10-08 Thread Daniel Juyung Seo
Coolz ecore_con_url looks like a proper solution for this. Here is an example code and some description. http://docs.enlightenment.org/auto/ecore/ecore_con_url_download_example_c.html Thanks raster and cedric. Daniel Juyung Seo (SeoZ) On Tue, Oct 9, 2012 at 10:10 AM, Cedric BAIL wrote: > On Mon

Re: [e-users] Execute Network Operation + Elementary Progress Bar

2012-10-08 Thread Cedric BAIL
On Mon, Oct 8, 2012 at 10:00 PM, Daniel Juyung Seo wrote: > It looks like it's still pending in step 2. > 1. Progress bar show > 2. Ecore-con API call > 3. Progress bar hide... > > Do not call evas_object_hide() at that time. Just return the function. > Call evas_object_hide() when the download op

Re: [e-users] FreeBSD enlightenment delay 5 minutes to start

2012-10-08 Thread d4n1
I disabled show splash screen on login (menu settings > settings panel > look > startup ) and is allright. No more delay on start. Runing in freeBSD 9.1-rc and enlightenment 0.16.999.65643. I testing in pcbsd 9.1 too and is ok too. On Oct 8, 2012 4:08 PM, "rustyBSD" wrote: > Le 08/10/2012 10:53,

Re: [e-users] First Terminology impressions

2012-10-08 Thread P Purkayastha
On 10/07/2012 04:26 AM, Boris Faure wrote: > On 12-10-06 10:32, Boris Faure wrote: >> On 12-10-06 09:52, Andreas Volz wrote: >>> Am Sat, 6 Oct 2012 11:28:32 +0900 schrieb Daniel Juyung Seo: >>> > - resizing the terminal sometimes leads into bugs (e.g. with vim) Yes this always happens

Re: [e-users] FreeBSD enlightenment delay 5 minutes to start

2012-10-08 Thread rustyBSD
Le 08/10/2012 10:53, Carsten Haitzler (The Rasterman) a écrit : > is bsd stopping the child process from senging a sigusr1 to its parent? is > getppid not returning the parent pid? this code is: > >kill(getppid(), SIGUSR1); > > in e_int_main.c On OpenBSD, it doesn't seem to be the problem. I ch

Re: [e-users] Execute Network Operation + Elementary Progress Bar

2012-10-08 Thread Daniel Juyung Seo
It looks like it's still pending in step 2. 1. Progress bar show 2. Ecore-con API call 3. Progress bar hide... Do not call evas_object_hide() at that time. Just return the function. Call evas_object_hide() when the download operation is done. 1. Progress bar show 2. Create network thread 3. return

Re: [e-users] First Terminology impressions

2012-10-08 Thread Dave
In the year 2012, of the month of October, on the 8th day, Boris Faure wrote: > On 12-10-08 14:07, dave wrote: > > In the year 2012, of the month of October, on the 6th day, Boris Faure > > wrote: > > > I've fixed in rev 77549 an issue I had when resizing a vim with a split. > > > Please test it

Re: [e-users] Execute Network Operation + Elementary Progress Bar

2012-10-08 Thread Amit S
Hi Rasterman, Following suggestion about using thread, I did some more research and found the ecore-con APIs. If I replace the current curl operations with ecore-con APIs the call to method is over and the progress bar is never shown, as it is hid the moment evas_object_hide is called. 1. Progre

Re: [e-users] First Terminology impressions

2012-10-08 Thread David Seikel
On Mon, 8 Oct 2012 17:23:01 +0900 Carsten Haitzler (The Rasterman) wrote: > On Fri, 5 Oct 2012 21:35:28 +0200 Andreas Volz > said: > > > - if I switch mc with Alt-O then the commands in background are > > cleared > > umm this exits mc? u mean on exit the terminal is missing its > previous cont

Re: [e-users] First Terminology impressions

2012-10-08 Thread P Purkayastha
On 10/08/2012 04:24 PM, Carsten Haitzler (The Rasterman) wrote: > On Sat, 06 Oct 2012 10:10:40 +0800 P Purkayastha said: > >> On 10/06/2012 03:35 AM, Andreas Volz wrote: >>> Hi, >>> >>> I started replacing gnome-terminal by Terminology since some days. Here >>> are some findings and problems. Mayb

Re: [e-users] First Terminology impressions

2012-10-08 Thread The Rasterman
On Sat, 6 Oct 2012 13:19:12 +0200 Andreas Volz said: > Am Sat, 6 Oct 2012 11:37:06 +0100 schrieb Mick: > > > On Saturday 06 Oct 2012 09:32:20 Boris Faure wrote: > > > On 12-10-06 09:52, Andreas Volz wrote: > > > > Am Sat, 6 Oct 2012 11:28:32 +0900 schrieb Daniel Juyung Seo: > > > > > > - resizin

Re: [e-users] Execute Network Operation + Elementary Progress Bar

2012-10-08 Thread The Rasterman
On Sat, 6 Oct 2012 14:29:09 +0530 Amit S said: > Hi, > > I am trying to use an infinite pulsing progress bar and do some network > operations in the background. Any help will be appreciated. > I create a Popup and add ProgressBar in that Popup. The popup is not at > all displayed. However all t

Re: [e-users] First Terminology impressions

2012-10-08 Thread The Rasterman
On Sat, 06 Oct 2012 10:10:40 +0800 P Purkayastha said: > On 10/06/2012 03:35 AM, Andreas Volz wrote: > > Hi, > > > > I started replacing gnome-terminal by Terminology since some days. Here > > are some findings and problems. Maybe someone could give a comment: > > > > - Looks very good! > > - Ann

Re: [e-users] FreeBSD enlightenment delay 5 minutes to start

2012-10-08 Thread The Rasterman
On Sat, 6 Oct 2012 07:07:39 -0300 d4n1 said: > Hi man, > > In my freeBSD (9.0 and 9.1-rc1, pcbsd 9.1 too) with e17 there is a delay of > 5 minutes, in ports or pre-compiled, to start enlightenment. > Error message: > CRI<81775>: eina_amalgamation.c:5524 eina_iterator_free() *** Eina Magic >> > C

Re: [e-users] First Terminology impressions

2012-10-08 Thread The Rasterman
On Fri, 5 Oct 2012 21:35:28 +0200 Andreas Volz said: > Hi, > > I started replacing gnome-terminal by Terminology since some days. Here > are some findings and problems. Maybe someone could give a comment: > > - Looks very good! > - Annoying F10 menu bug in midnight commander isn't present :-) >

Re: [e-users] First Terminology impressions

2012-10-08 Thread The Rasterman
On Sat, 6 Oct 2012 11:37:06 +0100 Mick said: > On Saturday 06 Oct 2012 09:32:20 Boris Faure wrote: > > On 12-10-06 09:52, Andreas Volz wrote: > > > Am Sat, 6 Oct 2012 11:28:32 +0900 schrieb Daniel Juyung Seo: > > > > > - resizing the terminal sometimes leads into bugs (e.g. with vim) > > > > > >

Re: [e-users] First Terminology impressions

2012-10-08 Thread Boris Faure
On 12-10-08 14:07, dave wrote: > In the year 2012, of the month of October, on the 6th day, Boris Faure wrote: > > I've fixed in rev 77549 an issue I had when resizing a vim with a split. > > Please test it heavily as it might break other applications. > > I'm not sure if this is related to your

Re: [e-users] Install efl on arm

2012-10-08 Thread The Rasterman
On Tue, 2 Oct 2012 15:06:33 -0300 Adriano Martins said: > Hi, > > I'm interested to install efl on the arm system. > When I run autogen.sh in arm board, the host_cpu selected is i686. > Can I set the host parameter? > > If I use cross_compile. How I proceed? > > What's the best way to compile

Re: [e-users] Greyed out buttons in settings

2012-10-08 Thread The Rasterman
On Mon, 1 Oct 2012 10:29:17 +0100 (BST) Toby Newman said: > Many of the buttons in my enlightenment settings are greyed out, meaning I > cannot customise most of the desktop. Some examples of greyed out buttons > are: > > Settings/Settings panel/apps/favorite applications/add > Settings/Settin

Re: [e-users] Change FontSize of a Label

2012-10-08 Thread The Rasterman
On Tue, 2 Oct 2012 14:07:19 +0530 Amit S said: use scale or add new styles for the widget - styles + theme extension are better as you have a PURPOSE for the new size - eg. for a title or a footnote or a warning label, error label etc. it's highly advised to adopt this "style" idea. styles are in