Hi Venkataramana,
You might want to talk with Lukasz as he appears to be working on this issue as well.
Venkataramana_Jaladurgam wrote:
Thanks for the suggestion. The problem with this approach is the swing
components will not be scalable. I have created a class that extends AbstractGraphicsNode to display the
swing component.
[...]
The button's foreground and background color are changed only when mouse button is released. I expected that the color of the button will change immediately when the mouse button is pressed.
Any issues in the program? Any workarounds? Glad to know.
What you need to do is figure out how to tie the Swing 'repaint' request system into the GVT 'update' system. Since I don't know the details of the Swing system I can't really help that much.
See my response to Lukasz (mail archives) as it provides some hints.
-----Original Message----- From: Tonny Kohar [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 9:16 PM To: '[email protected]' Subject: Re: Mix SVG and Swing components
Hi,
I am required to add Swing components to the SVG canvas. I want to use
the
batik extensions. The trouble I am facing is in the actual rendering class:
The output I am getting in the JSVGCanvas is a static version of
JTextField.
I cannot enter characters or do anything with it. Any ideas? I believe if I can access JSVGCanvas or the related class where
the components are being rendered, then I can directly add my swing
component to it. But couldn't get how to get it. Batik developers pls.
help.
I do not know how to solve your problem, but as far as I know the batik GVT part is render the SVG stuff into Image that will be painted into the JSVGCanvas. The package org.apache.batik.gvt.renderer is where the rendering stuff.
How about extending JSVGCanvas or its parent paintComponent method and adding your textField there. Or maybe wrap JSVGCanvas and your textfield into custom component and using Java JComponent layer or z-order capability.
Regards Tonny Kohar
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
