Re: [JAVA3D] Java3D and Swing..

2001-05-28 Thread Borja Marcos Suárez
Hola Aitor, aqui tienes el fichero con el ejemplo. Ya me contaras si te funciona. - Original Message - From: "Illarramendi Amilibia, Aitor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 28, 2001 3:32 PM Subject: Re: [JAVA3D] Java3D and

Re: [JAVA3D] Java3D and Swing..

2001-05-28 Thread Illarramendi Amilibia, Aitor
las prisas. Un saludo. -Original Message- From: Borja Marcos Suárez [mailto:[EMAIL PROTECTED]] Sent: lunes 28 de mayo de 2001 12:36 To: [EMAIL PROTECTED] Subject: Re: [JAVA3D] Java3D and Swing.. Hola Aitor, yo utilizo también JMenus de Swing y componentes pesados. La forma en que lo

Re: [JAVA3D] Java3D and Swing..

2001-05-28 Thread Borja Marcos Suárez
Hola Aitor, yo utilizo también JMenus de Swing y componentes pesados. La forma en que lo utilizo es distinta a como lo haces tu. No me he parado mucho a mirar tu código, pero creo que no te hace falta crear el JPopupMenu. 1.- Crea los menus como si el problema entre componentes pesados y lig

Re: [JAVA3D] Java3D and Swing..

2001-05-27 Thread Illarramendi Amilibia, Aitor
setEnabled(true); if(CManejadorDominio.getInstancia().getEstado()==CManejadorDominio.PLAN_CARG ADO) smSalvar.setEnabled(true); else smSalvar.setEnabled(false); break; default: smNuevo.setEnabled(false); smAbrir.setEnabled(false); sm

Re: [JAVA3D] Java3D and Swing..

2001-05-24 Thread Gernot Veith
hi, this is the heavyweight/lightweight problem discussed here many times. their is a FAQ at j3d.org and it is discussed in detail in the swing book of David M. Leary. Try to add a java.awt.Panel as a container into your layout. then put/remove the canvas3d into/from the panel via menu. Gernot

Re: [JAVA3D] Java3D and Swing..

2001-05-24 Thread Mona Wong
Hi Simone: Yes Java 3D works with Swing. I have both of them in my application. Create a Canvas3D and put it inside a JPanel. There are many examples on Sun's website with them together. Cheers, Mona > I am programming an application where I have a menu built with Swing. In >

Re: [JAVA3D] Java3D and Swing..

2001-05-24 Thread Crossley, Allistair
The only issue I have come up against is with the SWING JMenu. Because the SWING components are lightweight and the Canvas3D inherits from the heavyweight AWT Canvas, the lightweight menu will appear underneath the Canvas3D...is this what you mean? I believe the team are trying to find a resolutio

Re: [JAVA3D] Java3D and Swing..

2001-05-24 Thread simone
Hello J.D. Thanks by attention. Simone. Ehlo Simone > > On Thu, 24 May 2001, simone wrote: > > > Hi All, > > Universe in > > Java3D. However this Universe always open outside my application instead > > > > of openning inside the screen. > I think you're forgeting to add the Canvas3D in the >

Re: [JAVA3D] Java3D and Swing..

2001-05-24 Thread Joachim Diepstraten
Ehlo Simone On Thu, 24 May 2001, simone wrote: > Hi All, > Universe in > Java3D. However this Universe always open outside my application instead > > of openning inside the screen. I think you're forgeting to add the Canvas3D in the constructor. (Instead of calling SimpleUniverse myUniverse = n

Re: [JAVA3D] Java3D and Swing..

2001-05-24 Thread Borja Marcos Suárez
Im using java 3d and swing and it works nice. Read the faq about this, http://www.j3d.org/faq/swing.html regards -- Borja Marcos Suárez mail: [EMAIL PROTECTED] icq: 41472800 msn: [EMAIL PROTECTED] Java 3D Spanish Group - http://lapagina.d

Re: [JAVA3D] Java3D and Swing

1999-11-03 Thread Dan Todor
It works. Hai Ning wrote: > does anyone know if Java3D works with Swing? it seems > i can not add canvas3D to a Swing panel. > any thought? > > thanks. > > -Hai > > === > To unsubscribe, send email to [EMAIL PROTECTED] and i

Re: [JAVA3D] Java3D and Swing

1999-01-02 Thread Hai Ning
thanks for all response. now i got it working. but for some reason, the canvas3D object seems to suppress other components. when i lanuch the program, only the canvas3D shows up. i have to force the JFrame to be redrawn (cover the window with another one, then bring it back to front) to make othe

Re: [JAVA3D] Java3D and Swing

1999-01-02 Thread Andrew R. Thomas-Cramer
Re: [JAVA3D] Java3D and Swing >There is problems adding heavyweight components to lightweight containers. > === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-

Re: [JAVA3D] Java3D and Swing

1999-01-02 Thread Arne Halvorsen
There is problems adding heavyweight components to lightweight containers. Hai Ning wrote: > does anyone know if Java3D works with Swing? it seems > i can not add canvas3D to a Swing panel. > any thought? > > thanks. > > -Hai > > ==

Re: [JAVA3D] Java3D and Swing

1999-01-02 Thread Mitch Williams
Hai Ning, Yes, Java 3D and Swing works quite nicely. I teach Java 3D for UCLA Continuing Education (Extension) and I used it for some of my demo's of Java 3D's capabilities. I can send you some samples if you're interested. Mitch Hai Ning wrote: > does anyone know if Java3D works with Swin

Re: [JAVA3D] Java3D and Swing

1999-01-02 Thread Joerg Baus
Hai Ning wrote: > > does anyone know if Java3D works with Swing? it seems > i can not add canvas3D to a Swing panel. > any thought? > > thanks. > > -Hai > Hi Hai, yes, you can incorporate Java3D and Swing. You can definitely extend JFrame to hold a 3DCanvas. Best regards Joerg