Package de.sciss.meloncillo.gui

Examples of de.sciss.meloncillo.gui.MainFrame.updateTitle()


  public void setDirty( boolean dirty )
  {
    if( !this.dirty == dirty ) {
      this.dirty = dirty;
      MainFrame  mf = (MainFrame) AbstractApplication.getApplication().getComponent( Main.COMP_MAIN );
      if( mf != null ) mf.updateTitle();
    }
  }

  // ---------------- SessionObject interface ----------------
View Full Code Here


      try {
        doc.bird.waitExclusive( Session.DOOR_ALL );
        doc.getUndoManager().discardAllEdits();
        doc.clear();
        doc.setDirty( false );
        mf.updateTitle();
        mf.clearLog();
      }
      finally {
        doc.bird.releaseExclusive( Session.DOOR_ALL );
      }
View Full Code Here

            AbstractApplication.getApplication().getResourceString( "warnOldSessionDir" )+ " :\n"+
            tempDir.getAbsolutePath(), getValue( Action.NAME ).toString(),
            JOptionPane.WARNING_MESSAGE );
        }
      }
      mf.updateTitle();
    }
  }
 
  // action for the Save-Session-As menu item
  private class ActionSaveAs
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.