cvs commit: xml-batik/sources/org/apache/batik/apps/svgbrowser PreferenceDialog.java

2002-08-01 Thread deweese
deweese 2002/08/01 17:51:40 Modified:sources/org/apache/batik/apps/svgbrowser PreferenceDialog.java Log: Fixed a small bug in the preference display. Revision ChangesPath 1.17 +5 -1 xml-batik/sources/org/apache/batik/apps/svgbrowser/Pre

cvs commit: xml-batik/sources/org/apache/batik/swing/svg JSVGComponent.java

2002-08-01 Thread deweese
deweese 2002/08/01 17:18:35 Modified:sources/org/apache/batik/swing/gvt JGVTComponent.java TextSelectionManager.java sources/org/apache/batik/swing/svg JSVGComponent.java Log: Now uses repaint instead of paintImmediately when double buffering i

Re: Where is "gc" declared in SVGGraphics2D?...possible bug?

2002-08-01 Thread Robert D
Thomas, Thanks again for the quick response :) Go old OO programing..got me that time.I guess all I had to was look upup the OO inheritance chain to the superclass to AbstractGraphics2D :-) Thank you for answering my "base_ic" question ;-) We all learn by sharing what we know Rob

Where is "gc" declared in SVGGraphics2D?...possible bug?

2002-08-01 Thread Thomas E Deweese
> "RD" == Robert D <[EMAIL PROTECTED]> writes: RD> Hello Batik team, If you look at the Source code for SVGGraphics RD> and look on line 268 you will see this piece of code: RD> 268 this.gc = new GraphicContext(new AffineTransform()); RD> My question is..I do not see "gc" declared in SV

cvs commit: xml-batik/sources/org/apache/batik/util ParsedURL.java ParsedURLData.java ParsedURLDefaultProtocolHandler.java

2002-08-01 Thread deweese
deweese 2002/08/01 13:24:32 Modified:sources/org/apache/batik/dom/util SAXDocumentFactory.java sources/org/apache/batik/util ParsedURL.java ParsedURLData.java ParsedURLDefaultProtocolHandler.java Log: 1) Fixed a bug in r

Where is "gc" declared in SVGGraphics2D?...possible bug?

2002-08-01 Thread Robert D
Hello Batik team, If you look at the Source code for SVGGraphics and look on line 268 you will see this piece of code: 268 this.gc = new GraphicContext(new AffineTransform()); My question is..I do not see "gc" declared in SVGGraphics2D!! Maybe I am missing something really basiccould

Re: What does DEFAULT_MAX_GC_OVERRIDES in SVGGenerator do?

2002-08-01 Thread Robert D
Thomas, Thank you for the quick responceyour description was right on target!! I understand now :-) Remember that since the Java 2D Graphics class is stateful the >hope is that you will draw lots of objects with this 'large' set of >new attributes. This is very good advice We all le

What does DEFAULT_MAX_GC_OVERRIDES in SVGGenerator do?

2002-08-01 Thread Thomas E Deweese
> "RD" == Robert D <[EMAIL PROTECTED]> writes: RD> Controls the policy for grouping nodes. Once the number of RD> attributes overridden by a child element is greater than RD> DEFAULT_MAX_GC_OVERRIDES,a new group is created. @see RD> org.apache.batik.svggen.DOMTreeManager [...] RD> Con

What does DEFAULT_MAX_GC_OVERRIDES in SVGGenerator do?

2002-08-01 Thread Robert D
Controls the policy for grouping nodes. Once the number of attributes overridden by a child element is greater than DEFAULT_MAX_GC_OVERRIDES,a new group is created. @see org.apache.batik.svggen.DOMTreeManager public static final int DEFAULT_MAX_GC_OVERRIDES = 3; I liked at DOMTreeManager...and