Re: SVG Canvas Brings Window Forward

2002-12-16 Thread Warren W. Thompson
dialog that suffers from the problem described below. Thanks! Warren Beer is proof that God loves us and wants us to be happy. --Benjamin Franklin "Warren W. Thompson" wrote: > > Hi, > > I have observed that when the mouse

SVG Canvas Brings Window Forward

2002-11-22 Thread Warren W. Thompson
Hi, I have observed that when the mouse pointer moves over the JSVGCanvas object the window that contains it will be moved in front of any other windows within the application. I have found this issue running on Windows 2000 and Windows XP. Also, I have reproduced this issue using both J2SE 1.4.0

Problem Using The tspan Element And The UpdateManager

2002-05-03 Thread Warren W. Thompson
Hi. I have encountered an unusual behavior when dealing with tspan elements and the Batik UpdateManager. Essentially, I am trying to change a text label within an SVG file. I have succeeded in changing the label when the target XML text node is contained within a text element. However, I have been

Re: Embed a Swing Component in an JSVGCanvas

2002-01-08 Thread Warren W. Thompson
Sorry to ask so many questions, but I am relatively new to SVG development. I have read about the SVG foreignObject element and I am wondering if it is proper to integrate that with the proposed embedded Swing tag. I am not exactly sure how the foreignObject element is intended to be used. There

Re: Embed a Swing Component in an JSVGCanvas

2002-01-07 Thread Warren W. Thompson
: > > On Thursday 20 December 2001 16:03, Warren W. Thompson wrote: > > Is it possible to embed Swing components, like a JTextField, inside of > > an SVG file being shown in a JSVGCanvas? The closest thing that I found > > on the Batik Web site was the section that deals

Embed a Swing Component in an JSVGCanvas

2001-12-20 Thread Warren W. Thompson
Is it possible to embed Swing components, like a JTextField, inside of an SVG file being shown in a JSVGCanvas? The closest thing that I found on the Batik Web site was the section that deals with 'Extensions' to the SVG XML. Has anyone successfully done something like this? Thanks,

Re: Render SVG as a BufferedImage

2001-12-20 Thread Warren W. Thompson
ge is loaded. MediaTracker tracker = new MediaTracker( new JPanel() ); tracker.addImage( img, 0 ); try { tracker.waitForID( 0 ); } catch( InterruptedException ex ){ ex.printStackTrace(); } // Return the newly rendered image. return img; } Warren W. Tho

Render SVG as a BufferedImage

2001-12-17 Thread Warren W. Thompson
) { e.printStackTrace(); } return bufImg; } Thanks in advance for your assistance! Warren W. Thompson Beer is proof that God loves us and wants us to be happy. --Benjamin Franklin - To