Re: [cp-patches] FYI: X peers

2006-06-30 Thread Raif S. Naffah
hello Roman, On Friday 30 June 2006 01:27, Roman Kennke wrote: > I checked in the Escher-based X peers and added some configury for > enabling it. To build the X peers you need the most recent Escher > library, to be found here: > > http://kennke.org/~roman/escher-0.3.0.jar > > Configure with: --w

[cp-patches] FYI: AbstractGraphics2D fix

2006-06-30 Thread Roman Kennke
This provides a default impl for getDestinationRaster() in AbstractGraphics2D. I hope that this fixes the build for the X peers. 2006-07-01 Roman Kennke <[EMAIL PROTECTED]> * gnu/java/awt/java2d/AbstractGraphics2D.java (transform): Make field protected. (getDestinationRa

Re: [cp-patches]: RFA: TextArea and TextComponent fixes

2006-06-30 Thread Thomas Fitzsimmons
Tania Bento wrote: Hey, Based on David Gilbert's comments and suggestions, I have made these modifcations. I have also committed mauve tests for these changes. If someone could please approve/comment on this patch, that would be great. Looks good, please commit. Thanks, Tom Thanks, Tania

Re: [cp-patches] FYI: Checkbox group fix

2006-06-30 Thread Lillian Angel
Added synchronized blocks around groupMap.get calls. 2006-06-30 Lillian Angel <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/GtkCheckboxPeer.java (create): Added synchronized block around groupMap.get calls. (setCheckboxGroup): Likewise. On Fri, 2006-06-30 at 15:57 -0400

Re: [cp-patches] FYI: Checkbox group fix

2006-06-30 Thread Lillian Angel
fitzsim suggested that not all functions be synchronized, but there be a synchronized block around the code that adds the new pointer to the groupMap. Fixed. 2006-06-30 Lillian Angel <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/GtkCheckboxPeer.java (create): Changed to be non-s

[cp-patches] RFC: Crypto: SecretKeySpec equals method does not check the object type

2006-06-30 Thread Matthew Wringe
Hi, I have attached a small patch that fixes PR28212: SecretKeySpec equals method does not check the object type (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28212) The equal method now checks the object type passed to the equals method to make sure it is an instance of SecretKeySpec. Thanks, M

Re: [cp-patches] Patch: Checkbox group fix

2006-06-30 Thread Lillian Angel
Hi, I fixed the issues Tom stated below. On Fri, 2006-06-30 at 13:03 -0400, Thomas Fitzsimmons wrote: > Hi, > > Lillian Angel wrote: > > This patch fixes the long standing problem of not being able to > > dynamically switch between a checkbox and a radio button. I.e. moving a > > checkbox to a c

[cp-patches] RFA: Native cairo benchmarking

2006-06-30 Thread Francis Kung
Hi, As Tom Fitzsimmons suggested, I've created a native cairo benchmark using GTK to compare our Java implementation with (I'll post the results to the classpath list in a minute). Using a GTK widget, the benchmark tests some of the basic java2d operations (draws/fills on arcs, curves, lines, and

[cp-patches]: RFA: TextArea and TextComponent fixes

2006-06-30 Thread Tania Bento
Hey, Based on David Gilbert's comments and suggestions, I have made these modifcations. I have also committed mauve tests for these changes. If someone could please approve/comment on this patch, that would be great. Thanks, Tania 2006-06-30 Tania Bento <[EMAIL PROTECTED]> * java/aw

[cp-patches] FYI: Remove ClasspathTextLayoutPeer

2006-06-30 Thread Sven de Marothy
2006-06-30 Sven de Marothy <[EMAIL PROTECTED]> * gnu/java/awt/ClasspathToolkit.java, * gnu/java/awt/peer/x/XToolkit.java, * gnu/java/awt/peer/qt/QtToolkit.java, * gnu/java/awt/peer/gtk/GtkToolkit.java, Remove ClasspathTextLayoutPeer. * gnu/java/awt

[cp-patches] FYI: Minor drawGlyphVector fix

2006-06-30 Thread Sven de Marothy
2006-06-30 Sven de Marothy <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/CairoGraphics2D.java: (drawGlyphVector): Don't draw empty vectors. Index: gnu/java/awt/peer/gtk/CairoGraphics2D.java === RCS file: /sources/cla

Re: [cp-patches] Patch: Checkbox group fix

2006-06-30 Thread Thomas Fitzsimmons
Hi, Lillian Angel wrote: This patch fixes the long standing problem of not being able to dynamically switch between a checkbox and a radio button. I.e. moving a checkbox to a checkbox group changes the checkbox to a radio button. Tom helped a lot with this patch. He removed the CheckboxGroupPee

[cp-patches] Patch: Checkbox group fix

2006-06-30 Thread Lillian Angel
This patch fixes the long standing problem of not being able to dynamically switch between a checkbox and a radio button. I.e. moving a checkbox to a checkbox group changes the checkbox to a radio button. Tom helped a lot with this patch. He removed the CheckboxGroupPeer and we fixed it so everyth

[cp-patches] FYI: Fix build != srcdir and distcheck

2006-06-30 Thread Mark Wielaard
Hi, When using builddir != srcdir (as on the autobuilder) things didn't build successfully. This fixes that. 2006-06-30 Mark Wielaard <[EMAIL PROTECTED]> * configure.ac: Move standard.omit creation after dirs are created. Cat standard.omit.in from srcdir. Make exclude regex more explic

Re: [cp-patches] X/Escher peers

2006-06-30 Thread Michael Koch
On Thu, Jun 29, 2006 at 11:28:52PM +0100, Andrew John Hughes wrote: > I second that. Putting it in external/ would be best, at least until > the distributions pick up on it and start including it in a uniform way. I second that too. But please do it in a way where distros can decide the use the o

[cp-patches] FYI: Build fix

2006-06-30 Thread Roman Kennke
It seems like I broke the build yesterday. This should fix it. However, it seems that building with Escher lets jikes crash: jikes: symbol.h:1110: bool TypeSymbol::IsInner() const: Assertion `(! IsLocal() && ! Anonymous()) || (IsNested() && ! ACC_STATIC())' failed. It seems to work with ecj, so

[cp-patches] FYI: JComponent - more fixes

2006-06-30 Thread David Gilbert
This patch (committed) adds some more fixes to the JComponent class (I wrote some Mauve tests for these). 2006-06-30 David Gilbert <[EMAIL PROTECTED]> * javax/swing/JComponent.java (registerKeyboardAction(ActionListener, KeyStroke, int): Added API docs, (regist

Re: [cp-patches] RFA: more TextArea.java fixes

2006-06-30 Thread David Gilbert
Hi Tania, Tania Bento wrote: Hey, This patch fixes a couple of Harmony's Tests that were failing on Classpath: - In the InsertText and AppendTextMethod, I added the case where peer == null. - In the constructor, if the text specified by the user is null, it should be changed to "". Could som