JInternalFrameのタイトルを右ダブルクリックしても最大化しないよう設定する
Total: 1243
, Today: 6
, Yesterday: 2
Posted by aterai at
Last-modified:
概要
JInternalFrame
のタイトルバーをマウスの右ボタンでダブルクリックしても最大化しないよう設定します。
Screenshot
Advertisement
サンプルコード
class DesktopLayerUI extends LayerUI<JDesktopPane> {
@Override public void installUI(JComponent c) {
super.installUI(c);
if (c instanceof JLayer) {
((JLayer<?>) c).setLayerEventMask(AWTEvent.MOUSE_EVENT_MASK | AWTEvent.MOUSE_MOTION_EVENT_MASK);
}
}
@Override public void uninstallUI(JComponent c) {
if (c instanceof JLayer) {
((JLayer<?>) c).setLayerEventMask(0);
}
super.uninstallUI(c);
}
@Override protected void processMouseEvent(MouseEvent e, JLayer<? extends JDesktopPane> l) {
if (SwingUtilities.isRightMouseButton(e) && e.getClickCount() >= 2) {
Component c = e.getComponent();
Container p = SwingUtilities.getAncestorOfClass(BasicInternalFrameTitlePane.class, c);
int id = e.getID();
boolean b1 = c instanceof BasicInternalFrameTitlePane || p instanceof BasicInternalFrameTitlePane;
boolean b2 = c instanceof JInternalFrame.JDesktopIcon && id == MouseEvent.MOUSE_PRESSED;
if ((b1 && id == MouseEvent.MOUSE_CLICKED) || b2) {
e.consume();
}
}
}
@Override protected void processMouseMotionEvent(MouseEvent e, JLayer<? extends JDesktopPane> l) {
boolean b = e.getComponent() instanceof JInternalFrame;
boolean isRight = SwingUtilities.isRightMouseButton(e);
if (b && isRight && e.getID() == MouseEvent.MOUSE_DRAGGED) {
e.consume();
}
}
}
View in GitHub: Java, Kotlin解説
Default
Windows
環境でWindowsLookAndFeel
を使用する場合でもJInternalFrame
のタイトルバーをマウスの右ボタンでダブルクリックするとそのJInternalFrame
が最大化してしまう
JPopupMenu
( (BasicInternalFrameUI) f.getUI()).getNorthPane()
でタイトルバーを取得し、JComponent#setComponentPopupMenu(popup)
でJPopupMenu
を設定するとマウスの右ボタンクリックでJPopupMenu
が開くので右ボタンのダブルクリックによる最大化は実行不可能になる- JInternalFrameにJPopupMenuを設定してタイトルを変更する
- タイトルバーから
JPopupMenu
を開き、Escキー入力や別コンポーネントをクリックしてポップアップ表示をキャンセルすると再度タイトルバーを左クリックするまでJInternalFrame
のリサイズが不可能になるバグ?が存在する
WindowsInternalFrameUI
WindowsLookAndFeel
でのみ動作を変更したい場合はWindowsInternalFrameUI#createBorderListener(...)
メソッドをオーバーライドしてMouseInputAdapter
を継承するBorderListener
がマウスの左ボタンにのみ反応するよう変更することで右ボタンのダブルクリックによる最大化や右ボタンでのJInternalFrame
のリサイズを無効にする方法がある- 右ボタンでのリサイズ自体が無効なので、上記の
JPopupMenu
のバグは発生しないJInternalFrame f = new JInternalFrame("WindowsInternalFrameUI", true, true, true, true) { @Override public void updateUI() { super.updateUI(); setUI(new WindowsInternalFrameUI(this) { @Override protected MouseInputAdapter createBorderListener(JInternalFrame w) { return new BorderListener() { @Override public void mouseClicked(MouseEvent e) { if (SwingUtilities.isLeftMouseButton(e)) { super.mouseClicked(e); } } @Override public void mousePressed(MouseEvent e) { if (SwingUtilities.isLeftMouseButton(e)) { super.mousePressed(e); } } }; } }); } };
JLayer
JDesktopPane
にJLayer
を被せてJInternalFrame
のタイトルバーがマウスの右ボタンでダブルクリックされた場合のマウスイベントを無視するJInternalFrame
のシステムアイコンがダブルクリックされるとJInternalFrame
は非表示になるが、このJLayer
では合わせてマウスの右ボタンでダブルクリックを無視するよう設定- さらにマウスの右ボタンでの
JInternalFrame
のリサイズも無効化している JInternalFrame.JDesktopIcon
(アイコン化したJInternalFrame
)を右ボタンでダブルクリック(復元)した場合も無効化BasicInternalFrameTitlePane
はMouseEvent.MOUSE_CLICKED
だが、JInternalFrame.JDesktopIcon
はMouseEvent.MOUSE_CLICKED
イベントでダブルクリックを検出する必要がある(なぜ異なる実装になっているのかの理由は不明)
参考リンク
- JInternalFrameにJPopupMenuを設定してタイトルを変更する
- JComboBoxのドロップダウンリストで右クリックを無効化
- JMenuとJMenuItemで右クリックによる選択を無効にする