[piccolo2d-dev] Issue 108 in piccolo2d: Set up hudson CI build

2009-07-27 Thread codesite-noreply


Comment #7 on issue 108 by allain.lalonde: Set up hudson CI build
http://code.google.com/p/piccolo2d/issues/detail?id=108

fixed in r584

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] [piccolo2d] r583 commited - issue#108 help hudson pick up the findbugs trends.

2009-07-27 Thread codesite-noreply

Revision: 583
Author: mr0...@mro.name
Date: Mon Jul 27 10:53:50 2009
Log: issue#108 help hudson pick up the findbugs trends.
http://code.google.com/p/piccolo2d/source/detail?r=583

Modified:
  /piccolo2d.java/branches/mvn4hudson/parent/pom.xml

===
--- /piccolo2d.java/branches/mvn4hudson/parent/pom.xml  Mon Jul 27 10:43:03  
2009
+++ /piccolo2d.java/branches/mvn4hudson/parent/pom.xml  Mon Jul 27 10:53:50  
2009
@@ -271,6 +271,9 @@
artifactIdfindbugs-maven-plugin/artifactId
version2.1/version
configuration
+   !-- 
http://wiki.hudson-ci.org/display/HUDSON/FindBugs+Plugin --
+   
findbugsXmlOutputtrue/findbugsXmlOutput
+   
findbugsXmlWithMessagestrue/findbugsXmlWithMessages
xmlOutputtrue/xmlOutput

xmlOutputDirectorytarget/site/xmlOutputDirectory
!--

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] [piccolo2d] r589 commited - Fixing implicit integer conversion by specifying that division is bein...

2009-07-27 Thread codesite-noreply

Revision: 589
Author: allain.lalonde
Date: Mon Jul 27 14:24:39 2009
Log: Fixing implicit integer conversion by specifying that division is  
being done on an double.
http://code.google.com/p/piccolo2d/source/detail?r=589

Modified:
   
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/event/PPanEventHandler.java

===
---  
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/event/PPanEventHandler.java
  
Mon Jul 27 11:23:33 2009
+++  
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/event/PPanEventHandler.java
  
Mon Jul 27 14:24:39 2009
@@ -156,8 +156,8 @@
  }

  protected double validatePanningSpeed(double delta) {
-double minDelta = minAutopanSpeed / (1000 /  
getDragActivity().getStepRate());
-double maxDelta = maxAutopanSpeed / (1000 /  
getDragActivity().getStepRate());
+double minDelta = minAutopanSpeed / (1000d /  
getDragActivity().getStepRate());
+double maxDelta = maxAutopanSpeed / (1000d /  
getDragActivity().getStepRate());

  boolean deltaNegative = delta  0;
  delta = Math.abs(delta);

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] [piccolo2d] r590 commited - Making findbugs a little happier.

2009-07-27 Thread codesite-noreply

Revision: 590
Author: allain.lalonde
Date: Mon Jul 27 15:02:47 2009
Log: Making findbugs a little happier.
http://code.google.com/p/piccolo2d/source/detail?r=590

Modified:
   
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/event/PSelectionEventHandler.java
   
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/event/PStyledTextEventHandler.java
   
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/handles/PBoundsHandle.java
   
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/nodes/PStyledText.java
   
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/pswing/PSwingEventHandler.java
   
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/swing/PDefaultScrollDirector.java

===
---  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/event/PSelectionEventHandler.java
 
Fri Jan 23 12:29:37 2009
+++  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/event/PSelectionEventHandler.java
 
Mon Jul 27 15:02:47 2009
@@ -629,10 +629,8 @@
  if (node instanceof PLayer) {
  for (Iterator i = selectableParents.iterator();  
i.hasNext();) {
  PNode parent = (PNode) i.next();
-if (parent instanceof PCamera) {
-if (((PCamera) parent).indexOfLayer((PLayer)  
node) != -1) {
-return true;
-}
+if (parent instanceof PCamera  ((PCamera)  
parent).indexOfLayer((PLayer) node) != -1) {
+return true;
  }
  }
  }
===
---  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/event/PStyledTextEventHandler.java

Mon Jul 20 19:57:42 2009
+++  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/event/PStyledTextEventHandler.java

Mon Jul 27 15:02:47 2009
@@ -150,22 +150,23 @@
  PStyledText newText = new PStyledText();

  Document doc =  
editor.getUI().getEditorKit(editor).createDefaultDocument();
-if (doc instanceof StyledDocument) {
-if  
(!doc.getDefaultRootElement().getAttributes().isDefined(StyleConstants.FontFamily)
-| 
| 
!doc.getDefaultRootElement().getAttributes().isDefined(StyleConstants.FontSize))
  
{
-
-Font eFont = editor.getFont();
-SimpleAttributeSet sas = new SimpleAttributeSet();
-sas.addAttribute(StyleConstants.FontFamily,  
eFont.getFamily());
-sas.addAttribute(StyleConstants.FontSize, new  
Integer(eFont.getSize()));
-
-((StyledDocument) doc).setParagraphAttributes(0,  
doc.getLength(), sas, false);
-}
+if (doc instanceof StyledDocument  missingFontFamilyOrSize(doc))  
{
+Font eFont = editor.getFont();
+SimpleAttributeSet sas = new SimpleAttributeSet();
+sas.addAttribute(StyleConstants.FontFamily, eFont.getFamily());
+sas.addAttribute(StyleConstants.FontSize, new  
Integer(eFont.getSize()));
+
+((StyledDocument) doc).setParagraphAttributes(0,  
doc.getLength(), sas, false);
  }
  newText.setDocument(doc);

  return newText;
  }
+
+private boolean missingFontFamilyOrSize(Document doc) {
+ 
return 
!doc.getDefaultRootElement().getAttributes().isDefined(StyleConstants.FontFamily)
+| 
| 
!doc.getDefaultRootElement().getAttributes().isDefined(StyleConstants.FontSize);
+}

  public void mousePressed(PInputEvent inputEvent) {
  PNode pickedNode = inputEvent.getPickedNode();
===
---  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/handles/PBoundsHandle.java

Fri Jan 23 12:29:37 2009
+++  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/handles/PBoundsHandle.java

Mon Jul 27 15:02:47 2009
@@ -110,8 +110,9 @@
  }

  public void mouseExited(PInputEvent aEvent) {
-PPickPath focus = aEvent.getInputManager().getMouseFocus();
  if (cursorPushed) {
+PPickPath focus =  
aEvent.getInputManager().getMouseFocus();
+
  if (focus == null || focus.getPickedNode() !=  
PBoundsHandle.this) {
  aEvent.popCursor();
  cursorPushed = false;
===
---  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/nodes/PStyledText.java

Sat Jul 18 17:44:30 2009
+++  
/piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/nodes/PStyledText.java

Mon Jul 27 15:02:47 2009
@@ -342,6 +342,7 @@
  font = style.getFont(rootElement.getAttributes());
  }
  }
+
  if 

[piccolo2d-dev] HTMLNode

2009-07-27 Thread allain

The code here:
http://groups.google.com/group/piccolo2d-users/browse_thread/thread/25835a96a5d921e7/6cf577a995557268?q=HTMLNode+piccolo#6cf577a995557268

Should definitely be considered for inclusion in Extras. For rendering
styled text, it's far better (or at least simpler) then trying to hack
something together with PStyledText and it's very fast since the guys
at sun seem to have optimized the heck out of the HTMLView stuff.
(I'll attest to having over a thousand HTML nodes on screen without
even a hiccup).

Thoughts?
--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Re: [piccolo2d] r591 commited - Starting to refactor PStyledText. It's a beast. Too bad we don't have ...

2009-07-27 Thread Michael Heuer

On Mon, Jul 27, 2009 at 6:10 PM, codesite-nore...@google.com wrote:

 Revision: 591
 Author: allain.lalonde
 Date: Mon Jul 27 16:09:53 2009
 Log: Starting to refactor PStyledText. It's a beast. Too bad we don't have
 any code that really puts it through its paces.
 http://code.google.com/p/piccolo2d/source/detail?r=591

 Modified:

 /piccolo2d.java/trunk/extras/src/main/java/edu/umd/cs/piccolox/nodes/PStyledText.java
...

Hello Allain,

Might you create an issue for this?  It's not obvious what your intent
is -- so far it appears as if you are just cleaning up the code,
right?

   michael

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 100 in piccolo2d: PInputEvent doesn't filter by modifier

2009-07-27 Thread codesite-noreply

Updates:
Status: Verified

Comment #2 on issue 100 by heuermh: PInputEvent doesn't filter by modifier
http://code.google.com/p/piccolo2d/issues/detail?id=100

(No comment was entered for this change.)

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 108 in piccolo2d: Set up hudson CI build

2009-07-27 Thread codesite-noreply

Updates:
Status: Verified

Comment #9 on issue 108 by heuermh: Set up hudson CI build
http://code.google.com/p/piccolo2d/issues/detail?id=108

Looks great, nice work Allain and Marcus.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 89 in piccolo2d: Low Test Coverage of PNode

2009-07-27 Thread codesite-noreply

Updates:
Status: Verified
Labels: Type-Enhancement Priority-Medium Effort-Medium  
Toolkit-Piccolo2D.Java OpSys-All Component-Core Milestone-1.3

Comment #4 on issue 89 by heuermh: Low Test Coverage of PNode
http://code.google.com/p/piccolo2d/issues/detail?id=89

Test coverage has been improved via several other commits.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 53 in piccolo2d: Headless build failure

2009-07-27 Thread codesite-noreply

Updates:
Status: Accepted

Comment #2 on issue 53 by heuermh: Headless build failure
http://code.google.com/p/piccolo2d/issues/detail?id=53

See also Issue 108

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 13 in piccolo2d: PSwing components cause extraneous redraws

2009-07-27 Thread codesite-noreply

Updates:
Status: Started

Comment #9 on issue 13 by heuermh: PSwing components cause extraneous  
redraws
http://code.google.com/p/piccolo2d/issues/detail?id=13

Moving this one back to status Started, since work is still ongoing.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 21 in piccolo2d: Cannot turn off interacting at the PRoot level

2009-07-27 Thread codesite-noreply

Updates:
Status: Verified

Comment #8 on issue 21 by heuermh: Cannot turn off interacting at the PRoot  
level
http://code.google.com/p/piccolo2d/issues/detail?id=21

(No comment was entered for this change.)

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 82 in piccolo2d: JComboBox visibility doesn't affect visiblity of PSwing node

2009-07-27 Thread codesite-noreply

Updates:
Status: Verified

Comment #4 on issue 82 by heuermh: JComboBox visibility doesn't affect  
visiblity of PSwing node
http://code.google.com/p/piccolo2d/issues/detail?id=82

(No comment was entered for this change.)

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 88 in piccolo2d: toImage doesn't return an image of the proper size

2009-07-27 Thread codesite-noreply

Updates:
Status: Started

Comment #5 on issue 88 by heuermh: toImage doesn't return an image of the  
proper size
http://code.google.com/p/piccolo2d/issues/detail?id=88

Moving this one back to status Started, since work is still ongoing.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 109 in piccolo2d: examples module should create a runnable jar

2009-07-27 Thread codesite-noreply

Status: New
Owner: 
Labels: Type-Enhancement Priority-Medium OpSys-All Toolkit-Piccolo2D.Java  
Component-Examples

New issue 109 by heuermh: examples module should create a runnable jar
http://code.google.com/p/piccolo2d/issues/detail?id=109

The examples module should create a runnable jar with the maven assembly
plugin and a descriptorId of jar-with-dependencies.

~/working/piccolo2d.java-trunk/examples
$ mvn assembly:assembly
...
[INFO] Error reading assemblies: No assembly descriptors found.

The jar manifest should set edu.umd.cs.piccolo.examples.ExampleRunner as
the main class.


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] [piccolo2d] r592 commited - Issue 19, Issue 90 ; rolling back changes made in r395

2009-07-27 Thread codesite-noreply

Revision: 592
Author: heuermh
Date: Mon Jul 27 19:27:36 2009
Log: Issue 19, Issue 90 ; rolling back changes made in r395
http://code.google.com/p/piccolo2d/source/detail?r=592

Modified:
   
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/PInputManager.java
   
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/event/PInputEvent.java
   
/piccolo2d.java/trunk/core/src/test/java/edu/umd/cs/piccolo/PInputManagerTest.java
   
/piccolo2d.java/trunk/core/src/test/java/edu/umd/cs/piccolo/event/PBasicInputEventListenerTest.java
   
/piccolo2d.java/trunk/core/src/test/java/edu/umd/cs/piccolo/event/PInputEventFilterTest.java
   
/piccolo2d.java/trunk/core/src/test/java/edu/umd/cs/piccolo/event/PInputEventTest.java

===
---  
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/PInputManager.java  
 
Fri Jan 23 12:25:52 2009
+++  
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/PInputManager.java  
 
Mon Jul 27 19:27:36 2009
@@ -89,7 +89,7 @@
   * Set the node that should receive key events.
   */
  public void setKeyboardFocus(PInputEventListener eventHandler) {
-PInputEvent focusEvent = new PInputEvent(this, null, null);
+PInputEvent focusEvent = new PInputEvent(this, null);

  if (keyboardFocus != null) {
  dispatchEventToListener(focusEvent, FocusEvent.FOCUS_LOST,  
keyboardFocus);
@@ -228,7 +228,7 @@
  if (nextInput == null)
  return;

-PInputEvent e = new PInputEvent(this, nextInput, nextInputSource);
+PInputEvent e = new PInputEvent(this, nextInput);

  Point2D newCurrentCanvasPosition = null;
  Point2D newLastCanvasPosition = null;
===
---  
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/event/PInputEvent.java
   
Sat Jul 18 05:08:49 2009
+++  
/piccolo2d.java/trunk/core/src/main/java/edu/umd/cs/piccolo/event/PInputEvent.java
   
Mon Jul 27 19:27:36 2009
@@ -64,14 +64,12 @@
  private InputEvent inputEvent;
  private PPickPath pickPath;
  private PInputManager inputManager;
-private PCamera inputSource;
  private boolean handled;

-public PInputEvent(PInputManager inputManager, InputEvent event,  
PCamera inputSource) {
+public PInputEvent(PInputManager inputManager, InputEvent event) {
  super();
  inputEvent = event;
  this.inputManager = inputManager;
-this.inputSource = inputSource;
  }

  public void pushCursor(Cursor cursor) {
@@ -102,7 +100,7 @@
   * getTopCamera.
   */
  public PCamera getCamera() {
-return (getPath() == null) ? inputSource :  
getPath().getBottomCamera();
+return getPath().getBottomCamera();
  }

  /**
@@ -110,7 +108,7 @@
   * with the PCanvas that requested the current repaint.
   */
  public PCamera getTopCamera() {
-return (getPath() == null) ? inputSource :  
getPath().getTopCamera();
+return getPath().getTopCamera();
  }

  /**
===
---  
/piccolo2d.java/trunk/core/src/test/java/edu/umd/cs/piccolo/PInputManagerTest.java
   
Tue Jul 14 12:23:14 2009
+++  
/piccolo2d.java/trunk/core/src/test/java/edu/umd/cs/piccolo/PInputManagerTest.java
   
Mon Jul 27 19:27:36 2009
@@ -78,14 +78,14 @@

public void testKeyPressedDispatchesToCurrentFocus() {
manager.setKeyboardFocus(mockListener);
-   PInputEvent event = new PInputEvent(manager, null, null);
+   PInputEvent event = new PInputEvent(manager, null);
manager.keyPressed(event);
assertEquals(2, mockListener.getNotificationCount());
assertEquals(KeyEvent.KEY_PRESSED, 
mockListener.getNotification(1).type);
}
public void testKeyReleasedDispatchesToCurrentFocus() {
manager.setKeyboardFocus(mockListener);
-   PInputEvent event = new PInputEvent(manager, null, null);
+   PInputEvent event = new PInputEvent(manager, null);
manager.keyReleased(event);
assertEquals(2, mockListener.getNotificationCount());
assertEquals(KeyEvent.KEY_RELEASED,  
mockListener.getNotification(1).type);
@@ -93,7 +93,7 @@

public void testKeyTypedDispatchesToCurrentFocus() {
manager.setKeyboardFocus(mockListener);
-   PInputEvent event = new PInputEvent(manager, null, null);
+   PInputEvent event = new PInputEvent(manager, null);
manager.keyTyped(event);
assertEquals(2, mockListener.getNotificationCount());
assertEquals(KeyEvent.KEY_TYPED, 
mockListener.getNotification(1).type);
===
---  
/piccolo2d.java/trunk/core/src/test/java/edu/umd/cs/piccolo/event/PBasicInputEventListenerTest.java
  
Sun Jul 19 09:01:04 2009
+++  

[piccolo2d-dev] Issue 19 in piccolo2d: PInputEvent does not have camera information for keyboard events.

2009-07-27 Thread codesite-noreply


Comment #10 on issue 19 by heuermh: PInputEvent does not have camera  
information for keyboard events.
http://code.google.com/p/piccolo2d/issues/detail?id=19

I'd like to go back to the drawing board on this one, so I am rolling back  
r395 to
fix Issue 90 and await further comment.

$ svn commit -m Issue 19, Issue 90 ; rolling back changes made in r395
 Sending...
 Transmitting file data ...
 Committed revision 592.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 90 in piccolo2d: Binary incompatible change from 1.2.1 in PInputEvent

2009-07-27 Thread codesite-noreply

Updates:
Status: Fixed

Comment #6 on issue 90 by heuermh: Binary incompatible change from 1.2.1 in  
PInputEvent
http://code.google.com/p/piccolo2d/issues/detail?id=90

I am rolling back r395 to fix Issue 90 and await further comment on Issue  
19.

$ svn commit -m Issue 19, Issue 90 ; rolling back changes made in r395
 Sending...
 Transmitting file data ...
 Committed revision 592.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 102 in piccolo2d: PNode.print swallows failures

2009-07-27 Thread codesite-noreply


Comment #1 on issue 102 by heuermh: PNode.print swallows failures
http://code.google.com/p/piccolo2d/issues/detail?id=102

r562 changed this to throw RuntimeException, is that sufficient?

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 53 in piccolo2d: Headless build failure

2009-07-27 Thread codesite-noreply

Updates:
Status: Verified

Comment #3 on issue 53 by heuermh: Headless build failure
http://code.google.com/p/piccolo2d/issues/detail?id=53

Sorry, that should have been a change to status Verified.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 72 in piccolo2d: PSelectionEventHandler grip points do not scale with zoom

2009-07-27 Thread codesite-noreply


Comment #10 on issue 72 by heuermh: PSelectionEventHandler grip points do  
not scale with zoom
http://code.google.com/p/piccolo2d/issues/detail?id=72

The method PSelectionEventHandler#decorateSelectedNode(PNode) is already  
public, so
why need a different factory?  Users are free to override this method and  
chose
another implementation, e.g.

 public void decorateSelectedNode(PNode node) {
 MySemanticBoundsHandle.addBoundsHandlesTo(node);
 }

I suggest WontFix.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 19 in piccolo2d: PInputEvent does not have camera information for keyboard events.

2009-07-27 Thread codesite-noreply

Updates:
Owner: s...@browsecode.org

Comment #11 on issue 19 by heuermh: PInputEvent does not have camera  
information for keyboard events.
http://code.google.com/p/piccolo2d/issues/detail?id=19

(No comment was entered for this change.)

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 71 in piccolo2d: PStyledTextEventHandler does not scale

2009-07-27 Thread codesite-noreply


Comment #6 on issue 71 by allain.lalonde: PStyledTextEventHandler does not  
scale
http://code.google.com/p/piccolo2d/issues/detail?id=71

I think so. Seems more logical. I'll make the change.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 71 in piccolo2d: PStyledTextEventHandler does not scale

2009-07-27 Thread codesite-noreply

Updates:
Status: Started

Comment #7 on issue 71 by allain.lalonde: PStyledTextEventHandler does not  
scale
http://code.google.com/p/piccolo2d/issues/detail?id=71

I think so. Seems more logical. I'll make the change.  re-opening.


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---



[piccolo2d-dev] Issue 13 in piccolo2d: PSwing components cause extraneous redraws

2009-07-27 Thread codesite-noreply


Comment #10 on issue 13 by allain.lalonde: PSwing components cause  
extraneous redraws
http://code.google.com/p/piccolo2d/issues/detail?id=13

No further work will be done since the suggested fix was implemented.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~--~~~~--~~--~--~---