[cp-patches] FYI: UnixFileSystemView.java - mark stub methods

2006-03-23 Thread David Gilbert
This patch (committed) marks three more stub methods: 2006-03-23 David Gilbert <[EMAIL PROTECTED]> * javax/swing/filechooser/UnixFileSystemView.java (getSystemDisplayName): Mark as stub, (getSystemIcon): Likewise, (getSystemTypeDescription): Likewise. Regards,

[cp-patches] FYI: Marked some stubs in javax.swing.*

2006-03-23 Thread David Gilbert
This patch (committed) marks some more stubs in javax.swing.*: 2006-03-23 David Gilbert <[EMAIL PROTECTED]> * javax/swing/JComboBox.java (selectWithKeyChar): Mark as stub, * javax/swing/JFileChooser.java (setDragEnabled): Mark as stub, (getDragEnabled):

[cp-patches] FYI:Make resize arrows to appear for the Internal Frame

2006-03-23 Thread Audrius Meskauskas
With the latest Mark's patch, it is possible to show the changed mouse cursor in the Internal Frame borders, indicating the possibility and direction of resize. Apart that this is the needed feature it also makes the frame resizing during testing debugging much easier. The resize arrows at the

[cp-patches] FYI: JTabbedPane color fixes

2006-03-23 Thread Roman Kennke
This fixes some slight color problems with the JTabbedPanes. This is really a difficult issue as it seems: - The UI must not set the component color to null (we should adapt this to the other components as well) when uninstalling. The reason is that the installDefaults() method checks if the color

Re: [cp-patches] RFC: gnu.java.math.MPN "optimizations"

2006-03-23 Thread Ian Rogers
I have created a project to benchmark the java.math library (and these proposed changes). From looking at GMP it is amazing how complex these libraries can be made. The benchmark project is at http://bigintbench.sourceforge.net/. My first goal is to port some of the gmp benchmark programs. Inte

[cp-patches] FYI: Added -force key to the RMIC source generator.

2006-03-23 Thread Audrius Meskauskas
This key is useful when generating various interesting experimental stubs. 2006-03-23 Audrius Meskauskas <[EMAIL PROTECTED]> * tools/gnu/classpath/tools/giop/GRMIC.java (main): Accept -force. * tools/gnu/classpath/tools/giop/GRMIC.txt: Explain -force. * tools/gnu/classpath/tools/giop/

[cp-patches] Patch: FYI: implement a stub

2006-03-23 Thread Tom Tromey
I'm checking this in. This implements a stub I found in java.net. Tom 2006-03-23 Tom Tromey <[EMAIL PROTECTED]> * java/net/URLConnection.java (getContent(Class[])): Implemented. Index: java/net/URLConnection.java === RCS

[cp-patches] RFC: gnu.regexp: miscellaneous fixes

2006-03-23 Thread Ito Kazumitsu
I have made another fix so that the followings pass. /\Aabc\z/m abc 0: abc *** Failers No match abc\n No match qqq\nabc No match abc\nzzz No match qqq\nabc\nzzz No match /b\z/ a\nb 0: b *** Failers No match /$(?<=^(a))/ a 0: 1: a /\Gabc/ abc 0: abc

[cp-patches] FYI: AccessibleJSlider stubs implemented

2006-03-23 Thread David Gilbert
This patch (committed) implements the stubbed methods in AccessibleJSlider and fixes a bug in the AccessibleJComponent class (the changeSupport field is not necessary, and isn't used by the firePropertyChange() methods): 2006-03-23 David Gilbert <[EMAIL PROTECTED]> * javax/swing/JCom

[cp-patches] FYI: RMI fixes.

2006-03-23 Thread Audrius Meskauskas
This patch contains many small fixes I made witing and debugging our RMI daemon (RMID) that is currently in preparation. Apart small bug fixes, there are changes that make debugging easier: added toString methods and throwing more informative exceptions. 2006-03-23 Audrius Meskauskas <[EMAIL

Re: [cp-patches] RFC: focus change fixes for text components - another try

2006-03-23 Thread Robert Schuster
Hi, accidently the patch I committed contained a change to setDot/moveDot(). However the change fixes the problem mentioned in PR 26808[0] and that is why I will leave it in and just fix the ChangeLog. The correct one is: 2006-03-23 Robert Schuster <[EMAIL PROTECTED]> * java/awt/Compon

Re: [cp-patches] RFC: system clipboard integration

2006-03-23 Thread Robert Schuster
Gary acknowledged this patch on IRC. Committed as well. Now we have X11-style Copy and Paste behavior in Swing's text components. :) cya Robert Robert Schuster wrote: > Hi, > this patch adds some code to an internal FocusListener implementation in > BasicTextUI that copies the current selection

[cp-patches] RFC: java.awt.Window fixlet

2006-03-23 Thread Wolfgang Baer
Hi, reverse japi points out that some methods must be overriden and made final in Window. A mauve test for this is committed (gnu/testlet/java/awt/Window/focusCycleRootTest.java). The API docs describe that these methods always return the same or do nothing at all for Window. I needed to adjust o

Re: [cp-patches] RFC: focus change fixes for text components

2006-03-23 Thread Robert Schuster
This patch was reviewed and confirmed by Lillian and Thomas Fitzsimmons on IRC. Committed. cya Robert Robert Schuster wrote: > Hi, > as described in PR 26737[0] the focus change behavior for text components is a > bit different than for other swing components. > > I implemented that behavior by

[cp-patches] FYI: AccessibleJProgressBar stubs implemented

2006-03-23 Thread David Gilbert
This patch (committed) implements some stubbed methods in AccessibleJProgressBar (these are almost the same as the AccessibleJSlider methods I committed earlier): 2006-03-23 David Gilbert <[EMAIL PROTECTED]> * javax/swing/JProgressBar.java (AccessibleJProgressBar.getAccessible

[cp-patches] FYI: Accessibility fixes

2006-03-23 Thread David Gilbert
This patch (committed) fixes a few minor bugs in the accessibility code (getAccessibleName() for several components, and getSelectedObjects() for JButton), and marks some more methods as stubs: 2006-03-23 David Gilbert <[EMAIL PROTECTED]> * java/awt/Component.java (getAccessi

Re: [cp-patches] RFC: java.awt.Window fixlet

2006-03-23 Thread Robert Schuster
Hi Wolfgang, can you check whether this fixes http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26837 ? cya Robert Wolfgang Baer wrote: > Hi, > > reverse japi points out that some methods must be overriden and > made final in Window. A mauve test for this is committed > (gnu/testlet/java/awt/Window/f

Re: [cp-patches] RFC: java.awt.Window fixlet

2006-03-23 Thread Wolfgang Baer
Hi Robert, Robert Schuster wrote: > Hi Wolfgang, > can you check whether this fixes > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26837 ? Seems so. I could traverse the textcomponents with the tab key without any NPEs. Wolfgang