Re: [e-users] Array of sliders in Elementary

2013-02-16 Thread Arvind R
evas_object_smart_callback_add(ptr-sl, changed, _changed_cb, ptr); ptr++; } evas_object_show(win); elm_run(); elm_shutdown(); return 0; } ELM_MAIN() On Fri, Feb 15, 2013 at 7:24 AM, Arvind R arvin...@gmail.com wrote: On Thu, Feb 14, 2013 at 6:44 PM, Justin Rosander justinrosan

Re: [e-users] Array of sliders in Elementary

2013-02-15 Thread Arvind R
and third arguments of snd_seq_ev_set_controller(ev, 0, 0, (int)val); so that when the specific slider is interacted with, I can pass to another function that I am dealing with a specific channel number or controller number. On Wed, Feb 13, 2013 at 8:51 PM, Arvind R arvin...@gmail.com wrote

Re: [e-users] elm_player: interference of slider with playback

2013-02-14 Thread Arvind R
On Thu, Feb 14, 2013 at 12:43 PM, Carsten Haitzler ras...@rasterman.com wrote: On Wed, 13 Feb 2013 17:02:44 +0530 Arvind R arvin...@gmail.com said: On Tue, Feb 12, 2013 at 4:41 PM, Carsten Haitzler ras...@rasterman.com wrote: On Fri, 1 Feb 2013 22:29:56 +0530 Arvind R arvin...@gmail.com said

Re: [e-users] elm_player: interference of slider with playback

2013-02-13 Thread Arvind R
On Tue, Feb 12, 2013 at 4:41 PM, Carsten Haitzler ras...@rasterman.com wrote: On Fri, 1 Feb 2013 22:29:56 +0530 Arvind R arvin...@gmail.com said: there - i did my changes to update less frequently - different to your framecount method (time based with timeouts and deletion handling). rev 83854

[e-users] on E17 fading away on prolonged VT switches

2013-02-13 Thread Arvind R
Hi, I still have the problem of E17 being reduced to a black screen and hi-lit mouse cursor if blanking is enabled on E17 and I return to it after a few minute switch to a VT. I have further observed that when switched to VT, E17 load on top drops to 0. If an elementary player is left playing

Re: [e-users] Array of sliders in Elementary

2013-02-13 Thread Arvind R
On Thu, Feb 14, 2013 at 6:51 AM, Justin Rosander justinrosan...@gmail.com wrote: Hi there, I'm trying to put together a midi controller featuring faders that would be assigned to different channels. In exploring the use of an array to make a window full of sliders, I put the following

[e-users] icon placement question

2013-02-11 Thread Arvind R
Hi, Is there a method to place the icon on the right side of a label instead of on the left? Arvind. -- Free Next-Gen Firewall Hardware Offer Buy your Sophos next-gen firewall before the end March 2013 and get the

[e-users] 3 small corrections in elc_player

2013-02-09 Thread Arvind R
Hi, 1. remove __UNUSED__ for parameter that is used. diff -uprN a/src/lib/elc_player.c b/src/lib/elc_player.c --- a/src/lib/elc_player.c 2012-11-26 14:59:01.0 +0530 +++ b/src/lib/elc_player.c 2013-02-01 19:54:22.0 +0530 @@ -398,7 +398,7 @@ _str_free(char *data) *

[e-users] Completing the elm_player mouse interface

2013-02-09 Thread Arvind R
Hi, I needed to swallow an elm_player in my clip preparation program. In the process, I completed the mouse support for the player widget. 1. Modified in player.edc: incorporated a volume attenuator using a diskelector. added a check-box for mute added a label widget 'billboard'

Re: [e-users] Library path

2013-02-03 Thread Arvind R
On Fri, Feb 1, 2013 at 8:29 PM, Adrián Arévalo Tirado adr...@gmail.com wrote: Hi everyone I have succesfully installed Enlightenment 0.17.1 with 1.7.5 libraries. The problem is that I´m trying to create a DEB, in order to install it in another computer without having to repeat that long

Re: [e-users] symlinks and efm

2013-02-03 Thread Arvind R
On Sun, Feb 3, 2013 at 5:29 AM, Gary witsc...@gmail.com wrote: I'm running the latest enlightenment from the elf ubuntu ppa. I have much of my data directories symlinked to a seperate partition (Documents, Downloads ... lots more). When I use Navigate from the root menu these directories don't

[e-users] elm_player: interference of slider with playback

2013-02-01 Thread Arvind R
Hi, The slider emits a changed signal when its internal representation of value really changes. It does not know whether the user dragged it or internal updates caused the value change. Most internal incremental updates when trimmed to the current resolution of the slider, do not cause a value

Re: [e-users] [solved] problem with elm_video/elm_player

2013-01-31 Thread Arvind R
On Thu, Jan 31, 2013 at 8:11 AM, Arvind R arvin...@gmail.com wrote: hi, It appears that elm_video_is_playing_get() always returns false. This manifests itself in 2 ways: With elm_video instantiated, Key_Left and Key_Right work in seeking forward/backward. Other keys print not not-handled

[e-users] problem with elm_video/elm_player

2013-01-30 Thread Arvind R
hi, It appears that elm_video_is_playing_get() always returns false. This manifests itself in 2 ways: With elm_video instantiated, Key_Left and Key_Right work in seeking forward/backward. Other keys print not not-handled message except 'space' key - implying space key is handled. This is as it

Re: [e-users] r82601 breaks pixman enabled builds

2013-01-29 Thread Arvind R
On Wed, Jan 30, 2013 at 1:51 AM, Ulisses Furquim ulis...@profusion.mobi wrote: Hi Arvind, On Sat, Jan 26, 2013 at 9:38 AM, Arvind R arvin...@gmail.com wrote: On Sat, Jan 26, 2013 at 4:54 PM, Arvind R arvin...@gmail.com wrote: Hi, Problem solved - for me -:) , now the ball is in your court

[e-users] [PATCH RFC efl-svn83378] install examples path prefixed by DESTDIR

2013-01-28 Thread Arvind R
Hi, When packaging efl, it is easier if examples are installed to paths prefixed by DESTDIR. Foll. patch does that. Arvind --- diff -uprN a/src/examples/ecore/Makefile.am b/src/examples/ecore/Makefile.am --- a/src/examples/ecore/Makefile.am2013-01-18 20:15:44.0 +0530 +++

[e-users] r82601 breaks pixman enabled builds

2013-01-26 Thread Arvind R
Hi, Problem solved - for me -:) , now the ball is in your court. Disabled all pixman related enables and I'm working now on svn-HEAD! Finally was able to check Mauro's fix for eina_prefix_new - still would prefer loacale path to be optional. Arvind R

Re: [e-users] r82601 breaks pixman enabled builds

2013-01-26 Thread Arvind R
On Sat, Jan 26, 2013 at 4:54 PM, Arvind R arvin...@gmail.com wrote: Hi, Problem solved - for me -:) , now the ball is in your court. Disabled all pixman related enables and I'm working now on svn-HEAD! Finally was able to check Mauro's fix for eina_prefix_new - still would prefer loacale

[e-users] Two questions on elementary usage

2013-01-26 Thread Arvind R
Hi Am instatntiating an elm widget in edje. All's well except for 2 problems: What signal is emitted when the window-bar is grabbed - as for moving window? When program exits on quit, it segfaults - traced it to _elm_config, a static variable in elm_config.c being NULL when executing line 1886:

Re: [e-users] isolated efl post-svn82296 problem with e17 startup

2013-01-25 Thread Arvind R
On Fri, Jan 25, 2013 at 3:48 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thursday, January 24, 2013, Arvind R wrote: On Fri, Jan 25, 2013 at 6:32 AM, Ulisses Furquim ulis...@profusion.mobi wrote: Hi Arvind, On Thu, Jan 24, 2013 at 10:42 PM, Arvind R arvin...@gmail.com

Re: [e-users] isolated efl post-svn82296 problem with e17 startup

2013-01-25 Thread Arvind R
On Sat, Jan 26, 2013 at 12:32 AM, Arvind R arvin...@gmail.com wrote: On Fri, Jan 25, 2013 at 3:48 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thursday, January 24, 2013, Arvind R wrote: On Fri, Jan 25, 2013 at 6:32 AM, Ulisses Furquim ulis...@profusion.mobi wrote: Hi

[e-users] post svn82296 e17 - svn83292 gets to second screen

2013-01-24 Thread Arvind R
Hi, After efl-svn82296, I could never get e17 working - used to hang at the first screen or part. With efl-svn-83292, e17-svn82392 shows the first screen - but a blank one. If bottom window clicked, now gets to second screen, with box below - also blank. No crash, nothing. But .xsession-errors

[e-users] edje cannot load elm module

2013-01-24 Thread Arvind R
Hi, The foll. code snippet list = edje_available_modules_get(); printf(Edje modules available\n); EINA_LIST_FOREACH(list, item, name) printf( %s\n, name); if (edje_module_load(elm)){ printf(Loaded module 'elm'\n); else printf(Could not load module

Re: [e-users] edje cannot load elm module

2013-01-24 Thread Arvind R
Hi, The foll. code snippet list = edje_available_modules_get(); printf(Edje modules available\n); EINA_LIST_FOREACH(list, item, name) printf( %s\n, name); if (edje_module_load(elm)){ printf(Loaded module 'elm'\n); else printf(Could not

Re: [e-users] edje cannot load elm module

2013-01-24 Thread Arvind R
On Fri, Jan 25, 2013 at 1:13 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 24, 2013 at 5:38 PM, Arvind R arvin...@gmail.com wrote: Hi, The foll. code snippet list = edje_available_modules_get(); printf(Edje modules available\n); EINA_LIST_FOREACH(list

Re: [e-users] edje cannot load elm module

2013-01-24 Thread Arvind R
On Fri, Jan 25, 2013 at 1:51 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 24, 2013 at 6:14 PM, Arvind R arvin...@gmail.com wrote: On Fri, Jan 25, 2013 at 1:13 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 24, 2013 at 5:38 PM, Arvind R arvin

[e-users] compile fails with debug profile

2013-01-24 Thread Arvind R
declaration of function 'eina_threadself' [-Wimplicit-function-declaration] No warnings in release/dev compile! Arvind R. -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps

[e-users] xsession errors trying to run svn efl/e17

2013-01-24 Thread Arvind R
Hi, Maybe someone could clue in on the following xsession-errors with a fresh install of svn83307 efl/elementary/e17 combo. Xsession: X session started for arvind at Fri Jan 25 04:18:02 IST 2013 localuser:arvind being added to access control list ESTART: 0.0 [0.0] - Begin Startup ESTART:

[e-users] isolated efl post-svn82296 problem with e17 startup

2013-01-24 Thread Arvind R
Hi, Updated everything to svn83292 except libevas. Am able to run E17!!! Install libevas and E17 does not start. I had to build everything with lax dependencies to be able to do this. libevas-engines-x is also the new version. Only libevas needs to left out. The libevas package contains

Re: [e-users] isolated efl post-svn82296 problem with e17 startup

2013-01-24 Thread Arvind R
On Fri, Jan 25, 2013 at 6:32 AM, Ulisses Furquim ulis...@profusion.mobi wrote: Hi Arvind, On Thu, Jan 24, 2013 at 10:42 PM, Arvind R arvin...@gmail.com wrote: Hi, Updated everything to svn83292 except libevas. Am able to run E17!!! Install libevas and E17 does not start. I had to build

Re: [e-users] frequent lockouts of X

2013-01-20 Thread Arvind R
On Sun, Jan 20, 2013 at 2:38 PM, Cedric BAIL cedric.b...@free.fr wrote: On Sun, Jan 20, 2013 at 1:14 AM, Arvind R arvin...@gmail.com wrote: On Sat, Jan 19, 2013 at 7:09 PM, Arvind R arvin...@gmail.com wrote: On Sat, Jan 19, 2013 at 5:51 PM, Arvind R arvin...@gmail.com wrote: Hi, Since I feel

Re: [e-users] AMD Proprietary - EFL SVN Rev 83021

2013-01-20 Thread Arvind R
On Mon, Jan 21, 2013 at 1:31 AM, NiTz n...@pabgames.net wrote: Compiled clean Performed startx (enlightenment_start via .xinitrc) Mint Linux with AMD Proprietary driver Receive: ERRlib/emotion/emotion_webcam.c:129 HP HD Webcam [Fixed] is not a webcam ['Permission denied']

[e-users] frequent lockouts of X

2013-01-19 Thread Arvind R
system -:( Anything I can do to resolve these problems, will do. Arvind R. -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current

Re: [e-users] frequent lockouts of X

2013-01-19 Thread Arvind R
On Sat, Jan 19, 2013 at 5:51 PM, Arvind R arvin...@gmail.com wrote: Hi, Since I feel far more comfortable on the 106x46 virtual console provided by the nouveau framebuffer, I spend long periods away from X running E17 (svn82296). When I return back to X for testing, to my dismay E17 fades

[e-users] heavy cpu usage with edje_example.c

2013-01-17 Thread Arvind R
-core with capacity to spare! The system is a quad-core Core2. E is svn82296. Graphics is pretty recent nouveau. What's wrong? Arvind R. -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8

Re: [e-users] Terminology transparency

2013-01-17 Thread Arvind R
On Thu, Jan 17, 2013 at 9:42 PM, Gavin Costello gav...@gmail.com wrote: I have the same issue. Tried changing ownership of /usr/bin/terminology, but no change. Gavin. On 17-01-2013 10.50, ich...@amuro.net wrote: I have a weird issue. If I run Terminology as root, and go to the Video

Re: [e-users] build failure caused by commit 82910/82911

2013-01-17 Thread Arvind R
On Thu, Jan 17, 2013 at 10:23 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 17, 2013 at 12:37 AM, Cedric BAIL cedric.b...@free.fr wrote: On Thu, Jan 17, 2013 at 11:17 AM, Cedric BAIL cedric.b...@free.fr wrote: On Thu, Jan 17, 2013 at 10:56 AM, Arvind R arvin

Re: [e-users] build failure caused by commit 82910/82911

2013-01-17 Thread Arvind R
On Thu, Jan 17, 2013 at 10:47 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 17, 2013 at 3:07 PM, Arvind R arvin...@gmail.com wrote: On Thu, Jan 17, 2013 at 10:23 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 17, 2013 at 12:37 AM, Cedric BAIL

Re: [e-users] build failure caused by commit 82910/82911

2013-01-17 Thread Arvind R
On Thu, Jan 17, 2013 at 11:03 PM, Arvind R arvin...@gmail.com wrote: On Thu, Jan 17, 2013 at 10:47 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 17, 2013 at 3:07 PM, Arvind R arvin...@gmail.com wrote: On Thu, Jan 17, 2013 at 10:23 PM, Gustavo Sverzut Barbieri barbi

Re: [e-users] [PATCH 1.7.5+svn82296 efl] eina: eina_prefix_new fixed

2013-01-17 Thread Arvind R
On Thu, Jan 17, 2013 at 10:35 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Thu, Jan 17, 2013 at 12:21 AM, Arvind R arvin...@gmail.com wrote: And that was added to all _DEPENDENCIES variables... which trigger a look for that target in the Makefile. That create some trouble. I

[e-users] [PATCH efl-svn82884 1/1] fix sdl-enabled compile failure

2013-01-16 Thread Arvind R
ecore-evas-engines-sdl fails to compile - this patch fixes that. --- diff -uprN a/src/Makefile_Ecore_Evas.am b/src/Makefile_Ecore_Evas.am --- a/src/Makefile_Ecore_Evas.am2013-01-15 04:06:23.0 +0530 +++ b/src/Makefile_Ecore_Evas.am2013-01-16 20:51:32.0 +0530 @@

Re: [e-users] [PATCH 1.7.5+svn82296 efl] eina: eina_prefix_new fixed

2013-01-16 Thread Arvind R
On Thu, Jan 17, 2013 at 3:55 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Mon, Jan 14, 2013 at 1:51 AM, Arvind R arvin...@gmail.com wrote: On Mon, Jan 14, 2013 at 6:22 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Sun, Jan 13, 2013 at 1:53 AM, Arvind R arvin

[e-users] build failure caused by commit 82910/82911

2013-01-16 Thread Arvind R
. Arvind R. -- Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery and much more. Keep your Java skills current with LearnJavaNow - 200+ hours of step-by-step video tutorials by Java experts. SALE $49.99

Re: [e-users] [PATCH 1.7.5+svn82296 efl] eina: eina_prefix_new fixed

2013-01-16 Thread Arvind R
On Thu, Jan 17, 2013 at 7:38 AM, Cedric BAIL cedric.b...@free.fr wrote: On Thu, Jan 17, 2013 at 9:33 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Wednesday, January 16, 2013, Arvind R wrote: On Thu, Jan 17, 2013 at 3:55 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi

Re: [e-users] e17-svn problem

2013-01-14 Thread Arvind R
On Mon, Jan 14, 2013 at 3:54 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Mon, Jan 14, 2013 at 2:23 AM, Arvind R arvin...@gmail.com wrote: Hi, My .xsession log has the foll. when efl-svn82735 is installed: [[31mERR^[[0mecore_evas^[[31m^[[0mlib/ecore_evas/ecore_evas.c:63^[[0m

Re: [e-users] [PATCH efl svn82709] Makefile_Emotion.am: add missing definitions

2013-01-14 Thread Arvind R
On Mon, Jan 14, 2013 at 4:01 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Mon, Jan 14, 2013 at 1:54 AM, Arvind R arvin...@gmail.com wrote: On Mon, Jan 14, 2013 at 6:16 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Sat, Jan 12, 2013 at 8:08 PM, Arvind R arvin

[e-users] PATCH 1.7.5+svn82296 REDO-V1 efl] eina: eina_prefix_new fixed

2013-01-13 Thread Arvind R
patch fixes both emotion_generic and terminology and E17 boots OK. The previous version broke terminology. Impl (on a non-relocated, packaged install): 1. Ignore locale if not given in Check[2], and find postfixes. 2. from dlinfo scan as per comments from left to right for '/lib' or '/bin'

Re: [e-users] [PATCH 1.7.5+svn82296 efl] eina: eina_prefix_new fixed

2013-01-13 Thread Arvind R
On Mon, Jan 14, 2013 at 6:22 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Sun, Jan 13, 2013 at 1:53 AM, Arvind R arvin...@gmail.com wrote: fix eina_prefix_new to return correct paths. Checks if locale dir is given else ignore locale paths. If common prefix_path found, add

Re: [e-users] [PATCH efl svn82709] Makefile_Emotion.am: add missing definitions

2013-01-13 Thread Arvind R
On Mon, Jan 14, 2013 at 6:16 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Sat, Jan 12, 2013 at 8:08 PM, Arvind R arvin...@gmail.com wrote: fix compile failure due to missing definitions applied, but I wonder how you got these if generic module just builds statically and thus

[e-users] e17-svn problem

2013-01-13 Thread Arvind R
:63^[[0m stuck async render: time=2.290553, ee=0x2951cd0, engine=software_x11, geometry=(0, 774, 1280, 250), visible=1, shaped=0, alpha=1, transparent=0 Stuck in a loop and empty unresponsive background. Any clue? Arvind R

[e-users] High CPU usage with composite settings

2013-01-13 Thread Arvind R
Hi, When Settings-Composite window is opened, CPU usage zooms - freq. switches to high and one core becomes 100% busy, fan full-speed. And composite styles don't seem to make any difference. Am I missing something? Arvind R

[e-users] [PATCH efl svn82709] evas: reflect structure name change

2013-01-12 Thread Arvind R
fix missed name change in structure and compile-failure therefrom. Arvind R. --- diff -uprN a/src/lib/evas/common/evas_font_ot.c b/src/lib/evas/common/evas_font_ot.c --- a/src/lib/evas/common/evas_font_ot.c2012-11-04 17:21:42.0 +0530 +++ b/src/lib/evas/common/evas_font_ot.c

[e-users] [PATCH efl svn82709] Makefile_Emotion.am: add missing definitions

2013-01-12 Thread Arvind R
fix compile failure due to missing definitions Arvind R. --- --- a/src/Makefile_Emotion.am 2013-01-13 02:32:17.0 +0530 +++ b/src/Makefile_Emotion.am 2013-01-13 02:52:01.0 +0530 @@ -146,7 +146,10 @@ emotionmodulegenericdir = $(libdir)/emot emotionmodulegeneric_LTLIBRARIES

Re: [e-users] Problem with eina_prefix_new

2013-01-12 Thread Arvind R
(did you try to run with: EINA_LOG_LEVELS=eina_prefix:4?) On Wed, Jan 9, 2013 at 4:32 PM, Arvind R arvin...@gmail.com wrote: On Wed, Jan 9, 2013 at 10:28 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Tue, Jan 8, 2013 at 11:24 PM, Arvind R arvin...@gmail.com wrote

[e-users] [PATCH 1.7.5+svn82296 efl] eina: eina_prefix_new fixed

2013-01-12 Thread Arvind R
and in installed locations - the most common case, when paths such as multiarch installs install to. Arvind R. --- The code is still wrong in extracting prefix from dynamically loaded library path and searching back to the first delimiter and using the left-side, which is libdir, as prefix. On top

[e-users] [emotion_generic workaround] get generic_player to work post svn82286, svn82429

2013-01-09 Thread Arvind R
Hi all, eina_prefix_lib_get() in _get_player.c assumes emotion modules are installed in ${prefix}/lib and hence cannot find the default generic player. This patch fixes that. Arvind --- diff -Nru a/src/modules/generic/emotion_generic.c b/src/modules/generic/emotion_generic.c ---

[e-users] Question on emotion using HW-accelerated rendering

2013-01-09 Thread Arvind R
to it, and have the evas-canvas as an 'underlay' to the video screen in order to trap events. This would mean modifying the emotion-xine module to be an interceptor in the xine pipeline instead of being a video_output driver. Feasible? Arvind R

Re: [e-users] Problem with eina_prefix_new

2013-01-09 Thread Arvind R
On Wed, Jan 9, 2013 at 10:28 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Tue, Jan 8, 2013 at 11:24 PM, Arvind R arvin...@gmail.com wrote: On Wed, Jan 9, 2013 at 5:56 AM, Arvind R arvin...@gmail.com wrote: On Wed, Jan 9, 2013 at 5:28 AM, Gustavo Sverzut Barbieri barbi

Re: [e-users] Problem with eina_prefix_new

2013-01-08 Thread Arvind R
On Tue, Jan 8, 2013 at 2:18 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Mon, Jan 7, 2013 at 9:14 AM, Arvind R arvin...@gmail.com wrote: Hi all, After getting xine backend working in emotion, tried generic (vlc) backend. Nope - doesn't work -:( Problem 1: Using

Re: [e-users] Problem with eina_prefix_new

2013-01-08 Thread Arvind R
On Wed, Jan 9, 2013 at 3:56 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Tue, Jan 8, 2013 at 7:14 AM, Arvind R arvin...@gmail.com wrote: On Tue, Jan 8, 2013 at 2:18 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Mon, Jan 7, 2013 at 9:14 AM, Arvind R arvin

Re: [e-users] Problem with eina_prefix_new

2013-01-08 Thread Arvind R
On Wed, Jan 9, 2013 at 5:28 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Tue, Jan 8, 2013 at 8:26 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Tue, Jan 8, 2013 at 7:14 AM, Arvind R arvin...@gmail.com wrote: On Tue, Jan 8, 2013 at 2:18 AM, Gustavo Sverzut

Re: [e-users] Problem with eina_prefix_new

2013-01-08 Thread Arvind R
On Wed, Jan 9, 2013 at 5:56 AM, Arvind R arvin...@gmail.com wrote: On Wed, Jan 9, 2013 at 5:28 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Tue, Jan 8, 2013 at 8:26 PM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Tue, Jan 8, 2013 at 7:14 AM, Arvind R arvin

[e-users] [PATCH 1.7.5+svn82296] emotion: fix for xine-lib-1.2.2 backend

2013-01-07 Thread Arvind R
. With patch applied - Voila! xine plays! The '22' is the VIDEO_OUT_XINE_API_VERSION in xine/video_out.h Arvind. R. --- 1 file changed. 1 line added --- a/src/modules/xine/emotion_xine_vo_out.c2013-01-07 10:44:19.0 +0530 +++ b/src/modules/xine/emotion_xine_vo_out.c2013-01-07 10:50

[e-users] Problem with eina_prefix_new

2013-01-07 Thread Arvind R
() or eina_prefix_lib_get() Arvind R. -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials

[e-users] E17 screen idle-freeze problem

2013-01-07 Thread Arvind R
, AFAIK Arvind R. -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials

[e-users] [E17 Omega] Problem with applications menu

2012-12-18 Thread Arvind R
Hi, Been regularly packaging and updating E17 on Debian Testing (wheezy) x86_64 system for the last fortnight. Was looking at the scrolling bright text in enlightenment-about window and thinking I should go to bed 'cause I was having a vision hangover till I suddenly realised The Team scrolling

[e-users] [E17 Omega] cannot restore idled blank screen

2012-12-18 Thread Arvind R
Hi, If I leave the logged in desktop and work on VC for sometime, and I return to the desktop, I see it fading slowly leaving only the cursor. All I can do is terminate the window-manager from a VC. The system is a debian testing (wheezy) with E17-svb81294 Cheers, Arvind.