Re: [E-devel] elementary: problem with focus in panel

2012-10-11 Thread The Rasterman
On Thu, 11 Oct 2012 13:05:44 +0900 Jérôme Pinot ngc...@gmail.com said:

 Following up:
 
 Hi,
 
 Moving from EFL 1.2 to 1.7 was not flawless for eperiodique. I had to
 adjust again the button size in boxes, but well, it does mostly work as
 expected.
 
 I still got a major issue that prevents me to release: it seems that the
 focus behaviour in panel changed a lot (or is it a bug?).
 
 Under EFL 1.2, I can open a panel, which contains an entry widget and a
 button, enter formula and activate via ENTER or the button to get the
 result, as shown at the end of this video:
 http://www.youtube.com/watch?v=wjp_0guZ05Q 
 
 But with EFL 1.7, once the panel is open, it's not possible to get the
 focus on the entry widget with the mouse (but with TAB it works).
 Moreover, pressing ENTER when in the entry widget just close the
 panel in same time it activates the entry.
 
 So, if it's not bugs (I didn't change this part of eperiodique code), I'd
 like to know:
 - how to select the entry with mouse (as before)
 - how to make the panel widget not react on the ENTER (or change the
   key)
 
 For reference, the panel code of eperiodique is available here;
 http://eperiodique.git.sourceforge.net/git/gitweb.cgi?p=eperiodique/eperiodique;a=blob;f=src/panel.c;h=f3b993035a5e3f330bdaaa48b2f9fbdd4f62a553;hb=HEAD
  
 
 Thanks for any help, this issue is blocking my work on SlackE17.
 
 Reverting r75008 fixes this issue.

hmmm yup. its the removal of the scroller that did it - maybe scroller was
handling focus passing properly and now panel doesnt as it relied on the
scroller to do it.

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


--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] elementary: problem with focus in panel

2012-10-11 Thread Jérôme Pinot
On 10/12/12 11:43, Carsten Haitzler wrote:
 On Thu, 11 Oct 2012 13:05:44 +0900 Jérôme Pinot ngc...@gmail.com said:
 
  Following up:
  
  Hi,
  
  Moving from EFL 1.2 to 1.7 was not flawless for eperiodique. I had to
  adjust again the button size in boxes, but well, it does mostly work as
  expected.
  
  I still got a major issue that prevents me to release: it seems that the
  focus behaviour in panel changed a lot (or is it a bug?).
  
  Under EFL 1.2, I can open a panel, which contains an entry widget and a
  button, enter formula and activate via ENTER or the button to get the
  result, as shown at the end of this video:
  http://www.youtube.com/watch?v=wjp_0guZ05Q 
  
  But with EFL 1.7, once the panel is open, it's not possible to get the
  focus on the entry widget with the mouse (but with TAB it works).
  Moreover, pressing ENTER when in the entry widget just close the
  panel in same time it activates the entry.
  
  So, if it's not bugs (I didn't change this part of eperiodique code), I'd
  like to know:
  - how to select the entry with mouse (as before)
  - how to make the panel widget not react on the ENTER (or change the
key)
  
  For reference, the panel code of eperiodique is available here;
  http://eperiodique.git.sourceforge.net/git/gitweb.cgi?p=eperiodique/eperiodique;a=blob;f=src/panel.c;h=f3b993035a5e3f330bdaaa48b2f9fbdd4f62a553;hb=HEAD
   
  
  Thanks for any help, this issue is blocking my work on SlackE17.
  
  Reverting r75008 fixes this issue.
 
 hmmm yup. its the removal of the scroller that did it - maybe scroller was
 handling focus passing properly and now panel doesnt as it relied on the
 scroller to do it.

FTR: fixed by Woohyun in r77844

-- 
Jérôme Pinot
http://ngc891.blogdns.net/


signature.asc
Description: Digital signature
--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] elementary: problem with focus in panel

2012-10-11 Thread The Rasterman
On Fri, 12 Oct 2012 12:00:05 +0900 Jérôme Pinot ngc...@gmail.com said:

 On 10/12/12 11:43, Carsten Haitzler wrote:
  On Thu, 11 Oct 2012 13:05:44 +0900 Jérôme Pinot ngc...@gmail.com said:
  
   Following up:
   
   Hi,
   
   Moving from EFL 1.2 to 1.7 was not flawless for eperiodique. I had to
   adjust again the button size in boxes, but well, it does mostly work as
   expected.
   
   I still got a major issue that prevents me to release: it seems that the
   focus behaviour in panel changed a lot (or is it a bug?).
   
   Under EFL 1.2, I can open a panel, which contains an entry widget and a
   button, enter formula and activate via ENTER or the button to get the
   result, as shown at the end of this video:
   http://www.youtube.com/watch?v=wjp_0guZ05Q 
   
   But with EFL 1.7, once the panel is open, it's not possible to get the
   focus on the entry widget with the mouse (but with TAB it works).
   Moreover, pressing ENTER when in the entry widget just close the
   panel in same time it activates the entry.
   
   So, if it's not bugs (I didn't change this part of eperiodique code), I'd
   like to know:
   - how to select the entry with mouse (as before)
   - how to make the panel widget not react on the ENTER (or change the
 key)
   
   For reference, the panel code of eperiodique is available here;
   http://eperiodique.git.sourceforge.net/git/gitweb.cgi?p=eperiodique/eperiodique;a=blob;f=src/panel.c;h=f3b993035a5e3f330bdaaa48b2f9fbdd4f62a553;hb=HEAD

   
   Thanks for any help, this issue is blocking my work on SlackE17.
   
   Reverting r75008 fixes this issue.
  
  hmmm yup. its the removal of the scroller that did it - maybe scroller was
  handling focus passing properly and now panel doesnt as it relied on the
  scroller to do it.
 
 FTR: fixed by Woohyun in r77844
 

yay woohyun you da man!

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


--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] elementary: problem with focus in panel

2012-10-10 Thread Jérôme Pinot
Following up:

Hi,

Moving from EFL 1.2 to 1.7 was not flawless for eperiodique. I had to
adjust again the button size in boxes, but well, it does mostly work as
expected.

I still got a major issue that prevents me to release: it seems that the
focus behaviour in panel changed a lot (or is it a bug?).

Under EFL 1.2, I can open a panel, which contains an entry widget and a
button, enter formula and activate via ENTER or the button to get the
result, as shown at the end of this video:
http://www.youtube.com/watch?v=wjp_0guZ05Q 

But with EFL 1.7, once the panel is open, it's not possible to get the
focus on the entry widget with the mouse (but with TAB it works).
Moreover, pressing ENTER when in the entry widget just close the
panel in same time it activates the entry.

So, if it's not bugs (I didn't change this part of eperiodique code), I'd
like to know:
- how to select the entry with mouse (as before)
- how to make the panel widget not react on the ENTER (or change the
  key)

For reference, the panel code of eperiodique is available here;
http://eperiodique.git.sourceforge.net/git/gitweb.cgi?p=eperiodique/eperiodique;a=blob;f=src/panel.c;h=f3b993035a5e3f330bdaaa48b2f9fbdd4f62a553;hb=HEAD
 

Thanks for any help, this issue is blocking my work on SlackE17.

Reverting r75008 fixes this issue.

-- 
Jérôme Pinot
http://ngc891.blogdns.net/


signature.asc
Description: Digital signature
--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] elementary: problem with focus in panel

2012-10-01 Thread Jérôme Pinot
Hi,

Moving from EFL 1.2 to 1.7 was not flawless for eperiodique. I had to
adjust again the button size in boxes, but well, it does mostly work as
expected.

I still got a major issue that prevents me to release: it seems that the
focus behaviour in panel changed a lot (or is it a bug?).

Under EFL 1.2, I can open a panel, which contains an entry widget and a
button, enter formula and activate via ENTER or the button to get the
result, as shown at the end of this video:
http://www.youtube.com/watch?v=wjp_0guZ05Q 

But with EFL 1.7, once the panel is open, it's not possible to get the
focus on the entry widget with the mouse (but with TAB it works).
Moreover, pressing ENTER when in the entry widget just close the
panel in same time it activates the entry.

So, if it's not bugs (I didn't change this part of eperiodique code), I'd
like to know:
- how to select the entry with mouse (as before)
- how to make the panel widget not react on the ENTER (or change the
  key)

For reference, the panel code of eperiodique is available here;
http://eperiodique.git.sourceforge.net/git/gitweb.cgi?p=eperiodique/eperiodique;a=blob;f=src/panel.c;h=f3b993035a5e3f330bdaaa48b2f9fbdd4f62a553;hb=HEAD
 

Thanks for any help, this issue is blocking my work on SlackE17.

-- 
Jérôme Pinot
http://ngc891.blogdns.net/ 


signature.asc
Description: Digital signature
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel