[cp-patches] FYI: X Peers enhancement

2007-05-22 Thread Roman Kennke
This brings the X peers up to the recent enhancement of the rasterizer. 2007-05-22 Roman Kennke [EMAIL PROTECTED] * gnu/java/awt/peer/x/XFontPeer2.java (XFontMetrics.charWidth): Use cached Point2D instance. * gnu/java/awt/peer/x/XGraphics2D.java

Re: [cp-patches] Gnu classpath permission patch ?

2007-05-22 Thread David Daney
Pierre Parrend wrote: Hello, I am looking for a small and efficient java class project to program secure java application. The Gnu Classpath seems to be very efficient, but there seem to be no java permission support. Is there some specific patch that would already be available ? Are you

[cp-patches] FYI: XEventPump fix

2007-05-22 Thread Robert Schuster
Hi, the attached patch makes mouse events work again for the X peers (and prevent a NPE later). Regards Robert 2007-05-22 Robert Schuster [EMAIL PROTECTED] * gnu/java/awt/peer/x/XEventQueue.java: (handleEvent): Use Input.event_window_id instead of Input.child_window_id

Re: [cp-patches] FYI: X Peers enhancement

2007-05-22 Thread Robert Schuster
Hi, you forgot to commit the changelog entry. Did that for you. Regards Robert Roman Kennke schrieb: This brings the X peers up to the recent enhancement of the rasterizer. 2007-05-22 Roman Kennke [EMAIL PROTECTED] * gnu/java/awt/peer/x/XFontPeer2.java

Re: [cp-patches] FYI: XEventPump fix

2007-05-22 Thread Robert Schuster
Hi, actually the changelog should read: 2007-05-22 Robert Schuster [EMAIL PROTECTED] * gnu/java/awt/peer/x/XEventQueue.java: (handleEvent): Use Input.event_window_id instead of Input.child_window_id for mouse presses/releases movement. Sorry for the

[cp-patches] FYI: fix key events for X peers

2007-05-22 Thread Robert Schuster
Hi, I was missing the keyboard part in my last patch. Here it is. 2007-05-22 Robert Schuster [EMAIL PROTECTED] * gnu/java/awt/peer/x/XEventQueue.java: (handleEvent): Use Input.event_window_id for key presses/releases. Regards Robert Index:

[cp-patches] RFC: calculate button modifiers for X peers

2007-05-22 Thread Robert Schuster
Hi, the attached patch properly calculates the modifiers for mouse press and release events. Ok, to commit? 2007-05-22 Robert Schuster [EMAIL PROTECTED] * gnu/java/awt/peer/x/XEventQueue.java: (handleEvent): Calculate modifier value for mouse presse and release events.

Re: [cp-patches] RFC: calculate button modifiers for X peers

2007-05-22 Thread Roman Kennke
Hi Robert, the attached patch properly calculates the modifiers for mouse press and release events. This looks very good. Except, if I read the patch correctly, the import gnu.java.awt.EventModifier isn't needed. Please commit. Thank you for fixing this. /Roman -- Dipl.-Inf. Roman Kennke,

[cp-patches] FYI: mouse event modifiers fix for the X peers

2007-05-22 Thread Robert Schuster
Hi, the attached patch fixes the modifiers for the X peers. Changes since my last RFC are: Removed a superfluous import, changed all number literals to constant names and mentioned the button clipping in the changelog. 2007-05-22 Robert Schuster [EMAIL PROTECTED] *