object Dialog

Simple predefined dialogs.

See also

javax.swing.JOptionPane

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dialog
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def showConfirmation(parent: PeerContainer = null, message: Any, title: String = uiString("OptionPane.titleText"), optionType: Dialog.Options.Value = Options.YesNo, messageType: Dialog.Message.Value = Message.Question, icon: Icon = EmptyIcon): Dialog.Result.Value
  2. def showInput[A](parent: PeerContainer = null, message: Any, title: String = ..., messageType: Dialog.Message.Value = Message.Question, icon: Icon = EmptyIcon, entries: Seq[A] = Nil, initial: A): Option[A]
  3. def showMessage(parent: PeerContainer = null, message: Any, title: String = ..., messageType: Dialog.Message.Value = Message.Info, icon: Icon = EmptyIcon): Unit
  4. def showOptions(parent: PeerContainer = null, message: Any, title: String = uiString("OptionPane.titleText"), optionType: Dialog.Options.Value = Options.YesNo, messageType: Dialog.Message.Value = Message.Question, icon: Icon = EmptyIcon, entries: Seq[Any], initial: Int): Dialog.Result.Value
  5. object Message extends Enumeration

    The message type of a dialog.

  6. object Options extends Enumeration

    The possible answers a user can select.

  7. object Result extends Enumeration

    The selected result of dialog.