Re: [cp-patches] FYi: Implement (naive) Bidi.requiresBidi() workaround

2005-12-31 Thread Mark Wielaard
Hi, On Sat, 2005-12-24 at 11:10 +0100, Mark Wielaard wrote: But you are right that we could/should probably add most things from the weak and neutral category, which we know won't disrupt left-to-rightness: DIRECTIONALITY_EUROPEAN_NUMBER (EN) DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR (ES)

[cp-patches] FYi: Implement (naive) Bidi.requiresBidi() workaround

2005-12-23 Thread Mark Wielaard
Hi, This one method was needed for some eclipse plugin (SWT seems to do all other bidirectional stuff internally). Sven came up with the suggestion to just use Character.getDirectionality() for it: 2005-12-23 Mark Wielaard [EMAIL PROTECTED] Implement workaround suggested in bug

Re: [cp-patches] FYi: Implement (naive) Bidi.requiresBidi() workaround

2005-12-23 Thread Tom Tromey
Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark* Returns false if all characters in the text between start and end Mark* are all left-to-right text. WARNING, this implementation is Mark* slow, it calls codeCharacter.getDirectionality(char)/code on Mark* all characters. I'm