Package javafx.scene.control
Class DialogEvent
java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.scene.control.DialogEvent
- All Implemented Interfaces:
Serializable
,Cloneable
Event related to dialog showing/hiding actions. In particular, this event is
used exclusively by the following methods:
Dialog.onShowingProperty()
Dialog.onShownProperty()
Dialog.onHidingProperty()
Dialog.onCloseRequestProperty()
-
invalid @link
{@link Dialog#onHiddenProperty()()
- Since:
- JavaFX 8u40
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final EventType<DialogEvent>
Common supertype for all dialog event types.static final EventType<DialogEvent>
This event is delivered to a dialog when there is an external request to close that dialog.static final EventType<DialogEvent>
This event occurs on dialog just after it is hidden.static final EventType<DialogEvent>
This event occurs on dialog just before it is hidden.static final EventType<DialogEvent>
This event occurs on dialog just before it is shown.static final EventType<DialogEvent>
This event occurs on dialog just after it is shown.Fields inherited from class javafx.event.Event
consumed, eventType, NULL_SOURCE_TARGET, target
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionDialogEvent
(Dialog<?> source, EventType<? extends Event> eventType) Construct a newEvent
with the specified event source, target and type. -
Method Summary
Modifier and TypeMethodDescriptionCreates a copy of the given event with the given fields substituted.toString()
Returns a string representation of thisDialogEvent
object.Methods inherited from class javafx.event.Event
consume, copyFor, duplicate, fireEvent, getPropagateToPeerEvent, getTarget, isConsumed, setPropagateToPeerEvent
Methods inherited from class java.util.EventObject
getSource
-
Field Details
-
ANY
Common supertype for all dialog event types. -
DIALOG_SHOWING
This event occurs on dialog just before it is shown. -
DIALOG_SHOWN
This event occurs on dialog just after it is shown. -
DIALOG_HIDING
This event occurs on dialog just before it is hidden. -
DIALOG_HIDDEN
This event occurs on dialog just after it is hidden. -
DIALOG_CLOSE_REQUEST
This event is delivered to a dialog when there is an external request to close that dialog. If the event is not consumed by any installed dialog event handler, the default handler for this event closes the corresponding dialog.
-
-
Constructor Details
-
DialogEvent
Construct a newEvent
with the specified event source, target and type. If the source or target is set tonull
, it is replaced by theNULL_SOURCE_TARGET
value.- Parameters:
source
- the event source which sent the eventeventType
- the event type
-
-
Method Details
-
toString
Returns a string representation of thisDialogEvent
object.- Overrides:
toString
in classEventObject
- Returns:
- a string representation of this
DialogEvent
object.
-
getEventType
Creates a copy of the given event with the given fields substituted.- Overrides:
getEventType
in classEvent
- Parameters:
newSource
- the new source of the copied eventnewTarget
- the new target of the copied eventtype
- the new eventType- Returns:
- the event copy with the fields substituted
-