[cp-patches] [generics] Patch: FYI: minor generics updates

2006-04-25 Thread Tom Tromey
I'm checking this in on the generics branch. This fixes a few problems on the generics branch as pointed out by japi. Tom 2006-04-25 Tom Tromey <[EMAIL PROTECTED]> * javax/swing/JComboBox.java (AccessibleJComboBox): Now public. * javax/swing/tree/VariableHeightLayoutCache.java

[cp-patches] FYI:JTree editing fix.

2006-04-25 Thread Audrius Meskauskas
If was reported that clicking on another row while editing causes abnormal termination of the session (the incorrect node is updated). This path fixes the problem explicitly cancelling the editing session, if required. 2006-04-25 Audrius Meskauskas <[EMAIL PROTECTED]> * javax/swing/plaf/

Re: [cp-patches] FYI: JTree multiple selection fix.

2006-04-25 Thread Lillian Angel
On Tue, 2006-04-25 at 20:47 +0200, Audrius Meskauskas wrote: > Lillian Angel wrote: > > >Sorry for sending another email :( Here are all the problems I see with > >the swing tree demo: > > > >- Every time you click new element, the tree should be repainted > >instantly to see the new element. This

Re: [cp-patches] FYI: JTree multiple selection fix.

2006-04-25 Thread Audrius Meskauskas
Lillian Angel wrote: Sorry for sending another email :( Here are all the problems I see with the swing tree demo: - Every time you click new element, the tree should be repainted instantly to see the new element. This happens when you add an element to an expanded directory. I am not sure if

[cp-patches] FYI: Making JTree more similar to Sun's

2006-04-25 Thread Audrius Meskauskas
Lillian pointed that JTree now is displayed a little bit differently than in Sun's jre. This patch makes the tree to look more similar. 2006-04-25 Audrius Meskauskas <[EMAIL PROTECTED]> * javax/swing/plaf/basic/BasicTreeUI.java (NodeDimensionsHandler.getRowX): Add half of the icon width

Re: [Fwd: Re: [cp-patches] FYI: gnu.xml.dom.html2.* fixes and additions]

2006-04-25 Thread Lillian Angel
On Tue, 2006-04-25 at 16:57 +0200, Audrius Meskauskas wrote: > If you run http://www.geocities.com/SiliconValley/Park/9967/atari.html > in the standalone (using gcjappletviewer), you will notice one of the > applets is not loaded. The problem is the codebase for the applet is > being parsed to "htt

Re: [Fwd: Re: [cp-patches] FYI: gnu.xml.dom.html2.* fixes and additions]

2006-04-25 Thread Audrius Meskauskas
If you run http://www.geocities.com/SiliconValley/Park/9967/atari.html in the standalone (using gcjappletviewer), you will notice one of the applets is not loaded. The problem is the codebase for the applet is being parsed to "http:" instead of the entire url. Hello, Lillian, I did not expected

Re: [cp-patches] FYI: JTree multiple selection fix.

2006-04-25 Thread Lillian Angel
I noticed that the control icons are painted behind the lines drawn for the tree. I ran into this problem when working on BasicTreeUI. You need to make sure all the lines are painted before painting the control icons. It does not work if you try to paint both simulataneously. Let me know if you ne

Re: [cp-patches] FYI: JTree multiple selection fix.

2006-04-25 Thread Lillian Angel
On Tue, 2006-04-25 at 10:20 -0400, Lillian Angel wrote: > On Tue, 2006-04-25 at 10:19 -0400, Lillian Angel wrote: > > I noticed that the control icons are painted behind the lines drawn for > > the tree. I ran into this problem when working on BasicTreeUI. You need > > to make sure all the lines ar

[cp-patches] FYI: Java2D fonts and Shape filling

2006-04-25 Thread Roman Kennke
Hi, I implemented drawString and drawGlyphVector methods based on fill(Shape) for a start. Also, I implemented a Shape filling using a polygon scanline conversion. The result is pretty amazing: http://kennke.org/blog/blosxom.cgi/2006/04/25#java2d-fonts In particular, the rendering seems to be qu

[cp-patches] FYI: DefaultTableColumnModel.java - more API doc updates

2006-04-25 Thread David Gilbert
This patch (committed) updates some more API docs in DefaultTableColumnModel.java: 2006-04-25 David Gilbert <[EMAIL PROTECTED]> * javax/swing/table/DefaultTableColumnModel.java: More API doc updates. Regards, Dave Index: javax/swing/table/DefaultTableColumnModel.java ===

[cp-patches] FYI: javax.swing API doc tag fixes

2006-04-25 Thread David Gilbert
I spotted a couple of bad API tags in JTable.java and fixed them. A quick search showed a couple of similar problems in AsyncBoxView.java and FlowView.java. These are fixed by this patch (committed): 2006-04-25 David Gilbert <[EMAIL PROTECTED]> * javax/swing/JTable.java: Fixed API

[cp-patches] FYI: DefaultTableColumnModel.moveColumn() fix

2006-04-25 Thread David Gilbert
This patch (committed) fixes a bug in the moveColumn() method: 2006-04-25 David Gilbert <[EMAIL PROTECTED]> * javax/swing/table/DefaultTableColumnModel.java (moveColumn): Call fireColumnMoved() not fireColumnAdded. Regards, Dave Index: javax/swing/table/DefaultTableColumnMode