gpt4 book ai didi

java - Swing - 更改 LayoutManager : two components per line

转载 作者:行者123 更新时间:2023-12-01 08:52:13 25 4
gpt4 key购买 nike

我正在创建一个 Java 应用程序,目前我使用这个布局管理器:

import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Insets;
import java.awt.LayoutManager;

/**
* @author Pasban
*/

public class VerticalLayout implements LayoutManager {

public final static int CENTER = 0;
public final static int RIGHT = 1;
public final static int LEFT = 2;
public final static int BOTH = 3;
public final static int TOP = 1;
public final static int BOTTOM = 2;
private int vgap;
private int alignment;
private int anchor;

public VerticalLayout() {
this(5, CENTER, TOP);
}

public VerticalLayout(int vgap) {
this(vgap, CENTER, TOP);
}

public VerticalLayout(int vgap, int alignment) {
this(vgap, alignment, TOP);
}

public VerticalLayout(int vgap, int alignment, int anchor) {
this.vgap = vgap;
this.alignment = alignment;
this.anchor = anchor;
}

private Dimension layoutSize(Container parent, boolean minimum) {
Dimension dim = new Dimension(0, 0);
Dimension d;
synchronized (parent.getTreeLock()) {
int n = parent.getComponentCount();
for (int i = 0; i < n; i++) {
Component c = parent.getComponent(i);
if (c.isVisible()) {
d = minimum ? c.getMinimumSize() : c.getPreferredSize();
dim.width = Math.max(dim.width, d.width);
dim.height += d.height;
if (i > 0) {
dim.height += vgap;
}
}
}
}
Insets insets = parent.getInsets();
dim.width += insets.left + insets.right;
dim.height += insets.top + insets.bottom + vgap + vgap;
return dim;
}

public void layoutContainer(Container parent) {
Insets insets = parent.getInsets();
synchronized (parent.getTreeLock()) {
int n = parent.getComponentCount();
Dimension pd = parent.getSize();
int y = 0;
for (int i = 0; i < n; i++) {
Component c = parent.getComponent(i);
Dimension d = c.getPreferredSize();
if (c.isVisible()) {
y += d.height + vgap;
}
}
y -= vgap;
if (anchor == TOP) {
y = insets.top;
} else if (anchor == CENTER) {
y = (pd.height - y) / 2;
} else {
y = pd.height - y - insets.bottom;
}
for (int i = 0; i < n; i++) {
Component c = parent.getComponent(i);
Dimension d = c.getPreferredSize();
if (!c.isVisible()) {
continue;
}
int x = 1;
int wid = pd.width - 3;
c.setBounds(x, y, wid, d.height);
y += d.height + vgap;
}
}
}

public Dimension minimumLayoutSize(Container parent) {
return layoutSize(parent, false);
}

public Dimension preferredLayoutSize(Container parent) {
return layoutSize(parent, false);
}

public void addLayoutComponent(String name, Component comp) {
}

public void removeLayoutComponent(Component comp) {
}

public String toString() {
return getClass().getName() + "[vgap=" + vgap + " align=" + alignment + " anchor=" + anchor + "]";
}
}

使用示例(组件垂直对齐):

/image/uGtbz.png

如您所见,每个组件都在一行上。但是,我希望一些组件在一条线上有两个。

例如,JButtons 将位于一行,就像现在一样。 JTextAreas 也是如此。

但是,我希望 JLabels 和 JTextFields 位于同一行。 JLabels 和 JComboBox 也一样,位于同一行。

我真的不知道该怎么做。有人能给我解释一下吗? :D

最佳答案

首先,真的很难理解为什么要创建自己的布局?看看GridBagLayout

https://docs.oracle.com/javase/tutorial/uiswing/layout/gridbag.html

使用 GridBagLayout 可以轻松满足您所解释的用例。

关于java - Swing - 更改 LayoutManager : two components per line,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42316347/

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