Lines Matching defs:Dialog

45  * A Dialog is a top-level window with a title and a border
73 * In a multi-screen environment, you can create a <code>Dialog</code>
97 public class Dialog extends Window {
109 * if the Dialog is to be resizable, otherwise
141 * @see Dialog#getModalityType
142 * @see Dialog#setModalityType
192 * @see java.awt.Dialog.ModalityType
193 * @see java.awt.Dialog#setModal
203 * {@link Dialog.ModalityType ModalityType} enum instead.
219 * {@link Dialog.ModalityType#MODELESS ModalityType.MODELESS}, it blocks all
269 transient static IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>();
274 * Specifies the title of the Dialog.
317 * Constructs an initially invisible, modeless <code>Dialog</code> with
331 public Dialog(Frame owner) {
336 * Constructs an initially invisible <code>Dialog</code> with the specified
350 * @see java.awt.Dialog.ModalityType
351 * @see java.awt.Dialog.ModalityType#MODELESS
352 * @see java.awt.Dialog#DEFAULT_MODALITY_TYPE
353 * @see java.awt.Dialog#setModal
354 * @see java.awt.Dialog#setModalityType
357 public Dialog(Frame owner, boolean modal) {
362 * Constructs an initially invisible, modeless <code>Dialog</code> with
378 public Dialog(Frame owner, String title) {
383 * Constructs an initially invisible <code>Dialog</code> with the
399 * @see java.awt.Dialog.ModalityType
400 * @see java.awt.Dialog.ModalityType#MODELESS
401 * @see java.awt.Dialog#DEFAULT_MODALITY_TYPE
402 * @see java.awt.Dialog#setModal
403 * @see java.awt.Dialog#setModalityType
408 public Dialog(Frame owner, String title, boolean modal) {
413 * Constructs an initially invisible <code>Dialog</code> with the specified owner
431 * @see java.awt.Dialog.ModalityType
432 * @see java.awt.Dialog.ModalityType#MODELESS
433 * @see java.awt.Dialog#DEFAULT_MODALITY_TYPE
434 * @see java.awt.Dialog#setModal
435 * @see java.awt.Dialog#setModalityType
441 public Dialog(Frame owner, String title, boolean modal,
447 * Constructs an initially invisible, modeless <code>Dialog</code> with
448 * the specified owner <code>Dialog</code> and an empty title.
459 public Dialog(Dialog owner) {
464 * Constructs an initially invisible, modeless <code>Dialog</code>
465 * with the specified owner <code>Dialog</code> and title.
479 public Dialog(Dialog owner, String title) {
484 * Constructs an initially invisible <code>Dialog</code> with the
485 * specified owner <code>Dialog</code>, title, and modality.
500 * @see java.awt.Dialog.ModalityType
501 * @see java.awt.Dialog.ModalityType#MODELESS
502 * @see java.awt.Dialog#DEFAULT_MODALITY_TYPE
503 * @see java.awt.Dialog#setModal
504 * @see java.awt.Dialog#setModalityType
509 public Dialog(Dialog owner, String title, boolean modal) {
514 * Constructs an initially invisible <code>Dialog</code> with the
515 * specified owner <code>Dialog</code>, title, modality and
534 * @see java.awt.Dialog.ModalityType
535 * @see java.awt.Dialog.ModalityType#MODELESS
536 * @see java.awt.Dialog#DEFAULT_MODALITY_TYPE
537 * @see java.awt.Dialog#setModal
538 * @see java.awt.Dialog#setModalityType
545 public Dialog(Dialog owner, String title, boolean modal,
551 * Constructs an initially invisible, modeless <code>Dialog</code> with the
555 * {@link java.awt.Dialog Dialog}, {@link java.awt.Frame Frame}, any
559 * is not an instance of {@link java.awt.Dialog Dialog} or {@link
570 public Dialog(Window owner) {
575 * Constructs an initially invisible, modeless <code>Dialog</code> with
579 * {@link java.awt.Dialog Dialog}, {@link java.awt.Frame Frame}, any
585 * is not an instance of {@link java.awt.Dialog Dialog} or {@link
596 public Dialog(Window owner, String title) {
601 * Constructs an initially invisible <code>Dialog</code> with the
605 * {@link java.awt.Dialog Dialog}, {@link java.awt.Frame Frame}, any
612 * is not an instance of {@link java.awt.Dialog Dialog} or {@link
621 * @see java.awt.Dialog.ModalityType
622 * @see java.awt.Dialog#setModal
623 * @see java.awt.Dialog#setModalityType
629 public Dialog(Window owner, ModalityType modalityType) {
634 * Constructs an initially invisible <code>Dialog</code> with the
638 * {@link java.awt.Dialog Dialog}, {@link java.awt.Frame Frame}, any
647 * is not an instance of {@link java.awt.Dialog Dialog} or {@link
656 * @see java.awt.Dialog.ModalityType
657 * @see java.awt.Dialog#setModal
658 * @see java.awt.Dialog#setModalityType
664 public Dialog(Window owner, String title, ModalityType modalityType) {
669 !(owner instanceof Dialog))
681 * Constructs an initially invisible <code>Dialog</code> with the
686 * {@link java.awt.Dialog Dialog}, {@link java.awt.Frame Frame}, any
698 * is not an instance of {@link java.awt.Dialog Dialog} or {@link
707 * @see java.awt.Dialog.ModalityType
708 * @see java.awt.Dialog#setModal
709 * @see java.awt.Dialog#setModalityType
715 public Dialog(Window owner, String title, ModalityType modalityType,
721 !(owner instanceof Dialog))
737 synchronized (Dialog.class) {
743 * Makes this Dialog displayable by connecting it to
773 * @see java.awt.Dialog#DEFAULT_MODALITY_TYPE
774 * @see java.awt.Dialog.ModalityType#MODELESS
775 * @see java.awt.Dialog#setModal
776 * @see java.awt.Dialog#getModalityType
777 * @see java.awt.Dialog#setModalityType
797 * <code>setModalityType(Dialog.DEFAULT_MODALITY_TYPE)</code>, and
799 * <code>setModalityType(Dialog.ModalityType.MODELESS)</code>
801 * @see java.awt.Dialog#DEFAULT_MODALITY_TYPE
802 * @see java.awt.Dialog.ModalityType#MODELESS
803 * @see java.awt.Dialog#isModal
804 * @see java.awt.Dialog#getModalityType
805 * @see java.awt.Dialog#setModalityType
819 * @see java.awt.Dialog#setModalityType
829 * java.awt.Dialog.ModalityType ModalityType} for possible modality types.
844 * @see java.awt.Dialog#getModalityType
851 type = Dialog.ModalityType.MODELESS;
854 type = Dialog.ModalityType.MODELESS;
871 * @see java.awt.Dialog#setTitle
878 * Sets the title of the Dialog.
934 // This call is required as the show() method of the Dialog class
976 * Shows or hides this {@code Dialog} depending on the value of parameter
978 * @param b if {@code true}, makes the {@code Dialog} visible,
979 * otherwise hides the {@code Dialog}.
983 * If {@code false}, hides the {@code Dialog} and then causes {@code setVisible(true)}
1002 * @see java.awt.Dialog#isModal
1009 * Makes the {@code Dialog} visible. If the dialog and/or its owner
1168 * Hides the Dialog and then causes {@code show} to return if it is currently
1189 * Disposes the Dialog and then causes show() to return if it is currently
1225 * @see java.awt.Dialog#setResizable
1235 * @see java.awt.Dialog#isResizable
1250 // the insets of the Dialog. If we could, we'd call invalidate()
1252 // the Dialog lock when we call invalidate().
1315 * @see java.awt.Dialog#setUndecorated
1399 IdentityArrayList<Dialog> blockers = new IdentityArrayList<Dialog>();
1400 for (Dialog d : modalDialogs) {
1414 Dialog blocker = blockers.get(i);
1416 Dialog blockerBlocker = blocker.getModalBlocker();
1444 if ((w instanceof Dialog) && ((Dialog)w).isModal_NoClientCode()) {
1445 Dialog wd = (Dialog)w;
1480 if ((w instanceof Dialog) && ((Dialog)w).isModal_NoClientCode()) {
1481 Dialog d = (Dialog)w;
1507 if ((w instanceof Dialog) && ((Dialog)w).isInHide) {
1599 Dialog modalDialog = modalDialogs.get(i);
1661 * Gets the AccessibleContext associated with this Dialog.
1667 * AccessibleContext of this Dialog
1679 * <code>Dialog</code> class. It provides an implementation of the