object Dialog
Simple predefined dialogs.
- See also
javax.swing.JOptionPane
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Dialog
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- 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
- 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]
- def showMessage(parent: PeerContainer = null, message: Any, title: String = ..., messageType: Dialog.Message.Value = Message.Info, icon: Icon = EmptyIcon): Unit
- 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
-
object
Message extends Enumeration
The message type of a dialog.
-
object
Options extends Enumeration
The possible answers a user can select.
-
object
Result extends Enumeration
The selected result of dialog.