Package de.sciss.common

Examples of de.sciss.common.AppWindow


    if( palette != null ) return;
    if( popup != null ) destroyPopup();

    final Application  app      = AbstractApplication.getApplication();
 
    palette = new AppWindow( AbstractWindow.PALETTE );
    palette.setTitle( app.getResourceString( "inputDlgSetBlendSpan" ));
    createBlendPan( false );
       palette.getContentPane().add( CoverGrowBox.create(), BorderLayout.SOUTH );
    palette.setDefaultCloseOperation( WindowConstants.DO_NOTHING_ON_CLOSE );
    palette.addListener( new AbstractWindow.Adapter() {
View Full Code Here


    // ---- component views ----

    mainFrame    = new MainFrame();
    ((BasicWindowHandler) getWindowHandler()).setDefaultBorrower( mainFrame );
    final AppWindow ctrlRoom  = new ControlRoomFrame();
    final AppWindow observer  = new ObserverPalette();

    // means no preferences found, so
    // do some more default initializations
    // and display splash screen
    if( prefsVersion == 0.0 ) {
      ctrlRoom.setVisible( true );
      observer.setVisible( true );
      if( cache.getFolder().isDirectory() ) {
        cache.setActive( true );
      }
        new WelcomeScreen( this );
    }
View Full Code Here

    if( palette != null ) return;
    if( popup != null ) destroyPopup();

    final Application  app      = AbstractApplication.getApplication();
 
    palette = new AppWindow( AbstractWindow.PALETTE );
    palette.setTitle( app.getResourceString( "palettePanorama" ) + " : " + t.getName() );
    createPanPan();
       palette.getContentPane().add( CoverGrowBox.create(), BorderLayout.SOUTH );
    palette.setDefaultCloseOperation( WindowConstants.DO_NOTHING_ON_CLOSE );
    palette.addListener( new AbstractWindow.Adapter() {
View Full Code Here

    /**
     *  Brings up the Filter-Trajectories dialog
     */
    public void actionPerformed( ActionEvent e )
    {
      AppWindow filterFrame = (AppWindow) getApplication().getComponent( Main.COMP_FILTER );
   
      if( filterFrame == null ) {
        final Main root = (Main) AbstractApplication.getApplication();
        filterFrame = new FilterDialog( root, doc );
      }
      filterFrame.setVisible( true );
      filterFrame.toFront();
    }
View Full Code Here

    if( palette != null ) return;
    if( popup != null ) destroyPopup();

    final Application  app      = AbstractApplication.getApplication();
 
    palette = new AppWindow( AbstractWindow.PALETTE );
    palette.setTitle( app.getResourceString( "inputDlgSetBlendSpan" ));
    createBlendPan( false );
       palette.getContentPane().add( CoverGrowBox.create(), BorderLayout.SOUTH );
    palette.setDefaultCloseOperation( WindowConstants.DO_NOTHING_ON_CLOSE );
    palette.addListener( new AbstractWindow.Adapter() {
View Full Code Here

    /**
     *  Opens the bounce-to-disk dialog
     */
    public void actionPerformed( ActionEvent e )
    {
      AppWindow bounceFrame = (AppWindow) getApplication().getComponent( Main.COMP_BOUNCE );
   
      if( bounceFrame == null ) {
        final Main root = (Main) AbstractApplication.getApplication();
        bounceFrame = new BounceDialog( root, doc );
      }
      bounceFrame.setVisible( true );
      bounceFrame.toFront();
    }
View Full Code Here

TOP

Related Classes of de.sciss.common.AppWindow

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.