Lines Matching refs:state

117      * Listens for changes in the state of the Window listener to update
118 * the state of the widgets.
138 * Buffered Frame.state property. As state isn't bound, this is kept
141 private int state;
176 state = -1;
186 * Uninstalls the necessary state.
389 frame.setExtendedState(state | Frame.ICONIFIED);
399 frame.setExtendedState(state | Frame.MAXIMIZED_BOTH);
413 if ((state & Frame.ICONIFIED) != 0) {
414 frame.setExtendedState(state & ~Frame.ICONIFIED);
416 frame.setExtendedState(state & ~Frame.MAXIMIZED_BOTH);
540 * Updates state dependant upon the Window's active state.
556 * Sets the state of the Window.
558 private void setState(int state) {
559 setState(state, false);
563 * Sets the state of the window. If <code>updateRegardless</code> is
564 * true and the state has not changed, this will update anyway.
566 private void setState(int state, boolean updateRegardless) {
570 if (this.state == state && !updateRegardless) {
578 if (((state & Frame.MAXIMIZED_BOTH) != 0) &&
584 else if ((state & Frame.MAXIMIZED_BOTH) == 0) {
585 // This is a croak, if state becomes bound, this can
590 if ((state & Frame.MAXIMIZED_BOTH) != 0) {
630 this.state = state;
685 // As state isn't bound, we need a convenience place to check
686 // if it has changed. Changing the state typically changes the
970 * state as the state of the Window changes.
976 // Frame.state isn't currently bound.
977 if ("resizable".equals(name) || "state".equals(name)) {
1029 * WindowListener installed on the Window, updates the state as necessary.