Package charva.awt.event

Examples of charva.awt.event.FocusEvent


  Window ancestor = getAncestorWindow();
  Component currentFocus = ancestor.getCurrentFocus();
  if ( currentFocus != this) {
      EventQueue evtQueue =
        Toolkit.getDefaultToolkit().getSystemEventQueue();
      FocusEvent evt = new FocusEvent(AWTEvent.FOCUS_LOST, currentFocus);
      evtQueue.postEvent(evt);

      evt = new FocusEvent(AWTEvent.FOCUS_GAINED, this);
      evtQueue.postEvent(evt);

//      if (getParent() != null)
    getParent().setFocus(this);
View Full Code Here

TOP

Related Classes of charva.awt.event.FocusEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.