JLabel을 가운데 놓을 일련의 열이있는 JDialog가 있습니다. 나는 그것을하는 방법에 관해 무엇인가 발견 할 수 없을 것 같다. 셀 안에 배치 할 수는 있지만 스팬 된 열 집합에는 배치 할 수 없습니다. 이 이미지의 레이블 "Target"과 "Change"는 중앙에 위치해야합니다. GridBagLayout을 사용하여 스팬 된 열 중앙에 맞추기
다음은이 JDialog를 생성하는 SSCCE입니다.
package stokerMonitor;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.Dialog.ModalityType;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JSeparator;
import javax.swing.SwingConstants;
public class test {
static JDialog timeLineDialog;
static int row=0;
public static void main(String[] args) {
timeLineDialog = new JDialog();
timeLineDialog.setLayout(new GridBagLayout());
timeLineDialog.setModalityType(ModalityType.MODELESS);
timeLineDialog.setTitle("Time Line Settings");
timeLineDialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
JLabel timeLabel = new JLabel("Time");
JLabel actionLabel = new JLabel("Action");
JLabel probeTempLabel=null;
JLabel pitTempLabel=null;
JLabel targetHeader=new JLabel("Target");
Font boldFont=targetHeader.getFont().deriveFont(Font.BOLD, (float) 14);
targetHeader.setFont(boldFont);
JLabel changeHeader=new JLabel("Change");
changeHeader.setFont(boldFont);
if (Configuration.getInstance().celsius) {
probeTempLabel = new JLabel("Temp (\u00B0 C)");
pitTempLabel = new JLabel("Temp (\u00B0 C)");
}
else {
probeTempLabel = new JLabel("Temp (\u00B0 F)");
pitTempLabel = new JLabel("Temp (\u00B0 F)");
}
JLabel meatLabel=new JLabel("Meat");
JLabel cookTimeLabel=new JLabel("Est. Time");
JLabel weightLabel=new JLabel("Weight");
JLabel probeLabel=new JLabel("Probe");
JLabel pitLabel=new JLabel("Pit");
setNewSeparator(1,row);
GridBagConstraints gbc=makeGbc(2, row);
gbc.gridwidth=7;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.anchor=GridBagConstraints.CENTER;
timeLineDialog.add(targetHeader,gbc);
setNewSeparator(9,row);
timeLineDialog.add(changeHeader,makeGbc(10, row));
setNewSeparator(12,row++);
setNewSeparator(1,row);
timeLineDialog.add(timeLabel, makeGbc(2, row));
timeLineDialog.add(probeTempLabel,makeGbc(3, row));
timeLineDialog.add(meatLabel,makeGbc(4, row));
timeLineDialog.add(weightLabel,makeGbc(5, row));
timeLineDialog.add(cookTimeLabel,makeGbc(6, row));
timeLineDialog.add(probeLabel,makeGbc(7, row));
timeLineDialog.add(actionLabel, makeGbc(8, row));
setNewSeparator(9,row);
timeLineDialog.add(pitLabel,makeGbc(10, row));
timeLineDialog.add(pitTempLabel, makeGbc(11, row++));
setNewSeparator(12,row);
timeLineDialog.pack();
timeLineDialog.setLocationRelativeTo(GUI.getInstance().getFrame());
timeLineDialog.setVisible(true);
}
static void setNewSeparator(int column_,int row_) {
JSeparator sep=new JSeparator(SwingConstants.VERTICAL);
sep.setPreferredSize(new Dimension(1,1));
GridBagConstraints gbc=makeGbc(column_, row_);
gbc.fill=GridBagConstraints.VERTICAL;
gbc.weighty=1.;
timeLineDialog.add(sep,gbc);
}
static GridBagConstraints makeGbc(int x, int y) {
GridBagConstraints gbc = new GridBagConstraints();
Insets WEST_INSETS=new Insets(5,0,5,5);
Insets EAST_INSETS=new Insets(5,5,5,0);
gbc.gridx = x;
gbc.gridy = y;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.anchor = (x == 0) ? GridBagConstraints.WEST : GridBagConstraints.EAST;
gbc.fill = (x == 0) ? GridBagConstraints.BOTH
: GridBagConstraints.HORIZONTAL;
gbc.insets = (x == 0) ? WEST_INSETS : EAST_INSETS;
gbc.weightx = (x == 0) ? 0.1 : 1.0;
gbc.weighty = 1.0;
return gbc;
}
}
내가이 헤더를 센터링하기 위해해야 할 것을 설명 할 수 있습니까? TIA.
여러 열을 걸쳐 1보다 [gridwidth (http://docs.oracle.com/javase/8/docs/api/java/awt/GridBagConstraints.html#gridwidth)가 큰 사용한다. – VGR
@VGR 그는 적어도'targetHeader'에 대해서'gridwidth = 7'을 이미 가지고 있습니다. (나는 다른 하나를 보지 않았다) – dsh