Package de.sciss.app

Examples of de.sciss.app.WindowHandler


    public HelpFrame()
    {
        super();
       
    final Application  app  = AbstractApplication.getApplication();
    final WindowHandler wh  = app.getWindowHandler();
   
    win  = wh.createWindow( AbstractWindow.SUPPORT );
   
    Container              cp    = win.getContentPane();
        Box                  buttonPanel;
    final JButton            ggClose;
        JScrollPane              ggScroll;
View Full Code Here


    return actionCollect;
  }
 
  public static Component getWindowAncestor( Component c )
  {
    final WindowHandler wh = AbstractApplication.getApplication().getWindowHandler();
   
    return SwingUtilities.getAncestorOfClass( (wh instanceof BasicWindowHandler) && ((BasicWindowHandler) wh).internalFrames ?
                          JInternalFrame.class : Window.class, c );
  }
View Full Code Here

TOP

Related Classes of de.sciss.app.WindowHandler

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.