Swing/AdjustPopupLocation のバックアップ(No.5)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/AdjustPopupLocation へ行く。
- 1 (2018-02-15 (木) 14:23:42)
- 2 (2018-04-26 (木) 15:00:17)
- 3 (2020-04-22 (水) 18:49:29)
- 4 (2021-05-31 (月) 15:28:12)
- 5 (2022-08-19 (金) 12:18:04)
- category: swing folder: AdjustPopupLocation title: JPopupMenuの表示を親コンポーネント領域内のみに制限する tags: [JPopupMenu] author: aterai pubdate: 2017-05-08T14:26:08+09:00 description: JPopupMenuを設定したコンポーネントの表示領域内に収まるように、JPopupMenuの表示位置を調整します。 image: https://drive.google.com/uc?id=1P6r7-2s31EBtrsPd4FGrzQidQKTrYhS7Wg
概要
JPopupMenu
を設定したコンポーネントの表示領域内に収まるように、JPopupMenu
の表示位置を調整します。
Screenshot
Advertisement
サンプルコード
JPopupMenu popup = new JPopupMenu() {
@Override public void show(Component c, int x, int y) {
if (check.isSelected()) {
Point p = new Point(x, y);
Rectangle r = c.getBounds();
Dimension d = getPreferredSize();
if (p.x + d.width > r.width) {
p.x -= d.width;
}
if (p.y + d.height > r.height) {
p.y -= d.height;
}
super.show(c, Math.max(p.x, 0), Math.max(p.y, 0));
} else {
super.show(c, x, y);
}
}
};
popup.add("aaa");
popup.add("bbbbbb");
popup.add("cc");
JLabel label = new JLabel("aaaaaaaaaaaa");
label.setOpaque(true);
label.setComponentPopupMenu(popup);
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JPopupMenu#show(...)
メソッドをオーバーライドし、JPopupMenu
の表示位置を調整することでコンポーネント(この場合JLabel
)の表示領域内にJPopupMenu
全体が収まるように設定しています。
- 親コンポーネントの右下で右クリックによる
JPopupMenu
の表示を行った場合、そのクリック位置にJPopupMenu
の右下隅が重なるように表示 JPopupMenu
のサイズが親コンポーネントの表示上のサイズより大きくなる場合は考慮していないJPopupMenu
の高さが親コンポーネントの高さより高い場合、クリックした位置とは無関係にJPopupMenu
の上辺が親コンポーネントの上辺と同じ位置になるよう表示