Re: [E-devel] Desktop icons

2009-01-05 Thread Fedor Gusev
On Mon, Jan 05, 2009 at 09:55:02AM +0100, Andreas Volz wrote: Am Tue, 30 Dec 2008 09:50:39 +0100 schrieb Andreas Volz: Hello again, seems nobody has an answer to my question. Could you at least tell me where this is implemented? Should I search in efreet or the fileman module or in E17

Re: [E-devel] Proposal for modules automatic download

2008-12-15 Thread Fedor Gusev
On Mon, Dec 15, 2008 at 03:17:31PM +0100, Matteo wrote: Hi, Do you think that in the future plans could be useful a button for automatic select and download (from the net) third-party modules that e17 could have? I mean: I saw that Massimiliano has integrated the wallpaper selection with

Re: [E-devel] EFM .desktop proposal

2008-11-29 Thread Fedor Gusev
On Sat, Nov 29, 2008 at 07:55:37PM +0100, Dave Andreoli wrote: Ok I have made a .desktop file for the EFM, here's a first draft: [Desktop Entry] Type=Application Encoding=UTF-8 Exec=enlightenment_remote -exec-action fileman ~ Icon= Name=Enlightenment FM GenericName=File Manager

Re: [E-devel] About e.org domain

2008-11-08 Thread Fedor Gusev
On Sat, Nov 08, 2008 at 02:48:03PM -0200, Leandro Santiago wrote: ... and whether the official site of the enlightenment was e.org as x.org? Or that only redirected enlightenment.org. I would be much simpler to spell :-) What if the e.org domain is already registered?

Re: [E-devel] [PATCH] e_fm: fix single-click on folders

2008-11-04 Thread Fedor Gusev
On Mon, Nov 03, 2008 at 07:55:52PM +1100, Carsten Haitzler wrote: On Tue, 28 Oct 2008 20:36:06 +0100 thomasg [EMAIL PROTECTED] babbled: It also removes the strdup in the affected functions that seems useless here. Turns out, those strdups are not that useless... e_fm2_path_set() calls

Re: [E-devel] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
/redirect.php?banner_id=100url=/ ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel -- King regards, Fedor Gusev

Re: [E-devel] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
to update an icon though. Looks like ibar does not look for icons in theme. Luca 2008/9/22 Fedor Gusev [EMAIL PROTECTED] On Mon, Sep 22, 2008 at 03:25:55PM +0200, Luca De Marini wrote: And does anybody know how can I ask it to open an home folder? What kind

Re: [E-devel] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
On Mon, Sep 22, 2008 at 05:56:17PM +0400, Fedor Gusev wrote: On Mon, Sep 22, 2008 at 03:45:42PM +0200, Luca De Marini wrote: nop, it doesn't work :( I even tried with the ~ sinbol, no luck... Any other guess? cp ~/.e/e/fileman/favorites/home.desktop ~/.local/share/applications

Re: [E-devel] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
On Mon, Sep 22, 2008 at 04:28:02PM +0200, Luca De Marini wrote: 2008/9/22 Fedor Gusev [EMAIL PROTECTED] On Mon, Sep 22, 2008 at 05:56:17PM +0400, Fedor Gusev wrote: On Mon, Sep 22, 2008 at 03:45:42PM +0200, Luca De Marini wrote: nop, it doesn't work :( I even tried

Re: [E-devel] adding Eps in PROTO/

2008-08-27 Thread Fedor Gusev
to checkout the whole PROTO directory first. svn co svn+ssh://[EMAIL PROTECTED]/var/svn/e/trunk/PROTO/ e17/proto/ Then proto/ would be under svn control. Then (if you have eps in /proto): cd e17/proto/ svn add eps svn ci I think that would work. -- King regards, Fedor Gusev

Re: [E-devel] Ecore_X: action in XDndPosition

2008-08-17 Thread Fedor Gusev
On Sat, Aug 16, 2008 at 02:16:35PM +0400, Fedor Gusev wrote: On Fri, Aug 15, 2008 at 11:17:35PM +0400, Fedor Gusev wrote: Hello everyone! Attached patched brings two new functions to Ecore_X: EAPI void ecore_x_dnd_source_action_set(Ecore_X_Atom action); EAPI Ecore_X_Atom

Re: [E-devel] Ecore_X: action in XDndPosition

2008-08-16 Thread Fedor Gusev
On Fri, Aug 15, 2008 at 11:17:35PM +0400, Fedor Gusev wrote: Hello everyone! Attached patched brings two new functions to Ecore_X: EAPI void ecore_x_dnd_source_action_set(Ecore_X_Atom action); EAPI Ecore_X_Atom ecore_x_dnd_source_action_get(void); The first one sets

[E-devel] EFM: DND action modifiers

2008-08-16 Thread Fedor Gusev
', 'e,state,ask' with source 'e', so one can modify a theme to show which action would be performed. Note that you need a modified Ecore_X for this to work, see my previous mail. -- King regards, Fedor Gusev. diff --git a/src/bin/e_dnd.c b/src/bin/e_dnd.c index c5d002b..4038426 100644 --- a/src/bin

Re: [E-devel] EFM: DND action modifiers

2008-08-16 Thread Fedor Gusev
On Sat, Aug 16, 2008 at 04:55:18PM +0400, Fedor Gusev wrote: Note that you need a modified Ecore_X for this to work, see my previous mail. Nevermind, that patch is already in CVS. -- King regards, Fedor Gusev

[E-devel] Ecore_X: action in XDndPosition

2008-08-15 Thread Fedor Gusev
. This action is reset to XdndActionMove in ecore_x_dnd_begin(). The second function, obviously, gets the current action. Apply from e17/libs/ecore/src/lib/ecore_x. -- King regards, Fedor Gusev. Index: Ecore_X.h === RCS file: /var/cvs/e

Re: [E-devel] [EFM] Desktop HAL icons

2008-08-11 Thread Fedor Gusev
necessary. snprintf is smart enough to know that it needs space for the null character :) Ah... Use this one instead then. -- King regards, Fedor Gusev. - This SF.Net email is sponsored by the Moblin Your Move Developer's

Re: [E-devel] [EFM] Desktop HAL icons

2008-08-11 Thread Fedor Gusev
necessary. snprintf is smart enough to know that it needs space for the null character :) Ah... Use this one instead then. -- King regards, Fedor Gusev. diff --git a/src/bin/e_config.c b/src/bin/e_config.c index 4489b8f..e06515f 100644 --- a/src/bin/e_config.c +++ b/src/bin/e_config.c @@ -587,6

[E-devel] [EFM] Desktop HAL icons

2008-08-10 Thread Fedor Gusev
Hello everyone! Attached patch adds an ability to show/hide desktop icons that HAL produces. Apply from E's source top, since it makes changes in both core E and fileman module. -- King regards, Fedor Gusev. diff --git a/src/bin/e_config.c b/src/bin/e_config.c index 4489b8f..e06515f 100644

[E-devel] [EFM] DND actions in E

2008-08-09 Thread Fedor Gusev
drags from external apptications to EFM. If you drag files and the source sends XdndPosition with different actions, then EFM understands them. ( But not XdndActionLink for now). Apply on top of my previuos patch. -- King regards, Fedor Gusev. diff --git a/src/bin/e_dnd.c b/src/bin/e_dnd.c index

[E-devel] [EFM] Proper URI escaping

2008-08-09 Thread Fedor Gusev
(), probably someone should fix that too. -- King regards, Fedor Gusev. diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index 0493c05..b444d1f 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -3172,7 +3172,7 @@ _e_fm2_uri_escape(const char *path) dest[i] = *p; else { - snprintf((dest[i

[E-devel] [Patch] Tclock's tip and font classes.

2008-08-07 Thread Fedor Gusev
Attached patch allows the tclock module's tip (that's a popup that appears when you hover the widget) understand font classes, so you can easily change the font using Fonts-Advanced dialog. -- King regards, Fedor Gusev. ? patch Index: tclock.edc

Re: [E-devel] Weird crash...

2008-08-02 Thread Fedor Gusev
://lists.sourceforge.net/lists/listinfo/enlightenment-devel -- King regards, Fedor Gusev. - 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

Re: [E-devel] Google summer of code 2008 Midterms....

2008-07-04 Thread Fedor Gusev
On Thu, Jul 03, 2008 at 06:45:48AM -0700, Ian C. wrote: Attention all GSoC students and mentors, This is a reminder that midterm evaluation surveys open July 7th. Information about the surveys can be found at the links below.

[E-devel] GSoC Project: EFM thoughts

2008-05-16 Thread Fedor Gusev
, please, say. Any ideas how to do these things will be greatfully appreciated. Even your expectations (from user's point of view) on how these should work are welcome. Thanks in advance, Fedor Gusev. - This SF.net email