[piccolo2d-dev] Re: r962 committed - Made PSwing.setVisible lazily call its component's setVisible method d...

2010-02-01 Thread cmal...@pixelzoom.com
Btw... Commenting out the ComponentListener added in the PSwing constructor does make the problem go away. Chris On Feb 1, 4:07 pm, "cmal...@pixelzoom.com" wrote: > I've reproduced the problem in an example, see > issue160:http://code.google.com/p/piccolo2d/issues/detail?id=160 > > Chris > >

[piccolo2d-dev] Re: Issue 160 in piccolo2d: endless calls to PSwing's ComponentListener

2010-02-01 Thread piccolo2d
Comment #1 on issue 160 by cmal...@pixelzoom.com: endless calls to PSwing's ComponentListener http://code.google.com/p/piccolo2d/issues/detail?id=160 Example originally attached to report had debug output attached to the wrong PSwing. Attached is a corrected example. Attachments:

[piccolo2d-dev] Re: Release Piccolo2D.Java 1.3 failed

2010-02-01 Thread cmal...@pixelzoom.com
See issue 160 for the "endless series of events" issue. All problems we've identified are now in the issues database. 158 and 159 are resolved. 160 is open. Chris On Feb 1, 11:03 am, "cmal...@pixelzoom.com" wrote: > An update on where we're at with the PSwing issues... > > Issue 158 was reso

[piccolo2d-dev] Re: r962 committed - Made PSwing.setVisible lazily call its component's setVisible method d...

2010-02-01 Thread cmal...@pixelzoom.com
I've reproduced the problem in an example, see issue160: http://code.google.com/p/piccolo2d/issues/detail?id=160 Chris On Feb 1, 2:32 pm, Allain Lalonde wrote: > Reason for adding the component listener in PSwing's constructor was that > during the creation of unit tests for it, a bizarre situat

[piccolo2d-dev] Issue 160 in piccolo2d: endless calls to PSwing's ComponentListener

2010-02-01 Thread piccolo2d
Status: New Owner: CC: allain.lalonde New issue 160 by cmal...@pixelzoom.com: endless calls to PSwing's ComponentListener http://code.google.com/p/piccolo2d/issues/detail?id=160 What steps will reproduce the problem? Run the attached example (DebugPSwingComponentAdapter) using Piccolo

Re: [piccolo2d-dev] Re: r962 committed - Made PSwing.setVisible lazily call its component's setVisible method d...

2010-02-01 Thread Allain Lalonde
Reason for adding the component listener in PSwing's constructor was that during the creation of unit tests for it, a bizarre situation became obviously possible. Invisible PSwing node and visible JComponent or Visible PSwing and invisible JComponent. Rather than try to parse out the behaviour in

[piccolo2d-dev] Re: r962 committed - Made PSwing.setVisible lazily call its component's setVisible method d...

2010-02-01 Thread cmal...@pixelzoom.com
I can't seem to reproduce this in a simple example. But in one of our applications, I see an endless series of calls to the ComponentListener that is added in PSwing's constructor. The calls alternate between componentShown and componentHidden. And there is nothing in the application code that a

[piccolo2d-dev] Re: Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Comment #7 on issue 159 by heue...@gmail.com: events not delivered to PSwing Components for some transforms http://code.google.com/p/piccolo2d/issues/detail?id=159 Looks good for me with r964 -- You received this message because you are listed in the owner or CC fields of this issue, or beca

[piccolo2d-dev] [piccolo2d] r964 committed - Applied formatting changes. Eclipse, I love you but...

2010-02-01 Thread piccolo2d
Revision: 964 Author: allain.lalonde Date: Mon Feb 1 11:58:18 2010 Log: Applied formatting changes. Eclipse, I love you but... http://code.google.com/p/piccolo2d/source/detail?r=964 Modified: /piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/PNode.java ===

[piccolo2d-dev] Re: Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Comment #6 on issue 159 by heue...@gmail.com: events not delivered to PSwing Components for some transforms http://code.google.com/p/piccolo2d/issues/detail?id=159 Note r963 should be reapplied to trunk without tab characters before this issue is closed -- You received this message becaus

[piccolo2d-dev] Re: Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Updates: Status: Verified Comment #5 on issue 159 by cmal...@pixelzoom.com: events not delivered to PSwing Components for some transforms http://code.google.com/p/piccolo2d/issues/detail?id=159 (No comment was entered for this change.) -- You received this message because you are lis

[piccolo2d-dev] Re: Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Comment #4 on issue 159 by cmal...@pixelzoom.com: events not delivered to PSwing Components for some transforms http://code.google.com/p/piccolo2d/issues/detail?id=159 This issue appears to be fixed. Caveat: r963 diff shows that most of PNode source file was modified. In a separate email,

[piccolo2d-dev] Re: Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Updates: Status: Fixed Mergedinto: - Comment #3 on issue 159 by allain.lalonde: events not delivered to PSwing Components for some transforms http://code.google.com/p/piccolo2d/issues/detail?id=159 This issue was closed by revision r963. -- You received this message because y

[piccolo2d-dev] [piccolo2d] r963 committed - Fixing error with rounding error bug when calculating inverseTransform...

2010-02-01 Thread piccolo2d
Revision: 963 Author: allain.lalonde Date: Mon Feb 1 11:30:02 2010 Log: Fixing error with rounding error bug when calculating inverseTransform repeatedly during globalToLocal. Fixes Issue 159 http://code.google.com/p/piccolo2d/source/detail?r=963 Modified: /piccolo2d.java/trunk/core/src/mai

[piccolo2d-dev] Re: Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Comment #2 on issue 159 by allain.lalonde: events not delivered to PSwing Components for some transforms http://code.google.com/p/piccolo2d/issues/detail?id=159 I've narrowed it down to the code in PNode.globalToLocal. It seems to be lossy. I'll try changing it to compute a globalTransform

[piccolo2d-dev] Re: Release Piccolo2D.Java 1.3 failed

2010-02-01 Thread cmal...@pixelzoom.com
An update on where we're at with the PSwing issues... Issue 158 was resolved by Allain last week, and fixed a couple of our problems. Issue 159 was opened a few minutes ago, and is related to PSwing transform/picking problems. I am still investigating one additional issue, where a PSwing Compone

[piccolo2d-dev] Re: Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Updates: Status: Accepted Owner: allain.lalonde Labels: Type-Defect Priority-Critical Toolkit-Piccolo2D.Java OpSys-All Component-Extras Milestone-1.3 Comment #1 on issue 159 by allain.lalonde: events not delivered to PSwing Components for some transforms http://code.google.

[piccolo2d-dev] Issue 159 in piccolo2d: events not delivered to PSwing Components for some transforms

2010-02-01 Thread piccolo2d
Status: New Owner: CC: allain.lalonde, re...@colorado.edu New issue 159 by cmal...@pixelzoom.com: events not delivered to PSwing Components for some transforms http://code.google.com/p/piccolo2d/issues/detail?id=159 What steps will reproduce the problem? Run the attached example (Debug