Swing/RightAlignComponentBorder のバックアップ(No.7)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/RightAlignComponentBorder へ行く。
- category: swing folder: RightAlignComponentBorder title: Borderの右下にJComponentを配置 tags: [Border, SpringLayout, JLayeredPane, JComponent] author: aterai pubdate: 2011-11-21T15:47:08+09:00 description: SpringLayoutを設定したJLayeredPaneを使って、Borderの右下にJComponentを配置します。 image:
概要
SpringLayout
を設定したJLayeredPane
を使って、Border
の右下にJComponent
を配置します。
Screenshot
Advertisement
サンプルコード
public JComponent makePanel(JComponent m, JComponent c) {
int ir = 20; //inset.right
int ch = c.getPreferredSize().height / 2;
Border ib = BorderFactory.createEmptyBorder(0, 0, ch, 0);
Border eb = BorderFactory.createEtchedBorder();
Border bo = BorderFactory.createCompoundBorder(eb, ib);
m.setBorder(BorderFactory.createCompoundBorder(ib, bo));
SpringLayout layout = new SpringLayout();
JLayeredPane p = new JLayeredPane();
p.setLayout(layout);
Spring x = layout.getConstraint(SpringLayout.WIDTH, p);
Spring y = layout.getConstraint(SpringLayout.HEIGHT, p);
Spring g = Spring.minus(Spring.constant(ir));
SpringLayout.Constraints constraints = layout.getConstraints(c);
constraints.setConstraint(SpringLayout.EAST, Spring.sum(x, g));
constraints.setConstraint(SpringLayout.SOUTH, y);
p.setLayer(c, JLayeredPane.DEFAULT_LAYER+1);
p.add(c);
constraints = layout.getConstraints(m);
constraints.setConstraint(SpringLayout.WEST, Spring.constant(0));
constraints.setConstraint(SpringLayout.NORTH, Spring.constant(0));
constraints.setConstraint(SpringLayout.EAST, x);
constraints.setConstraint(SpringLayout.SOUTH, y);
p.setLayer(m, JLayeredPane.DEFAULT_LAYER);
p.add(m);
return p;
}
View in GitHub: Java, Kotlin解説
- 中央に表示するコンポーネントに、右下に配置するコンポーネントと同じ高さの
EtchedBorder
を設定 SpringLayout
を設定したJLayeredPane
のDEFAULT_LAYER
に中央に表示するコンポーネント、DEFAULT_LAYER+1
に右下に配置するコンポーネントを追加SpringLayout.Constraints
を設定して、中央に表示するコンポーネントは親のJLayeredPane
のサイズとおなじになるように、右下に配置するコンポーネントは右下になるようにレイアウト- 右下に配置するコンポーネントと親の
JLayeredPane
の右端同士は、固定で20px
- 右下に配置するコンポーネントと親の