Package de.sciss.eisenkraut.gui

Examples of de.sciss.eisenkraut.gui.AudioFileInfoPalette


    }
    actionShowWindow.putValue( Action.NAME, name );
    actionSave.setEnabled( !writeProtected && doc.isDirty() );
    setDirty( doc.isDirty() );
   
    final AudioFileInfoPalette infoBox = (AudioFileInfoPalette) app.getComponent( Main.COMP_AUDIOINFO );
    if( infoBox != null ) infoBox.updateDocumentName( doc );
   
    if( writeProtected && !wpHaveWarned && doc.isDirty() ) {
//      MutableIcon warnIcon = new MutableIcon( 128 );
//      warnIcon.setID( MutableIcon.WRITE_PROTECTED );
      final JOptionPane op = new JOptionPane( getResourceString( "warnWriteProtected" ), JOptionPane.WARNING_MESSAGE );
View Full Code Here


    /**
     *  Brings up the Audio-Info-Box
     */
    public void actionPerformed( ActionEvent e )
    {
      AudioFileInfoPalette infoBox = (AudioFileInfoPalette) app.getComponent( Main.COMP_AUDIOINFO );
   
      if( infoBox == null ) {
        infoBox = new AudioFileInfoPalette();
      }
      infoBox.setVisible( true );
      infoBox.toFront();
    }
View Full Code Here

TOP

Related Classes of de.sciss.eisenkraut.gui.AudioFileInfoPalette

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.