Class WindowEvent
java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.stage.WindowEvent
- All Implemented Interfaces:
Serializable,Cloneable
Event related to window showing/hiding actions.
- Since:
- JavaFX 2.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EventType<WindowEvent> Common supertype for all window event types.static final EventType<WindowEvent> This event is delivered to a window when there is an external request to close that window.static final EventType<WindowEvent> This event occurs on window just after it is hidden.static final EventType<WindowEvent> This event occurs on window just before it is hidden.static final EventType<WindowEvent> This event occurs on window just before it is shown.static final EventType<WindowEvent> This event occurs on window just after it is shown.Fields declared in class javafx.event.Event
consumed, eventType, NULL_SOURCE_TARGET, targetFields declared in class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionWindowEvent(Window source, EventType<? extends Event> eventType) Construct a newEventwith the specified event source, target and type. -
Method Summary
Modifier and TypeMethodDescriptioncopyFor(Object newSource, EventTarget newTarget) Creates and returns a copy of this event with the specified event source and target.copyFor(Object newSource, EventTarget newTarget, EventType<WindowEvent> type) Creates a copy of the given event with the given fields substituted.Gets the event type of this event.toString()Returns a string representation of thisWindowEventobject.Methods declared in class java.util.EventObject
getSource
-
Field Details
-
ANY
Common supertype for all window event types. -
WINDOW_SHOWING
This event occurs on window just before it is shown. -
WINDOW_SHOWN
This event occurs on window just after it is shown. -
WINDOW_HIDING
This event occurs on window just before it is hidden. -
WINDOW_HIDDEN
This event occurs on window just after it is hidden. -
WINDOW_CLOSE_REQUEST
This event is delivered to a window when there is an external request to close that window. If the event is not consumed by any installed window event handler, the default handler for this event closes the corresponding window.
-
-
Constructor Details
-
WindowEvent
Construct a newEventwith the specified event source, target and type. If the source or target is set tonull, it is replaced by theNULL_SOURCE_TARGETvalue.- Parameters:
source- the event source which sent the eventeventType- the event type
-
-
Method Details
-
toString
Returns a string representation of thisWindowEventobject.- Overrides:
toStringin classEventObject- Returns:
- a string representation of this
WindowEventobject.
-
copyFor
Description copied from class:EventCreates and returns a copy of this event with the specified event source and target. If the source or target is set tonull, it is replaced by theNULL_SOURCE_TARGETvalue. -
copyFor
Creates a copy of the given event with the given fields substituted.- 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
- Since:
- JavaFX 8.0
-
getEventType
Description copied from class:EventGets the event type of this event. Objects of the sameEventclass can have different event types. These event types further specify what kind of event occurred.- Overrides:
getEventTypein classEvent- Returns:
- the event type
-