[cp-patches] FYI:JTable.selectAll bug fix, reported by Antony Balkisson

2006-05-23 Thread Audrius Meskauskas
On the empty table, the attempt to select any rows or columns always throws IllegalArgumentException. Selecting nothing makes no sense and I think that the call should return without action. 2006-05-24 Audrius Meskauskas <[EMAIL PROTECTED]> * javax/swing/JTable.java (selectAll): Return wi

[cp-patches] FYI:Documenting of javax.naming

2006-05-23 Thread Audrius Meskauskas
2006-05-23 Audrius Meskauskas <[EMAIL PROTECTED]> * javax/swing/naming/CompositeName.java, javax/swing/naming/CompoundName.java: Documented. Index: CompositeName.java === RCS file: /sources/classpath/classpath/javax/naming/Co

[cp-patches] FYI: More complex JTable demo and noticed fixes

2006-05-23 Thread Audrius Meskauskas
This patch adds more controls (two types of combo boxes and slider) to our JTable demo and fixes the noticed deviations of they behavior from the Sun's GUI. There are still some differences remaining when trying to manipulate controls with the keyboard. 2006-05-23 Audrius Meskauskas <[EMAIL

[cp-patches] FYI:Documenting javax.naming

2006-05-23 Thread Audrius Meskauskas
2006-05-23 Audrius Meskauskas <[EMAIL PROTECTED]> * javax/swing/naming/CompositeName.java, javax/swing/naming/CompoundName.java: Documented.

[cp-patches] FYI: javax.swing.tree.* source formatting fixlets

2006-05-23 Thread David Gilbert
This patch (committed) fixes a few deviations from our coding style (pointed out by Checkstyle) in the javax.swing.tree.* package: 2006-05-23 David Gilbert <[EMAIL PROTECTED]> * javax/swing/tree/AbstractLayoutCache.java: Coding style fixes, * javax/swing/tree/DefaultMutableTre

Re: [cp-patches] RFC: GdkScreenGraphicsDevice et all implementation - preview patch

2006-05-23 Thread Thomas Fitzsimmons
Sven de Marothy wrote: On Mon, 2006-05-22 at 22:53 +0200, Robert Schuster wrote: The way its done now is pretty simple and there is much room for enhancement. However I want to have some feedback on the current state because I am new to Gdk/Gtk+ and Xlib/XRandR programming and had to work mysel

[cp-patches] FYI: DefaultTreeCellRenderer.java - small fix + API docs

2006-05-23 Thread David Gilbert
This patch (committed) makes a minor change in the constructor (the look-up key for a UI default) and adds API docs all over: 2006-05-23 David Gilbert <[EMAIL PROTECTED]> * javax/swing/tree/DefaultTreeCellRenderer.java (DefaultTreeCellRenderer): Changed key for setBack

[cp-patches] Classpath 0.91 startup exception

2006-05-23 Thread Archie Cobbs
After upgradeing JCVM to 0.91, I'm seeing an exception due to broken static initializer ordering in java.lang.VMClassLoader. The "bootjars" static field is initialized on line 173, but this is after its use (indirectly) in the static initializer that starts on line 83. Here's a stack trace: jav

[cp-patches] FYI: The first part of the 27680 fix

2006-05-23 Thread Audrius Meskauskas
2006-05-23 Audrius Meskauskas <[EMAIL PROTECTED]> PR 27680 * javax/swing/JTable.java (BooleanCellRenderer, IconCellRenderer): Set horizontal alignment to centered. Index: JTable.java === RCS file: /sources/classpath/cl

[cp-patches] FYI:The remaining part of the 27680 fix.

2006-05-23 Thread Audrius Meskauskas
2006-05-23 Audrius Meskauskas <[EMAIL PROTECTED]> PR 27680 * javax/swing/JTable.java (booleanInvertingEditor): New field. (defaultEditorsByColumnClass, defaultRenderersByColumnClass): Initialise in constructor. (columnMoved): Cancel editing. (createDefaultEditors): Rewritten.

Re: [cp-patches] RFC: GdkScreenGraphicsDevice et all implementation - preview patch

2006-05-23 Thread Thomas Fitzsimmons
Thomas Fitzsimmons wrote: Sven de Marothy wrote: On Mon, 2006-05-22 at 22:53 +0200, Robert Schuster wrote: The way its done now is pretty simple and there is much room for enhancement. However I want to have some feedback on the current state because I am new to Gdk/Gtk+ and Xlib/XRandR progr

Re: [cp-patches] RFC: GdkScreenGraphicsDevice et all implementation - preview patch

2006-05-23 Thread Robert Schuster
I have no problem with that. How is that Pointer API supposed to be used? cya Robert Sven de Marothy wrote: > On Mon, 2006-05-22 at 22:53 +0200, Robert Schuster wrote: > > >>The way its done now is pretty simple and there is much room for enhancement. >>However I want to have some feedback on

Re: [cp-patches] FYI: Switching resolutions demo

2006-05-23 Thread Robert Schuster
Hi, this patch was discarded. I committed a different one. cya Robert Robert Schuster wrote: > Hi, > this patch adds a subdemo to the AWT Demo application which shows how nice we > can switch the screen resolution (soon :) ). > > ChangeLog: > > 2006-05-23 Robert Schuster <[EMAIL PROTECTED]> >

[cp-patches] FYI: Switching resolutions (& fullscreen exclusive mode) demo

2006-05-23 Thread Robert Schuster
Hi, this patch adds a subdemo to the AWT Demo application which shows how nice we can switch the screen resolution and use the Full Screen Exclusive Mode API (soon :) ) ChangeLog: 2006-05-23 Robert Schuster <[EMAIL PROTECTED]> * examples/gnu/classpath/examples/awt/Demo.java: (M

[cp-patches] FYI: Switching resolutions demo

2006-05-23 Thread Robert Schuster
Hi, this patch adds a subdemo to the AWT Demo application which shows how nice we can switch the screen resolution (soon :) ). ChangeLog: 2006-05-23 Robert Schuster <[EMAIL PROTECTED]> * examples/gnu/classpath/examples/awt/Demo.java: (MainWindow.MainWindow): Added ResolutionWin

Re: [cp-patches] RFC: GdkScreenGraphicsDevice et all implementation - preview patch

2006-05-23 Thread Sven de Marothy
On Mon, 2006-05-22 at 22:53 +0200, Robert Schuster wrote: > The way its done now is pretty simple and there is much room for enhancement. > However I want to have some feedback on the current state because I am new to > Gdk/Gtk+ and Xlib/XRandR programming and had to work myself into the goodness