Re: [cp-patches] RFC: notice cairo in INSTALL file

2005-05-20 Thread Michael Koch
On Fri, May 20, 2005 at 02:11:13AM +0200, Robert Schuster wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. While searching for info how to enable cairo support our INSTALL was not helpful. This patch fixes that. 2005-05-20 Robert Schuster [EMAIL PROTECTED] * INSTALL:

[cp-patches] RFC:Classpath web page:the new task in the task list.

2005-05-20 Thread Meskauskas Audrius
Despite of some rather pessimistic thinkings, people did contacted our group in the past, saying they would like to contribute with CORBA implementation. Hence I suggest to add the attached task to the Classpath task list. If somebody more socially competent knows how to make this to sound more

[cp-patches] FYI: Added checks for null references in javax.swing.plaf.basic.BasicInternalFrameTitlePane

2005-05-20 Thread Roman Kennke
2005-05-20 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicInternalFrameTitlePane.java (setButtonIcons): Added checks for null references. /Roman Index: javax/swing/plaf/basic/BasicInternalFrameTitlePane.java

[cp-patches] FYI: Added checks for null references in javax.swing.plaf.basic.BasicInternalFrameTitlePane

2005-05-20 Thread Roman Kennke
2005-05-20 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicInternalFrameTitlePane.java (setButtonIcons): Added checks for null references. /Roman Index: javax/swing/plaf/basic/BasicInternalFrameTitlePane.java

[cp-patches] FYI: focus fixlet for java.awt.Component

2005-05-20 Thread Roman Kennke
Hi, I committed the attached patch which enables lightweight components to receive focus through mouse clicks. 2005-05-20 Roman Kennke [EMAIL PROTECTED] * java/awt/Component.java (dispatchEventImpl): Let MouseEvents trigger a focus change on lightweight components. /Roman

Re: [cp-patches] FYI: javax.swing.SwingUtilities fixlet

2005-05-20 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Roman, from your writings it seems to me that this is an undocumented feature in J2blah. Could you please add documentation of such special behavior to GNU Classpath' doc? In the code I would like to see a comment like this, too: Doing foo is what

[cp-patches] FYI: notice cairo in INSTALL file

2005-05-20 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. I applied Michael's suggestion and committed this: 2005-05-20 Robert Schuster [EMAIL PROTECTED] * INSTALL: Mention cairo dependency and how to enable it. cu Robert -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.1 (GNU/Linux) Comment:

[cp-patches] native/fdlibm/mprec.c: -Wall warning fixes

2005-05-20 Thread Christian Thalinger
Hi! We compile CACAO and thus classpath with -Wall to get rid of all warnings. mprec.c had some problems here. TWISTI 2005-05-20 Christian Thalinger [EMAIL PROTECTED] * native/fdlibm/mprec.c: Fixes to compile with -Wall without warnings (mostly parentheses in arithmetic).

[cp-patches] FYI: fixed keyboard focus handling in java.awt.DefaultKeyboardFocusManager

2005-05-20 Thread Roman Kennke
Hi, the DefaultKeyboardFocusManager as it was implemented had a serious problem: it recognized the KEY_PRESSED and KEY_RELEASED event for focusTraversalKeys and consumed them properly. BUT it did not recognize the KEY_TYPED event for the same key and let it go through the component. This ended up

[cp-patches] FYI: remove 2 methods from javax.swing.JEditorPane

2005-05-20 Thread Roman Kennke
I removed 2 methods from JEditorPane. These prevented key events from beeing delivered to the component and are not documented to be implemented in JEditorPane. 2005-05-20 Roman Kennke [EMAIL PROTECTED] * javax/swing/JEditorPane.java: (processComponentKeyEvent): Removed this

[cp-patches] FYI: implemented blinking caret in text components.

2005-05-20 Thread Roman Kennke
the subject says it all. 2005-05-20 Roman Kennke [EMAIL PROTECTED] * javax/swing/text/JTextComponent.java (CaretBlinkTimer): Added inner class to make caret blinking. (constructor): Create one instance of CaretBlinkTimer. (setEditable): Switch caret on and off