0

GridLayout を使用してフレームを表示しようとしていますが、パネルの 1 つが表示されません。

私が問題を抱えている JPanel (gridPanel) には 50 x 50 の GridLayout があり、そのグリッドの各セルには Square オブジェクトが追加されているはずです。次に、そのパネルがフレームに追加されるはずですが、表示されません。

import java.awt.*;
import javax.swing.*;

public class Gui extends JFrame{

    JPanel buttonPanel, populationPanel, velocityPanel, gridPanel;
    JButton setupButton, stepButton, goButton;
    JLabel populationLabel, velocityLabel;
    JSlider populationSlider, velocitySlider;
    Square [] [] square;

    public Gui() {

        setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();

        //Set up JButtons
        buttonPanel = new JPanel();
        setupButton = new JButton("Setup");
        stepButton = new JButton("Step");
        goButton = new JButton("Go");

        buttonPanel.add(setupButton);
        buttonPanel.add(stepButton);
        buttonPanel.add(goButton);

        c.fill = GridBagConstraints.HORIZONTAL;
        c.gridx = 0;
        c.gridy = 1;
        c.gridwidth = 2;   //2 columns wide
        add(buttonPanel, c);


        //Set up populationPanel    
        populationPanel = new JPanel();
        populationLabel = new JLabel("Population");
        populationSlider = new JSlider(JSlider.HORIZONTAL,0, 200, 1);

        populationPanel.add(populationLabel);
        populationPanel.add(populationSlider);

        c.fill = GridBagConstraints.LAST_LINE_END;
        c.gridx = 0;
        c.gridy = 2;
        c.gridwidth = 2;   //2 columns wide
        add(populationPanel, c);        


        //Set up velocityPanel
        velocityPanel = new JPanel();
        velocityLabel = new JLabel("    Velocity");
        velocitySlider = new JSlider(JSlider.HORIZONTAL,0, 200, 1);

        velocityPanel.add(velocityLabel);
        velocityPanel.add(velocitySlider);

        c.fill = GridBagConstraints.LAST_LINE_END;
        c.gridx = 0;
        c.gridy = 3;
        c.gridwidth = 2;   //2 columns wide
        add(velocityPanel, c);  


        //Set up gridPanel
        JPanel gridPanel = new JPanel(new GridLayout(50, 50));
        square = new Square[50][50];

        for(int i = 0; i < 50; i++){
            for(int j = 0; j < 50; j++){
                    square[i][j] = new Square();
                    gridPanel.add(square[i][j]);
            }
        }

        c.fill = GridBagConstraints.HORIZONTAL;
        c.gridx = 0;
        c.gridy = 0;
        c.gridwidth = 2;   //2 columns wide
        add(gridPanel, c);  
    }

    /**
     * Create the GUI and show it.  For thread safety,
     * this method should be invoked from the
     * event-dispatching thread.
     */
    private static void createAndShowGUI() {
        //Create and set up the window.
        Gui frame = new Gui();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Display the window.
        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        //Schedule a job for the event-dispatching thread:
        //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
            }
        });
    }
}

スクエアクラス

import java.awt.*;
import javax.swing.*;

public class Square extends JComponent{

    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.BLACK);
        g.fillRect(10, 10, 10, 10);
    }

}
4

1 に答える 1

3

何も表示されない理由は 2 つあります (ただし、2 番目が意図的なものかどうかは完全にはわかりませんが、その部分を推測しています :)

  • JComponent はベアボーン コンテナであり、ui デリゲートも固有のサイズもありません。最小/最大/優先に妥当なものを返すのはコード次第です。
  • 描画矩形は内部の「どこか」にハードコーディングされており、実際のコンポーネント領域の内部にある場合もあれば、内部にある場合もあります

以下が表示されています(境界を見るための境界線)

public static class Square extends JComponent {

    public Square() {
        setBorder(BorderFactory.createLineBorder(Color.RED));
    }

    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.BLACK);
        g.fillRect(0, 0, getWidth(), getHeight());
    }

    @Override
    public Dimension getPreferredSize() {
        return new Dimension(10, 10);
    }
    @Override
    public Dimension getMaximumSize() {
        return getPreferredSize();
    }
    @Override
    public Dimension getMinimumSize() {
        return getPreferredSize();
    }

}
于 2011-10-03T12:22:52.417 に答える