簡體   English   中英

Swing的相對和絕對定位問題

[英]Relative and absolute positioning issues with Swing

我正在創建同時需要相對和絕對定位的GUI。 我需要絕對定位(我相信),因為顯示的元素會動態變化,並且我不希望GUI一直調整大小。

注意:我正在嘗試創建一個4行的網格,每行5個復選框。

這是代碼。

    final int MAXNUMBEROFLABELSPERROW = 5;
    final int defaultCheckBoxWidth = 60;
    final int defaultCheckBoxHeigth = 60;

    JLabel bigBlindRemoveLabel = new JLabel("Remove big blind numbers", SwingConstants.CENTER);

    JPanel buttonsPanel = new JPanel();
    buttonsPanel.setLayout(new BorderLayout());

    JPanel buttonsSubPanel = new JPanel();
    buttonsSubPanel.setLayout(new BorderLayout());

    removeButton = new JButton("Remove");
    removeButton.addActionListener(this);

    removeAllButton = new JButton("Remove All");
    removeAllButton.addActionListener(this);

    buttonsSubPanel.add(removeButton, BorderLayout.NORTH);
    buttonsSubPanel.add(removeAllButton, BorderLayout.SOUTH);

    buttonsPanel.add(buttonsSubPanel, BorderLayout.CENTER);
    buttonsPanel.setBorder(new EmptyBorder(50, 20, 50, 20));

    JPanel checkboxesSubPanel = new JPanel();
    checkboxesSubPanel.setLayout(null);

    // Create 20 check boxes and fill the list field with big blind numbers
    for (int index = 0; index <= TOTALNUMBEROFCHECKBOXES - 1; index++)
    {
        numberCheckBoxes[index] = new JCheckBox();
        numberCheckBoxes[index].setSize(defaultCheckBoxWidth, defaultCheckBoxHeigth);
        numberCheckBoxes[index].setSelected(false);
        numberCheckBoxes[index].setLocation(
                defaultCheckBoxWidth * (index % MAXNUMBEROFLABELSPERROW) + 10,
                (index / MAXNUMBEROFLABELSPERROW) * defaultCheckBoxHeigth + defaultCheckBoxHeigth);
        numberCheckBoxes[index].setVisible(false);

        checkboxesSubPanel.add(numberCheckBoxes[index]);
    }

    checkboxesSubPanel.setSize(
            numberCheckBoxes[TOTALNUMBEROFCHECKBOXES - 1].getX()
                    + numberCheckBoxes[TOTALNUMBEROFCHECKBOXES - 1].getWidth() + 20,
            numberCheckBoxes[TOTALNUMBEROFCHECKBOXES - 1].getY()
                    + numberCheckBoxes[TOTALNUMBEROFCHECKBOXES - 1].getHeight() + 20);

    resultsPanel.add(bigBlindRemoveLabel, BorderLayout.NORTH);
    resultsPanel.add(checkboxesSubPanel, BorderLayout.WEST);
    resultsPanel.add(buttonsPanel, BorderLayout.EAST);

    JFrame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(resultsPanel);
    frame.setVisible(true);
    frame.pack();

我要尋找的東西(絕對定位的東西都做了,我正在努力改善)

在此處輸入圖片說明

我在上面發布的代碼中看到了什么

在此處輸入圖片說明

我的問題是顯示了該部分,但是如果我更改復選框文本(我想避免這樣做),它的大小會動態變化。 另外,我不確定為什么所有復選框都顯示在一行上(我之前使用相同的代碼進行絕對定位是沒有問題的)。 提前致謝!

我需要絕對定位(我相信),因為顯示的元素會動態變化,並且我不希望GUI一直調整大小。

我想你看不到森林的樹木。 請記住,您不只是使用一個布局管理器,還可以使用復合容器/布局來實現一些非常復雜的布局。

您還可以使用布局管理器的功能EmptyBorder ,對於按鈕,可以使用邊距來調整控件的大小和間距。

布局

import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Collections;
import java.util.List;
import javax.swing.DefaultListModel;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.Scrollable;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.border.MatteBorder;

public class TestLayout {

    public static void main(String[] args) {
        new TestLayout();
    }

    public TestLayout() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(4, 0, 4, 0);
            gbc.gridx = 0;
            gbc.gridy = 0;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            gbc.anchor = GridBagConstraints.WEST;
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.weightx = 1;

            add(new JLabel("Big binds of first level: 25/50", JLabel.CENTER), gbc);

            gbc.gridx = 0;
            gbc.gridy++;
            gbc.gridwidth = 1;
            gbc.anchor = GridBagConstraints.CENTER;
            gbc.weightx = 1;
            gbc.weighty = 1;
            gbc.fill = GridBagConstraints.BOTH;
            SelectionPane selectionPane = new SelectionPane();
            selectionPane.setBorder(new MatteBorder(1, 0, 0, 0, Color.BLACK));
            add(selectionPane, gbc);

            gbc.gridx++;
            FilterPane filterPane = new FilterPane();
            filterPane.setBorder(new MatteBorder(1, 1, 0, 0, Color.BLACK));
            add(filterPane, gbc);

            selectionPane.addActionListener(new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    filterPane.setOptions(selectionPane.getSelectedValues());
                }
            });
        }

    }

    protected class SelectionPane extends JPanel {

        private JList<Integer> listValues;
        private DefaultListModel<Integer> listModel;

        public SelectionPane() {
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(4, 4, 4, 4);
            gbc.gridx = 0;
            gbc.gridy = 0;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            gbc.anchor = GridBagConstraints.WEST;
            gbc.weightx = 1;
            add(new JLabel("Add bind numbers to queries"), gbc);

            gbc.weighty = 1;
            gbc.gridx = 0;
            gbc.gridy++;
            gbc.gridwidth = 1;
            gbc.anchor = GridBagConstraints.CENTER;
            gbc.fill = GridBagConstraints.BOTH;
            listModel = new DefaultListModel();
            for (int index = 0; index < 100; index++) {
                listModel.addElement(index);
            }
            listValues = new JList(listModel);
            add(new JScrollPane(listValues), gbc);

            gbc.weighty = 0;
            gbc.weightx = 0;
            gbc.anchor = GridBagConstraints.NORTH;
            gbc.gridx++;
            gbc.fill = GridBagConstraints.NONE;
            gbc.ipadx = 10;
            gbc.ipady = 10;
            JButton add = new JButton("Add");
            add.addActionListener(new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    fireActionPerformed();
                }
            });
            add(add, gbc);
        }

        public List<Integer> getSelectedValues() {

            return Collections.unmodifiableList(listValues.getSelectedValuesList());

        }

        public void addActionListener(ActionListener listener) {
            listenerList.add(ActionListener.class, listener);
        }

        public void removeActionListener(ActionListener listener) {
            listenerList.remove(ActionListener.class, listener);
        }

        protected void fireActionPerformed() {
            ActionListener[] listeners = listenerList.getListeners(ActionListener.class);
            if (listeners.length > 0) {
                ActionEvent evt = new ActionEvent(this, ActionEvent.ACTION_PERFORMED, "Selection.add");
                for (ActionListener listener : listeners) {
                    listener.actionPerformed(evt);
                }
            }
        }

    }

    protected class FilterPane extends JPanel {

        private OptionsPane optionsPane;

        public FilterPane() {
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(4, 4, 4, 4);
            gbc.gridx = 0;
            gbc.gridy = 0;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            gbc.anchor = GridBagConstraints.WEST;
            gbc.weightx = 1;
            add(new JLabel("Remove big blind numbers"), gbc);

            gbc.weighty = 1;
            gbc.gridx = 0;
            gbc.gridy++;
            gbc.gridwidth = 1;
            gbc.gridheight = GridBagConstraints.REMAINDER;
            gbc.anchor = GridBagConstraints.CENTER;
            gbc.fill = GridBagConstraints.BOTH;
            optionsPane = new OptionsPane();
            add(new JScrollPane(optionsPane), gbc);

            gbc.weighty = 0;
            gbc.gridheight = 1;
            gbc.weightx = 0;
            gbc.anchor = GridBagConstraints.NORTH;
            gbc.gridx++;
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.ipadx = 10;
            gbc.ipady = 10;
            JButton remove = new JButton("Remove");
            add(remove, gbc);

            gbc.gridy++;
            JButton removeAll = new JButton("Remove All");
            add(removeAll, gbc);
        }

        public void setOptions(List<Integer> options) {
            optionsPane.setOptions(options);
        }

        protected class OptionsPane extends JPanel implements Scrollable {

            public OptionsPane() {
                setLayout(new GridBagLayout());
            }

            public void setOptions(List<Integer> options) {
                removeAll();
                GridBagConstraints gbc = new GridBagConstraints();
                gbc.gridx = 0;
                gbc.gridy = 0;
                gbc.weightx = 1;
                gbc.anchor = GridBagConstraints.WEST;
                for (Integer option : options) {
                    JCheckBox cb = new JCheckBox(option.toString());
                    add(cb, gbc);
                    gbc.gridx++;
                    if (gbc.gridx % 5 == 0) {
                        gbc.gridx = 0;
                        gbc.gridy++;
                    }
                }

                gbc.gridx = 0;
                gbc.gridy++;
                gbc.weighty = 1;
                add(new JLabel(), gbc);

                revalidate();
                repaint();
            }

            @Override
            public Dimension getPreferredScrollableViewportSize() {
                return new Dimension(210, 100);
            }

            @Override
            public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
                return 64;
            }

            @Override
            public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) {
                return 64;
            }

            @Override
            public boolean getScrollableTracksViewportWidth() {
                return getPreferredSize().width
                        <= getParent().getSize().width;
            }

            @Override
            public boolean getScrollableTracksViewportHeight() {
                return getPreferredSize().height
                        <= getParent().getSize().height;
            }

        }

    }

}

由於提供了有用的反饋,因此能夠通過使用網格布局並使用numberCheckBoxes [index] .setMinimumSize(new Dimension(2,0))設置復選框的最小大小來找到我的答案。

再次感謝您的幫助!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM