Swing/BlockingDialog の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/BlockingDialog へ行く。
- Swing/BlockingDialog の差分を削除
--- category: swing folder: BlockingDialog title: Modalで透明なJDialogを使って親のJFrameへの入力をブロックする tags: [JDialog, JFrame] author: aterai pubdate: 2015-10-26T04:45:10+09:00 description: Modalで透明なJDialogを表示することで、親のJFrame全体への入力操作をブロックします。 image: https://lh3.googleusercontent.com/-BlvRwXum2Vc/Vi0ubz6y1mI/AAAAAAAAOE4/XKHozK0runE/s800-Ic42/BlockingDialog.png --- * 概要 [#summary] `Modal`で透明な`JDialog`を表示することで、親の`JFrame`全体への入力操作をブロックします。 #download(https://lh3.googleusercontent.com/-BlvRwXum2Vc/Vi0ubz6y1mI/AAAAAAAAOE4/XKHozK0runE/s800-Ic42/BlockingDialog.png) * サンプルコード [#sourcecode] #code(link){{ Window w = SwingUtilities.getWindowAncestor(getRootPane()); JDialog dialog = new JDialog(w, Dialog.ModalityType.DOCUMENT_MODAL); // APPLICATION_MODAL); dialog.setUndecorated(true); dialog.setBounds(w.getBounds()); dialog.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); int color = check.isSelected() ? 0x22_FF_00_00 : 0x01_00_00_00; dialog.setBackground(new Color(color, true)); (new Task() { @Override public void done() { if (!isDisplayable()) { cancel(true); return; JButton button = new JButton("Stop 5sec"); button.addActionListener(e -> { Window w = SwingUtilities.getWindowAncestor(getRootPane()); JDialog dialog = new JDialog(w, Dialog.ModalityType.APPLICATION_MODAL); dialog.setUndecorated(true); dialog.setBounds(w.getBounds()); dialog.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); int color = check.isSelected() ? 0x22_FF_00_00 : 0x01_00_00_00; dialog.setBackground(new Color(color, true)); new BackgroundTask() { @Override protected void done() { if (!isDisplayable()) { cancel(true); return; } dialog.setVisible(false); } dialog.setVisible(false); }.execute(); dialog.setVisible(true); }); // ... class BackgroundTask extends SwingWorker<String, Void> { @Override protected String doInBackground() throws InterruptedException { Thread.sleep(5_000); return "Done"; } }).execute(); dialog.setVisible(true); } }} * 解説 [#explanation] 上記のサンプルでは、以下のような設定を行った`JDialog`を表示することで親`JFrame`のタイトルバー、閉じる、最大化、最小化ボタンを含めて一定時間入力不可にするテストを行っています。 - モーダル(`Dialog.ModalityType.DOCUMENT_MODAL`)な`JDialog`を作成 - `dialog.setUndecorated(true)`でタイトルバーなどの装飾を非表示に設定 - `JDialog`のカーソルを`Cursor.WAIT_CURSOR`に設定 - `JDialog`の背景色を透明(完全に透明ではない)に設定 - 注: このサンプルには`JDialog`の表示を途中で中断する方法がない * 参考リンク [#reference] - [[Cursorを砂時計に変更>Swing/WaitCursor]] - [[JLayerで指定したコンポーネントへの入力を禁止>Swing/DisableInputLayer]] * コメント [#comment] #comment #comment