gpt4 book ai didi

java - 将处理 3 添加到 Jpanel

转载 作者:搜寻专家 更新时间:2023-10-31 19:44:23 24 4
gpt4 key购买 nike

我正在尝试从 swing 应用程序窗口显示 Jpanel 内的处理 3 草图。 (我正在使用eclipse)请帮忙!

我需要基于 Swing 的 GUI 的复杂性和功能,还希望在我的应用程序中创建视觉内容的处理过程具有用户友好性。

我使用了 Kevin 非常有用的答案并创建了一个更具体的问题。谢谢凯文!

我希望处理草图成为从 MainGUI.java 调用并插入到 JPanel 中的子类。我遇到的问题是 eclipse 说 pt.initSurface() 不可见。

再次感谢您的帮助。

主界面.java

import processing.awt.PSurfaceAWT;
import processing.awt.PSurfaceAWT.SmoothCanvas;
import processing.core.PApplet;
import processing.core.PSurface;
import processing.opengl.*;
import processing.data.*;
import processing.event.*;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;

import patterns.ProcessingTest;

import java.awt.BorderLayout;
import javax.swing.JButton;

public class MainGUI {

private JFrame frame;

/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
MainGUI window = new MainGUI();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}

/**
* Create the application.
*/
public MainGUI() {
initialize();
}

/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);

JPanel panel = new JPanel();
panel.setBounds(52, 24, 110, 143);

//create your sketch
ProcessingTest pt = new ProcessingTest();

//get the PSurface from the sketch
PSurface ps = pt.initSurface();

//initialize the PSurface
ps.setSize(200, 200);

//get the SmoothCanvas that holds the PSurface
SmoothCanvas smoothCanvas = (SmoothCanvas)ps.getNative();

panel.setSize(200, 200);

//SmoothCanvas can be used as a Component
panel.add(smoothCanvas);
frame.getContentPane().add(panel);

//start your sketch
ps.startThread();

}
}

处理测试.java

package patterns;

import javax.swing.JFrame;

import processing.awt.PSurfaceAWT.SmoothCanvas;
import processing.core.PApplet;
import processing.core.PSurface;

public class ProcessingTest extends PApplet{

public void settings(){
size(200, 200);
}

public void draw(){
background(0);
ellipse(mouseX, mouseY, 20, 20);
}

}

最佳答案

在处理 2 中,PApplet 扩展了 Applet,因此您可以将它嵌入到 AWTSwing 组件,如JPanel

从处理 3 开始,PApplet 不再扩展 Applet,因此您不能再将其作为 组件 嵌入。

话虽如此,您有三个选择:

选项 1:您真的确定需要嵌入 Processing 草图吗?

想一想您需要嵌入 Processing 草图的确切原因。有办法解决吗?您可以使用 one of these GUI libraries 在 Processing 中编写 GUI 代码.

您还可以从 Processing 创建一个单独的 JFrame

选项 2:您是否只需要从 Java 启动 Processing sketch?

如果是这样,您只需调用 PApplet.main("YourSketchNameHere") 函数即可。这将告诉 Processing 启动您的草图,Processing 将处理窗口的创建,调用 setup(),并为您启动 draw() 循环。

这是一个可以从 eclipse 运行的小例子:

import processing.core.PApplet;

public class ProcessingTest extends PApplet{

public void settings(){
size(200, 200);
}

public void draw(){
background(0);
ellipse(mouseX, mouseY, 20, 20);
}

public static void main(String... args){
PApplet.main("ProcessingTest");
}
}

选项 3:您真的、真的、真的确定需要嵌入 PApplet 吗?

如果前两个选项不起作用,那么您仍然可以访问底层组件。 Processing 3引入了一个PSurface类,这个类包含组件。要嵌入您的草图,您必须获取其 PSurface,然后您必须从 PSurface 获取 native 组件。这不是很简单,但它是可行的:

import javax.swing.JFrame;

import processing.awt.PSurfaceAWT.SmoothCanvas;
import processing.core.PApplet;
import processing.core.PSurface;

public class ProcessingTest extends PApplet{

public void settings(){
size(200, 200);
}

public void draw(){
background(0);
ellipse(mouseX, mouseY, 20, 20);
}

public static void main(String... args){

//create your JFrame
JFrame frame = new JFrame("JFrame Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

//create your sketch
ProcessingTest pt = new ProcessingTest();

//get the PSurface from the sketch
PSurface ps = pt.initSurface();

//initialize the PSurface
ps.setSize(200, 200);

//get the SmoothCanvas that holds the PSurface
SmoothCanvas smoothCanvas = (SmoothCanvas)ps.getNative();

//SmoothCanvas can be used as a Component
frame.add(smoothCanvas);

//make your JFrame visible
frame.setSize(200, 200);
frame.setVisible(true);

//start your sketch
ps.startThread();
}
}

一旦拥有 native 组件,就可以像对待任何其他 Swing 组件一样对待它。

请注意,您必须提前知道 PSurface.getNative() 函数将返回什么类型的 native 组件。这取决于您使用的渲染器。默认渲染器使用 SmoothCanvas,但其他渲染器使用其他原生组件。

另请注意,您必须初始化并开始您的草图。

如果可能的话,您应该使用前两个选项之一,但如果您真的需要嵌入草图,则可以使用选项 3。

关于java - 将处理 3 添加到 Jpanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36565159/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com