[cp-patches] Patch: CSS Parser

2005-12-20 Thread Lillian Angel
After looking into StyleSheets quite a bit, I found we needed a CSSParser. This is not a public class, so it has been hard to implement with almost no documentation. It is partially implemented so far. I am still working on it. 2005-12-19 Lillian Angel [EMAIL PROTECTED] *

Re: [cp-patches] Patch: several fixes for DefaultStyledDocument

2005-12-20 Thread Anthony Balkissoon
On Mon, 2005-12-19 at 17:54 -0500, Anthony Balkissoon wrote: This is the first part of the work I'm doing on DefaultStyledDocument. This fixes a couple issues associated with PR 24744 but the bug is not completely fixed yet, so the testcase for that PR still crashes. I will continue to work

[cp-patches] Patch: CSS Parser

2005-12-20 Thread Lillian Angel
Implemented some more parts of the CSS parser. I added some more comments in to help with implementation later. I have reached a point where I can no longer properly implement the functions since I am currently unable to throughly test. I will come back to this and finish the implementation soon.

Re: [cp-patches] Patch: several fixes for DefaultStyledDocument

2005-12-20 Thread Anthony Balkissoon
On Tue, 2005-12-20 at 11:01 -0500, Anthony Balkissoon wrote: On Mon, 2005-12-19 at 17:54 -0500, Anthony Balkissoon wrote: This is the first part of the work I'm doing on DefaultStyledDocument. This fixes a couple issues associated with PR 24744 but the bug is not completely fixed yet, so

Re: [cp-patches] FYI: BasicMenuItemUI fix

2005-12-20 Thread Lillian Angel
Can you send the patch for this? On Mon, 2005-12-19 at 16:05 +0100, Roman Kennke wrote: My previous optimization for JComponent painting exposed a bug in BasicMenuItemUI which causes MenuItems to be rendered badly. This is fixed by this patch. 2005-12-19 Roman Kennke [EMAIL PROTECTED]

[cp-patches] Patch for AbstractDocument fixes PR 25506

2005-12-20 Thread Anthony Balkissoon
Small fixlet fixes a long standing and annoying problem with text components. 2005-12-20 Anthony Balkissoon [EMAIL PROTECTED] Fixes bug #25506 * javax/swing/text/AbstractDocument.java: (insertString): Fire insert update whether the DocumentEvent was changed or

[cp-patches] Patch: JTree null root fix

2005-12-20 Thread Lillian Angel
For some reason, an exception was being thrown for a null root. It is legal to set the root of a tree to null. This is now fixed. I took out some revalidate calls that were not needed. 2005-12-20 Lillian Angel [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicTreeUI.java

[cp-patches] Patch: Text components home and end actions

2005-12-20 Thread Lillian Angel
Tony and I implemented HOME and END actions for text components. Unfortunately, we tried to implement a more efficient solution but viewToModel was not returning the proper values. I added a TODO comment in there, so it could get looked at later once we have viewToModel fixed. 2005-12-20 Lillian