Re: [E-devel] [EGIT] [core/efl] master 01/01: Eolian: fix eolian helper for windows.

2015-07-22 Thread Stefan Schmidt
Hello. On 16/07/15 10:31, Tom Hacohen wrote: tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=60b473d949c2582695a0ed7e67dc2e2c321b commit 60b473d949c2582695a0ed7e67dc2e2c321b Author: Tom Hacohen t...@stosb.com Date: Thu Jul 16 09:27:40

Re: [E-devel] [EGIT] [core/efl] master 01/01: Eolian: fix eolian helper for windows.

2015-07-22 Thread Tom Hacohen
Please revert it then. :( On 22/07/15 16:07, Stefan Schmidt wrote: Hello. On 16/07/15 10:31, Tom Hacohen wrote: tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=60b473d949c2582695a0ed7e67dc2e2c321b commit

[E-devel] Issue with Elm Entry and backspacing at the first character of a new line

2015-07-22 Thread Jeff Hoogland
Source code I'm working with - https://github.com/JeffHoogland/ePad When I have a multi-line elm entry in ePad and I place my cursor at the very first spot in a line and press the backspace key, the line is removed as expected, but the cursor is no longer focused in the elm entry it was just in.

Re: [E-devel] Bitmapped fonts in edje

2015-07-22 Thread Tom Hacohen
On 22/07/15 07:57, Olliver Schinagl wrote: Hey List, whilst still researching, i've come into a problem with my choice of font. First some background. We are using for our project an extremly tiny display, 128x64 pixels. As such, to be legiable, our fonts need to be pixel perfect, or

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Tom Hacohen
When was that changed? Isn't it kinda wrong to do it now that both Eo classes and objects are Eo *? Because when you invoke this on classes you want to get the class class, how do you do the detection? Feels a bit inconsistent to me. -- Tom. On 22/07/15 08:28, Daniel Zaoui wrote: On Wed, 22

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Tom Hacohen
On 22/07/15 08:31, Tom Hacohen wrote: When was that changed? Isn't it kinda wrong to do it now that both Eo classes and objects are Eo *? Because when you invoke this on classes you want to get the class class, how do you do the detection? Feels a bit inconsistent to me. Two years ago. What

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Tom Hacohen
p eo_class_name_get(eo_class_get(editory-entry)) As Daniel said though, this shouldn't and can't happen. The only reason why this function would return NULL is an error. It works by adding an offset to the data pointer, so as long as it passes (basic) validation, it should at least return

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Daniel Zaoui
On Wed, 22 Jul 2015 08:21:02 +0100 Tom Hacohen t...@osg.samsung.com wrote: Hey boy, you don't need anymore eo_class_get in the middle! ;-) p eo_class_name_get(eo_class_get(editory-entry)) As Daniel said though, this shouldn't and can't happen. The only reason why this function would return

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Tom Hacohen
On 22/07/15 08:52, Daniel Zaoui wrote: London in September - rainy - depression - drink to forget - weak and grumpy - miss planes, trains and commits Joke's on you. I'm never weak, and I've never missed a train. -- Tom. I don't see any other logic reason :P On Wed, 22 Jul 2015 08:35:04

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Daniel Zaoui
Hi, I never saw this kind of behavior, except if your object has been freed (should see error prints) or your pointer is NULL or even if your object is not of the correct type. Do you see any Eo error messages? Can you p eo_class_name_get(editor-entry)? Can you enter the function and give more

Re: [E-devel] Bitmapped fonts in edje

2015-07-22 Thread Tom Hacohen
On 22/07/15 08:34, Olliver Schinagl wrote: Hey Tom, On 22-07-15 09:24, Tom Hacohen wrote: On 22/07/15 07:57, Olliver Schinagl wrote: Hey List, whilst still researching, i've come into a problem with my choice of font. First some background. We are using for our project an extremly tiny

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Daniel Zaoui
On Wed, 22 Jul 2015 08:31:35 +0100 Tom Hacohen t...@osg.samsung.com wrote: According to git, Jeremy did that two years ago. Personally, I like it this way as it is easier for debugging. And well, I never needed to get the name of a class, but always of an object. When was that changed? Isn't

Re: [E-devel] EFL + Elementary ABI report v1.15.0 alpha1

2015-07-22 Thread The Rasterman
On Wed, 22 Jul 2015 11:55:08 +0200 Stefan Schmidt ste...@osg.samsung.com said: Hello. On 21/07/15 12:13, Tom Hacohen wrote: On 15/07/15 10:05, Tom Hacohen wrote: On 09/07/15 09:02, Tom Hacohen wrote: Hey, Here again, the new EFL + Elementary ABI reports. As usual:

Re: [E-devel] EFL + Elementary ABI report v1.15.0 alpha1

2015-07-22 Thread Stefan Schmidt
Hello. On 21/07/15 12:13, Tom Hacohen wrote: On 15/07/15 10:05, Tom Hacohen wrote: On 09/07/15 09:02, Tom Hacohen wrote: Hey, Here again, the new EFL + Elementary ABI reports. As usual: https://devs.enlightenment.org/~tasn/abi/ Please take a look and report any issues. I haven't looked

Re: [E-devel] elm api/abi break - Re: [EGIT] [core/elementary] master 16/24: elm_list, elm_win: porting evas smart callbacks to eo

2015-07-22 Thread Stefan Schmidt
Hello. On 06/07/15 07:28, Carsten Haitzler wrote: On Sun, 05 Jul 2015 03:08:09 -0700 Avi Levin avi.le...@samsung.com said: you know this breaks elm? this changes callbacks for focus/unfouce from focus,in focus,out to focused unfocused i imagine you will find similar breaks elsewhere.

[E-devel] Bitmapped fonts in edje

2015-07-22 Thread Olliver Schinagl
Hey List, whilst still researching, i've come into a problem with my choice of font. First some background. We are using for our project an extremly tiny display, 128x64 pixels. As such, to be legiable, our fonts need to be pixel perfect, or rather, bitmap fonts is what we want. As a

Re: [E-devel] Bitmapped fonts in edje

2015-07-22 Thread Olliver Schinagl
Hey Tom, On 22-07-15 09:24, Tom Hacohen wrote: On 22/07/15 07:57, Olliver Schinagl wrote: Hey List, whilst still researching, i've come into a problem with my choice of font. First some background. We are using for our project an extremly tiny display, 128x64 pixels. As such, to be

Re: [E-devel] Object data lost with an Eo instance

2015-07-22 Thread Daniel Zaoui
London in September - rainy - depression - drink to forget - weak and grumpy - miss planes, trains and commits I don't see any other logic reason :P On Wed, 22 Jul 2015 08:35:04 +0100 Tom Hacohen t...@osg.samsung.com wrote: On 22/07/15 08:31, Tom Hacohen wrote: When was that changed? Isn't

Re: [E-devel] EFL + Elementary ABI report v1.15.0 alpha1

2015-07-22 Thread Stefan Schmidt
Hello. On 22/07/15 12:33, Carsten Haitzler wrote: On Wed, 22 Jul 2015 11:55:08 +0200 Stefan Schmidt ste...@osg.samsung.com said: Hello. On 21/07/15 12:13, Tom Hacohen wrote: On 15/07/15 10:05, Tom Hacohen wrote: On 09/07/15 09:02, Tom Hacohen wrote: Hey, Here again, the new EFL +

Re: [E-devel] elm api/abi break - Re: [EGIT] [core/elementary] master 16/24: elm_list, elm_win: porting evas smart callbacks to eo

2015-07-22 Thread Daniel Zaoui
Yo, On Wed, 22 Jul 2015 15:57:45 +0200 Stefan Schmidt ste...@osg.samsung.com wrote: Hello. On 06/07/15 07:28, Carsten Haitzler wrote: On Sun, 05 Jul 2015 03:08:09 -0700 Avi Levin avi.le...@samsung.com said: you know this breaks elm? this changes callbacks for focus/unfouce from

Re: [E-devel] Issue with Elm Entry and backspacing at the first character of a new line

2015-07-22 Thread Daniel Hirt
Hello, I couldn't reproduce this with the steps you had provided. It's better if you have a small program that demonstrates this, preferably C code. Otherwise it's pretty hard to pinpoint the culprit. Best, Danny. On 07/22/2015 08:34 PM, Jeff Hoogland wrote: Source code I'm working with -