當前位置: 首頁>>代碼示例>>Java>>正文


Java WindowEvent.WINDOW_CLOSING屬性代碼示例

本文整理匯總了Java中java.awt.event.WindowEvent.WINDOW_CLOSING屬性的典型用法代碼示例。如果您正苦於以下問題:Java WindowEvent.WINDOW_CLOSING屬性的具體用法?Java WindowEvent.WINDOW_CLOSING怎麽用?Java WindowEvent.WINDOW_CLOSING使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在java.awt.event.WindowEvent的用法示例。


在下文中一共展示了WindowEvent.WINDOW_CLOSING屬性的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: processWindowEvent

protected void processWindowEvent(WindowEvent e) {
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
        if (Configuration.get("ON_CLOSE").equals("exit"))
            doExit();
        else
            doMinimize();
    }
    // Minimize window fix
    /*
    else if ((e.getID() == WindowEvent.WINDOW_ICONIFIED)) {
        super.processWindowEvent(new WindowEvent(this,
                WindowEvent.WINDOW_CLOSING));
        doMinimize();
    }
    else
        super.processWindowEvent(e);*/
}
 
開發者ID:ser316asu,項目名稱:SER316-Aachen,代碼行數:17,代碼來源:AppFrame.java

示例2: main

public static void main(String[] args) {
  try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    JFrame  window = new JFrame("Request For Quote Client") {
        protected void processWindowEvent(WindowEvent event) {
          switch( event.getID() ) {
            case WindowEvent.WINDOW_CLOSING: exit();
                                             break ;
            default: super.processWindowEvent(event);
                     break ;
          }
        }
        private void exit() {
          System.exit(0);
        }
      };

    window.getContentPane().add( new rfq() );
    window.pack();
    window.setSize( new Dimension(800, 500) );
    window.setVisible( true );
  }
  catch( Throwable exp ) {
    exp.printStackTrace();
  }
}
 
開發者ID:parabuild-ci,項目名稱:parabuild-ci,代碼行數:26,代碼來源:rfq.java

示例3: processWindowEvent

/**
 * Processes window events occurring on this component.
 * Hides the window or disposes of it, as specified by the setting
 * of the <code>defaultCloseOperation</code> property.
 *
 * @param  e  the window event
 * @see    #setDefaultCloseOperation
 * @see    java.awt.Window#processWindowEvent
 */
protected void processWindowEvent(final WindowEvent e) {
    super.processWindowEvent(e);

    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
        switch (defaultCloseOperation) {
            case HIDE_ON_CLOSE:
                setVisible(false);
                break;
            case DISPOSE_ON_CLOSE:
                dispose();
                break;
            case EXIT_ON_CLOSE:
                // This needs to match the checkExit call in
                // setDefaultCloseOperation
                System.exit(0);
                break;
            case DO_NOTHING_ON_CLOSE:
            default:
        }
    }
}
 
開發者ID:lambdalab-mirror,項目名稱:jdk8u-jdk,代碼行數:30,代碼來源:JFrame.java

示例4: processWindowEvent

protected void processWindowEvent(WindowEvent e) {
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    	//Removed to correct closing issue. 
        //if (Configuration.get("ON_CLOSE").equals("exit"))
            doExit();
       // else
           //doMinimize();
    }
    else if ((e.getID() == WindowEvent.WINDOW_ICONIFIED)) {
        
        doMinimize();
    }
 

    else
        super.processWindowEvent(e);
}
 
開發者ID:ser316asu,項目名稱:Dahlem_SER316,代碼行數:17,代碼來源:AppFrame.java

示例5: processWindowEvent

protected void processWindowEvent(WindowEvent e) {
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
        if (Configuration.get("ON_CLOSE").equals("exit"))
            doExit();
        else
            doMinimize();
    }
    else if ((e.getID() == WindowEvent.WINDOW_ICONIFIED)) {
        super.processWindowEvent(new WindowEvent(this,
                WindowEvent.WINDOW_CLOSING));
        doMinimize();
    }
    else
        super.processWindowEvent(e);
}
 
開發者ID:ser316asu,項目名稱:Neukoelln_SER316,代碼行數:15,代碼來源:AppFrame.java

示例6: actionPerformed

@Override
public void actionPerformed(ActionEvent event) {
	Object src = event.getSource();
	if (src == close) {
		WindowEvent e = new WindowEvent(PreferencesFrame.this, WindowEvent.WINDOW_CLOSING);
		PreferencesFrame.this.processWindowEvent(e);
	}
}
 
開發者ID:LogisimIt,項目名稱:Logisim,代碼行數:8,代碼來源:PreferencesFrame.java

示例7: processWindowEvent

/**
 * Overridden so we can exit when window is closed
 */
@Override
protected void processWindowEvent(WindowEvent e) {
  if(e.getID() == WindowEvent.WINDOW_CLOSING) {
    new ExitGateAction().actionPerformed(null);
  }
  super.processWindowEvent(e);
}
 
開發者ID:GateNLP,項目名稱:gate-core,代碼行數:10,代碼來源:MainFrame.java

示例8: closeApplication

/**
 * Closes the application specified.
 * @param frame the application to close.
 */
public static void closeApplication(Frame frame) {
    if (null != frame) {
        WindowEvent wev = new WindowEvent(frame, WindowEvent.WINDOW_CLOSING);
        Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(wev);
    }
}
 
開發者ID:Esri,項目名稱:defense-solutions-proofs-of-concept,代碼行數:10,代碼來源:Utilities.java

示例9: processWindowEvent

protected void processWindowEvent(WindowEvent e) {
  if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    cancel();
  }
  super.processWindowEvent(e);
}
 
開發者ID:ser316asu,項目名稱:Neukoelln_SER316,代碼行數:6,代碼來源:AppFrame_AboutBox.java

示例10: fireClose

private void fireClose() {
	final JFrame mainFrame = appContext.getBean(POIMainFrame.class);
	final WindowEvent we = new WindowEvent(mainFrame, WindowEvent.WINDOW_CLOSING);
	mainFrame.dispatchEvent(we);
}
 
開發者ID:kiwiwings,項目名稱:poi-visualizer,代碼行數:5,代碼來源:POITopMenuBar.java

示例11: acceptEvent

public FilterAction acceptEvent(AWTEvent event) {
    if (modalComponent != null) {
        int eventID = event.getID();
        boolean mouseEvent = (eventID >= MouseEvent.MOUSE_FIRST) &&
                             (eventID <= MouseEvent.MOUSE_LAST);
        boolean actionEvent = (eventID >= ActionEvent.ACTION_FIRST) &&
                              (eventID <= ActionEvent.ACTION_LAST);
        boolean windowClosingEvent = (eventID == WindowEvent.WINDOW_CLOSING);
        /*
         * filter out MouseEvent and ActionEvent that's outside
         * the modalComponent hierarchy.
         * KeyEvent is handled by using enqueueKeyEvent
         * in Dialog.show
         */
        if (Component.isInstanceOf(modalComponent, "javax.swing.JInternalFrame")) {
            /*
             * Modal internal frames are handled separately. If event is
             * for some component from another heavyweight than modalComp,
             * it is accepted. If heavyweight is the same - we still accept
             * event and perform further filtering in LightweightDispatcher
             */
            return windowClosingEvent ? FilterAction.REJECT : FilterAction.ACCEPT;
        }
        if (mouseEvent || actionEvent || windowClosingEvent) {
            Object o = event.getSource();
            if (o instanceof sun.awt.ModalExclude) {
                // Exclude this object from modality and
                // continue to pump it's events.
                return FilterAction.ACCEPT;
            } else if (o instanceof Component) {
                Component c = (Component) o;
                // 5.0u3 modal exclusion
                boolean modalExcluded = false;
                if (modalComponent instanceof Container) {
                    while (c != modalComponent && c != null) {
                        if ((c instanceof Window) &&
                            (sun.awt.SunToolkit.isModalExcluded((Window)c))) {
                            // Exclude this window and all its children from
                            //  modality and continue to pump it's events.
                            modalExcluded = true;
                            break;
                        }
                        c = c.getParent();
                    }
                }
                if (!modalExcluded && (c != modalComponent)) {
                    return FilterAction.REJECT;
                }
            }
        }
    }
    return FilterAction.ACCEPT;
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:53,代碼來源:EventDispatchThread.java

示例12: processWindowEvent

protected void processWindowEvent(WindowEvent e) {
	if (e.getID() == WindowEvent.WINDOW_CLOSING) {
		cancel();
	}
	super.processWindowEvent(e);
}
 
開發者ID:ser316asu,項目名稱:Dahlem_SER316,代碼行數:6,代碼來源:AppFrame_AboutBox.java


注:本文中的java.awt.event.WindowEvent.WINDOW_CLOSING屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。