< prev index next >

modules/javafx.graphics/src/main/java/com/sun/javafx/tk/TKStage.java

Print this page

        

*** 213,222 **** --- 213,234 ---- */ void releaseInput(); public void setRTL(boolean b); + /** + * Whether mouse/keyboard events should be sent to this window. + * @param whether this stage should receive events/focus + */ + public void setEnabled(boolean enabled); + + /** + * Return a handle to the native platform window id. + * @return platform window id, or 0L if there is none. + */ + public long getRawHandle(); + public static final KeyCodeCombination defaultFullScreenExitKeycombo = new KeyCodeCombination(KeyCode.ESCAPE, ModifierValue.UP, ModifierValue.UP, ModifierValue.UP,
< prev index next >