繁体   English   中英

JPanel上的Graphics2D并将JPanel添加到JFrame

[英]Graphics2D on JPanel and adding JPanel to JFrame

我试图在JPanel上绘制并将其添加到我的createAndShowGui方法中的JFrame中。 我尝试了一些不同的操作:在createAndShowGui方法中创建JPanel,将图形添加到JFrame中,等等。常见的一件事是,我看不到任何图形!

注意:我能够使图形显示在JTabbedPane中,但不能显示在JPanel上,这是我实际上希望它们显示在上面的内容,以使代码更加面向对象。

编辑:这是工作概念自包含的示例:

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.geom.Ellipse2D;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

public class DrawPanelMain extends JPanel {

    /*
    * Variables used to set the value of preferred height and width
    */
    public static final double version = 0.0;
    JPanel switchPanel = new JPanel();
    JPanel testPanel = new JPanel();
    JPanel btnPanel = new JPanel();
    DrawEllipses drawEllipses = new DrawEllipses(POINT_LIST);

    public static void main(String[] args) {

        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                initializePointList();
                createAndShowGui();
            }
        });
    }

    public static java.util.List<Point> POINT_LIST = new ArrayList<>();

    /*
    * This loop will initialize POINT_LIST with the set of points for drawing the ellipses.
    * The for each loop initializes points for the top row and the second for loop draws the
    * right triangle.
    */
    public static void initializePointList() {

        int ellipsePointsYCoordinate[] = {140, 200, 260, 320, 380, 440, 500, 560, 620};
        int ellipsePointsXCoordinate[] = {140, 200, 260, 320, 380, 440, 500, 560, 620, 680};
        int xx = 80;

        for (int aXt : ellipsePointsXCoordinate) {
            POINT_LIST.add(new Point(aXt, xx));
        }

        for (int i = 0; i < ellipsePointsYCoordinate.length; i++) {
            for (int j = i; j < ellipsePointsYCoordinate.length; j++) {
                POINT_LIST.add(new Point(ellipsePointsXCoordinate[i], ellipsePointsYCoordinate[j]));
            }
        }
    }

    public DrawPanelMain() {

        testPanel.setBackground(Color.RED);
        switchPanel.add(drawEllipses);

        setLayout(new BorderLayout());
        add(switchPanel, BorderLayout.CENTER);
        add(testPanel, BorderLayout.EAST);
        add(btnPanel, BorderLayout.SOUTH);
        getPreferredSize();

        btnPanel.add(new JButton(new AddSwitchAction("Add Switch Panel")));
    }

    public static void createAndShowGui() {

        JFrame frame = new JFrame("RF Connection Panel " + version);

        frame.setLayout(new BorderLayout());
        frame.add(new DrawPanelMain());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationByPlatform(false);
        //frame.setLocationRelativeTo(null);
        frame.pack();
        frame.setVisible(true);
    }

    /*
    * AddSwitchAction will add a new pane to the tabbedPane when the add switch button is clicked
    */
    private class AddSwitchAction extends AbstractAction {
        public AddSwitchAction(String name) {
            super(name);
            int mnemonic = (int) name.charAt(0);
            putValue(MNEMONIC_KEY, mnemonic);
        }

        @Override
        public void actionPerformed(ActionEvent e) {
            int index = 0;
            DrawEllipses tabComponent = new DrawEllipses(POINT_LIST);
            switchPanel.add(tabComponent, index++);

        }
    }

}

@SuppressWarnings("serial")
class DrawEllipses extends JPanel {
    private final int PREF_W = 750; //Window width
    private final int PREF_H = 750; //Window height
    private static final int OVAL_WIDTH = 30;
    private static final Color INACTIVE_COLOR = Color.RED;
    private static final Color ACTIVE_COLOR = Color.green;
    private java.util.List<Point> points;
    private java.util.List<Ellipse2D> ellipses = new ArrayList<>();
    private Map<Ellipse2D, Color> ellipseColorMap = new HashMap<>();

    /*
     * This method is used to populate "ellipses" with the initialized ellipse2D dimensions
     */
    public DrawEllipses(java.util.List<Point> points) {
        this.points = points;
        for (Point p : points) {
            int x = p.x - OVAL_WIDTH / 2;
            int y = p.y - OVAL_WIDTH / 2;
            int w = OVAL_WIDTH;
            int h = OVAL_WIDTH;
            Ellipse2D ellipse = new Ellipse2D.Double(x, y, w, h);
            ellipses.add(ellipse);
            ellipseColorMap.put(ellipse, INACTIVE_COLOR);
        }

        MyMouseAdapter mListener = new MyMouseAdapter();
        addMouseListener(mListener);
        addMouseMotionListener(mListener);
    }

    /*
     * paintComponent is used to paint the ellipses
     */
    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        Graphics2D g2 = (Graphics2D) g;
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                RenderingHints.VALUE_ANTIALIAS_ON);
        for (Ellipse2D ellipse : ellipses) {
            g2.setColor(ellipseColorMap.get(ellipse));
            g2.fill(ellipse);
            g2.setColor(Color.BLACK);
            g2.setStroke(new BasicStroke(2));
            g2.draw(ellipse);
        }

        /*
         * Set the font characteristics, color, and draw the row labels.
         */
        g.setFont(new Font("TimesRoman", Font.BOLD, 18));
        g.setColor(Color.BLACK);

        //Along the top row
        g.drawString("External Port", 10, 50);
        g.drawString("1", 135, 50);
        g.drawString("2", 195, 50);
        g.drawString("3", 255, 50);
        g.drawString("4", 315, 50);
        g.drawString("5", 375, 50);
        g.drawString("6", 435, 50);
        g.drawString("7", 495, 50);
        g.drawString("8", 555, 50);
        g.drawString("9", 615, 50);
        g.drawString("10", 672, 50);

        //Along the Y-axis
        g.drawString("Radio 2", 40, 145);
        g.drawString("3", 90, 205);
        g.drawString("4", 90, 265);
        g.drawString("5", 90, 325);
        g.drawString("6", 90, 385);
        g.drawString("7", 90, 445);
        g.drawString("8", 90, 505);
        g.drawString("9", 90, 565);
        g.drawString("10", 90, 625);

        //Along the X-Axis
        g.drawString("1", 135, 670);
        g.drawString("2", 195, 670);
        g.drawString("3", 255, 670);
        g.drawString("4", 315, 670);
        g.drawString("5", 375, 670);
        g.drawString("6", 435, 670);
        g.drawString("7", 495, 670);
        g.drawString("8", 555, 670);
        g.drawString("9", 615, 670);

        //Draws a 3DRect around the top row of ellipse2D objects
        g2.setColor(Color.lightGray);
        g2.draw3DRect(120, 60, 580, 40, true);
        g2.draw3DRect(121, 61, 578, 38, true);
        g2.draw3DRect(122, 62, 576, 36, true);

    }

    /*
     * MouseAdapter is extended for mousePressed Event that detects if the x, y coordinates
     * of a drawn ellipse are clicked.  If the color is INACTIVE it is changed to ACTIVE and
     * vice versa.
     */
    private class MyMouseAdapter extends MouseAdapter {
        @Override
        /*
         * When mousePressed event occurs, the color is toggled between ACTIVE and INACTIVE
         */
        public void mousePressed(MouseEvent e) {
            Color c;
            for (Ellipse2D ellipse : ellipses) {
                if (ellipse.contains(e.getPoint())) {
                    c = (ellipseColorMap.get(ellipse) == INACTIVE_COLOR) ? ACTIVE_COLOR : INACTIVE_COLOR;
                    ellipseColorMap.put(ellipse, c);
                }
            }
            repaint();
        }
    }

    /*
* This method will set the dimensions of the JFrame equal to the preferred H x W
*/
    @Override
    public Dimension getPreferredSize() {
        if (isPreferredSizeSet()) {
            return super.getPreferredSize();
        }
        return new Dimension(PREF_W, PREF_H);
    }
}

您正在使用过时的方法add(String,Component)将DrawEllipses实例添加到switchPanel; 您应该使用类似add(component, index) 另外,您不要将switchPanel添加到任何内容(在DrawPanelMain ctor中已注释)。

switchPanel.add(title, tabComponent);

默认情况下,JPanel使用FlowLayout,它遵循组件的首选大小。 组件的首选大小为(0,0),因此无需绘制任何内容。 另外,您使用的“ title”字符串不正确(已经提到过时了)。 该字符串代表布局管理器的约束。 您不能只是组成一个String值。 无论如何,FlowLayout不接受任何约束,因此您应该使用:

switchPanel.add(tabComponent);

我正在尝试使用JPanel

在进行自定义绘制时,您需要覆盖面板的getPreferredSize() ,以便布局管理器可以使用该信息。 如果您不重写此方法,则大小为(0,0),因此无需绘制任何内容。

编辑:

首先是一些一般性评论:

  1. 不要硬编码面板的尺寸。 您的硬编码尺寸(1200 x 750)对于我的显示器而言太大。 如果要全屏显示,请使用frame.setExtendedState(JFrame.MAXIMIZED_BOTH);

  2. 发布您实际测试的代码。 如前所述,您发布的代码甚至都没有在框架中添加“ switchPanel”。

  3. 您尚未更新代码以显示如何重写getPreferredSize()方法。

最后,我在您的代码中看到您将面板动态添加到可见的GUI。 在这种情况下,一般代码应为:

panel.add(....);
panel.revalidate(); // to invoke the layout manager otherwise size is still (0, 0)
panel.repaint();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM