Re: [JAVA3D] JSplitPane and Canvas3D

2001-04-22 Thread K.R.Karthikeyan
. - Original Message - From: Illarramendi Amilibia, Aitor To: [EMAIL PROTECTED] Sent: Sunday, April 22, 2001 7:01 PM Subject: [JAVA3D] JSplitPane and Canvas3D Hello everybody:       I'm trying to work with a Canvas3D inside a JSplitPane of

Re: [JAVA3D] JSplitPane and Canvas3D

2001-04-22 Thread K.R.Karthikeyan
. - Original Message - From: "Michael Schnieders" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 22, 2001 10:04 PM Subject: Re: [JAVA3D] JSplitPane and Canvas3D > I don't have a solution, but just wanted say that I'm having this same > pr

Re: [JAVA3D] JSplitPane and Canvas3D

2001-04-22 Thread Michael Schnieders
I don't have a solution, but just wanted say that I'm having this same problem and haven't found a solution yet. I've attempted to change the weighting of various components with no luck. If anyone knows how to use a Canvas3D within a JSplitPane, I too would really like to know. Thanks, Mike _

[JAVA3D] JSplitPane and Canvas3D

2001-04-22 Thread Illarramendi Amilibia, Aitor
Hello everybody:       I'm trying to work with a Canvas3D inside a JSplitPane of Swing.       The Canvas3D is located in the right panel of the JSplitPane inside of JPanel with 'BorderLayout'  layout.       When I start the application and move the JSpliPane separator bar to the sides I o

Re: [JAVA3D] WG: [JAVA3D] JSplitPane and Canvas3D

2001-04-03 Thread K.R.Karthikeyan
pril 02, 2001 12:47 PM Subject: [JAVA3D] WG: [JAVA3D] JSplitPane and Canvas3D Andrew, the old mail perhaps can help you. Bo -Ursprüngliche Nachricht- Von: K.R.Karthikeyan [mailto:[EMAIL PROTECTED]] Gesendet: Sonntag, 1. April 2001 16:00 An: [EMAIL PROTECTED] Betreff: [JAVA3D] Canvas3

[JAVA3D] WG: [JAVA3D] JSplitPane and Canvas3D

2001-04-02 Thread Bo, Jianquan, myview
:[EMAIL PROTECTED]] Gesendet: Dienstag, 19. September 2000 13:47 An: [EMAIL PROTECTED] Betreff: Re: [JAVA3D] JSplitPane and Canvas3D Andreas, I understood your problem. It is not the splitframe that you need worry about. The splitframe is passing any resize callback to the canvas, but for some

Re: [JAVA3D] JSplitPane and Canvas3D

2000-09-19 Thread Andreas Ebbert
Hi Andrew, sorry for beeing stupid! :-( I should have first try out what you said. Andrew Phelps wrote: > I understood your problem. > It is not the splitframe that you need worry about. The splitframe is > passing any resize callback to the canvas, but for some reason the canvas's > internal

Re: [JAVA3D] JSplitPane and Canvas3D

2000-09-19 Thread Andrew Phelps
moved (by redrawing the canvas during the resize). Howevere this does cause some flicker. Hope this helps, Andy -Original Message- From: Andreas Ebbert [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 19, 2000 12:11 PM To: [EMAIL PROTECTED] Subject: Re: [JAVA3D] JSplitPane and Canvas3D

[JAVA3D] JSplitPane and Canvas3D

2000-09-19 Thread olivier fabregue
hello, In the right side you put a JPanel and inside the Canvas3D and you have to set minimumSize to the Jpanel olivier Fabregue [EMAIL PROTECTED] === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body

Re: [JAVA3D] JSplitPane and Canvas3D

2000-09-19 Thread Andreas Ebbert
ttle Demo, so you can see, what I mean :-) Best Regards, Andreas > -Original Message- > From: Andreas Ebbert [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 15, 2000 12:16 PM > To: [EMAIL PROTECTED] > Subject: [JAVA3D] JSplitPane and Canvas3D > > Hi, > > I

[JAVA3D] FW: [JAVA3D] JSplitPane and Canvas3D

2000-09-19 Thread Andrew Phelps
00 12:16 PM To: [EMAIL PROTECTED] Subject: [JAVA3D] JSplitPane and Canvas3D Hi, I have a canvas3d in a JSplitPane and now the divider will not move anymore because it gets no events when it is dragged over canvas3d. is this another topic of lightweight/heavyweight or am I just too dumb? Thanks for

Re: [JAVA3D] JSplitPane and Canvas3D

2000-09-16 Thread Carl Smotricz
Hi Andreas, You wrote: == I have a canvas3d in a JSplitPane and now the divider will not move anymore because it gets no events when it is dragged over canvas3d. is this another topic of lightweight/heavyweight or am I just too dumb? == This sounds to me a lot like a light/heavyw

[JAVA3D] JSplitPane and Canvas3D

2000-09-15 Thread Andreas Ebbert
Hi, I have a canvas3d in a JSplitPane and now the divider will not move anymore because it gets no events when it is dragged over canvas3d. is this another topic of lightweight/heavyweight or am I just too dumb? Thanks for your comments! Andreas

Re: [JAVA3D] JSplitPane and Canvas3D

1999-09-27 Thread Andrew n marshall
This is the problem of using heavy weight components (such as Java3D) in lightweight containers (such as all of Swing), especially if they overlap. Please see... http://www.javasoft.com/products/jfc/tsc/archive/tech_topics_arch/mixing/mixing.html Hope that helps. Anm On Mon, 27 Sep 1999, Jav

[JAVA3D] JSplitPane and Canvas3D

1999-09-26 Thread Java3d Problems
I am facing a problem with JSplitPane and Canvas3D. Can You help me ? The problem follows as : I am having a JSplitPane with leftComponent containing a JTree and rightComponent containing JDesktopPane. In the JdesktopPane i am having a JInteralFrame with Canvas3D on its contentPane. The

Re: [JAVA3D] JSplitPane and Canvas3D ##URGENT##

1999-09-22 Thread Miguel Tsuboyama
JSplitPane is a lightweight container... so, you're mixing light with heavyweight containers... that's a commonly error... try to display the Canvas3D inside a Dialog or JDialog... I think that could be an alternative... Regards, Miguel T. = http://sites.netscape.net/migueltt __

Re: [JAVA3D] JSplitPane and Canvas3D ##URGENT##

1999-09-22 Thread Thomas Auinger
Haven't we had that before? ;) Have a look at the java3d archive, you will find quite a couple of emails concerning that problem. The main problem is, that Swing uses components that are called "leightweight" components, i.e. they don't recruite a native window peer. On the other side, a Canvas3

[JAVA3D] JSplitPane and Canvas3D ##URGENT##

1999-09-22 Thread Pradyot Sahu
I am facing a problem with JSplitPane and Canvas3D. Can You help me ? The problem follows as : I am having a JSplitPane with leftComponent containing a JTree and rightComponent containing JDesktopPane. In the JdesktopPane i am having a JInteralFrame with Canvas3D on its contentPane. The problem o