Package de.sciss.common

Examples of de.sciss.common.ShowWindowAction


    actionDecVertMin  = new ActionVerticalMin( -6f );
    actionIncHoriz    = new ActionSpanWidth( 2.0f );
    actionDecHoriz    = new ActionSpanWidth( 0.5f );
    actionZoomAllOut  = new ActionScroll( SCROLL_ENTIRE_SESSION );

    actionShowWindow  = new ShowWindowAction( this );

    imap.put( KeyStroke.getKeyStroke( KeyEvent.VK_DOWN, InputEvent.CTRL_MASK ), "incvmax" );
    amap.put( "incvmax", actionIncVertMax );
    imap.put( KeyStroke.getKeyStroke( KeyEvent.VK_UP, InputEvent.CTRL_MASK ), "decvmax" );
    amap.put( "decvmax", actionDecVertMax );
View Full Code Here


  private final JComponent    topView;

  public PlugInWindow( String title, Rectangle cocoaBounds, int flags )
  {
    super( SUPPORT );
    actionShowWindow  = new ShowWindowAction( this );
    mf          = ((BasicApplication) AbstractApplication.getApplication()).getMenuFactory();
    mf.addToWindowMenu( actionShowWindow )// MUST BE BEFORE INIT()!!
    init();
    setTitle( title )// needs to be after init. WHY?
View Full Code Here

TOP

Related Classes of de.sciss.common.ShowWindowAction

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.