我一直在尝试将PApplet粘贴在JFrame中,并在用户更改JFrame的大小时调整其大小,但是文档(如果存在)尚不清楚。 Here告诉我使用

void setup() {
  frame.setResizable(true);
}

void resize(int w, int h) {
  super.resize(w,h);
  frame.setSize(w,h);
}


但是当我尝试似乎frame为null时,无论如何我都不清楚如何确保调用resize。

有没有人得到这个工作?

编辑:简化的代码。

这是基于http://wiki.processing.org/w/Swing_JSliders的一些代码:

public class MyPanel extends JPanel
{
    public MyPanel()
    {
        //have tried both BoxLayout and BorderLayout
        setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));

        //if, instead of a PApplet I use a JPanel, this resizes fine
        // it's only when using a PApplet that it won't resize
        //add our processing window
        PApplet pa = new PApplet();
        pa.init();
        add(pa);
    }

    // create external JFrame
    private static void createGui()
    {
        // create new JFrame
        JFrame jf = new JFrame("test");

        // this allows program to exit
        jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        // You add things to the contentPane in a JFrame
        jf.getContentPane().add(new MyPane());

        // keep window from being resized
        //jf.setResizable(false);

        // size frame
        jf.pack();

        // make frame visible
        jf.setVisible(true);

    }

    public static void main(String[] args)
    {
        // threadsafe way to create a Swing GUI
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run()
                {
                    createGui();
                }
            }
        );
    }
}


谢谢,非常感谢您的帮助。

最佳答案

实际上,答案很简单。看起来,除非使用了draw,否则PApplet不会调整大小。就像转弯一样简单

PApplet pa = new PApplet();


进入

PApplet pa = new PApplet()
{
public void draw(){};
};


或将其替换为适当扩展的PApplet。

我只是没有详细说明我的个人概念验证。

10-08 17:17