add: close button enabled

This commit is contained in:
Brian Matzon 2003-02-08 23:01:58 +00:00
parent 15b6e08872
commit 9a9406dc7e
3 changed files with 18 additions and 7 deletions

View file

@ -57,6 +57,9 @@ public final class Display {
/** A pointer to the native display window. On Windows this will be an hWnd. */
private static int handle;
/** Whether or not the display has been requested to shutdown by the user */
public static boolean closeRequested = false;
/**
* No construction allowed.
@ -214,5 +217,4 @@ public final class Display {
* @return true if the display is minimized
*/
public static native boolean isMinimized();
}
}