I have a problem when trying to add a PApplet into SWT, it turns up an empty window when it should just render the PApplet. I.e. the PApplet works by itself, but not in a SWT window.

I thought that just adding the PApplet into the frame should initially do the trick, using the SWT tutorial code in Eclipse. Apparently it wasn't so easy. Here's my code, where MyPApplet is a customized PApplet:

public static void main(String[] args) {
	Display display = new Display();
	Shell shell = new Shell(display);
	Composite composite = new Composite(shell, SWT.EMBEDDED | SWT.NO_BACKGROUND);
	Frame frame = SWT_AWT.new_Frame(composite);
	PApplet pApplet = new MyPApplet();
	frame.add(pApplet);
	shell.open();
	while (!shell.isDisposed()) {
		if (!display.readAndDispatch()) display.sleep();
	}
	display.dispose();
}

Am I missing something?

link|improve this question

call me an idiot... what's a PApplet? – andyczerwonka Oct 28 '09 at 23:12
@arcticpenguin: PApplet is a class that processing.org uses as a window/applet frame. It subclasses java's Applet class. – Spoike Oct 29 '09 at 9:38
@Spoike did you ever found a solution for that? – Roflcoptr Apr 7 at 22:45
@Roflcoptr: I had to drop SWT and go with Swing in that project (since it took a while until someone answered). Check the answers below. I'm pretty sure it should work with SWT so it was probably a programming error on my behalf. – Spoike Apr 8 at 6:32
feedback

3 Answers

up vote 3 down vote accepted

I have made this little guide on how to fuse Processing with SWT in Eclipse: http://christian.liljedahl.dk/guides/processing-and-swt-in-eclipse

I hope this solves it for you.

My "trick" is to have one window for the Processing stuff, and a seperate window with the UI in its own thread.

link|improve this answer
feedback

i think all you're missing is pApplet.init(); see the documentation for the class: http://dev.processing.org/reference/core/javadoc/processing/core/PApplet.html

link|improve this answer
feedback

I think there is an alternative way to achieve that. Using a Swing Component as an adapter, which likes: add the PApplet into a JComponent like JInternalFrame , then embed this JComponent into the SWT Composite.

I've made some practices on that, and it works fine..

and also I've blogged some summary on this topic: http://blog.csdn.net/godoorsun/article/details/6747589

(btw, this article is written in Chinese :(, maybe you can read it through Google Translator, but the example code on that article is easy to understand)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.