Package de.sciss.meloncillo

Examples of de.sciss.meloncillo.Main


    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


    
     *  @synchronization  this method must be called in event thread
     */
    protected ProcessingThread initiate( File path )
    {
      final Main root = (Main) AbstractApplication.getApplication();
      getTransport().stop();
      ((MainFrame) root.getComponent( Main.COMP_MAIN )).clearLog();
//      Map options = new HashMap();
//      options.put( "file", path );
//      return( new ProcessingThread( this, root, root, doc, text, options, Session.DOOR_ALL ));
      final ProcessingThread pt;
      final Map options = new HashMap();
View Full Code Here

    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

      }
      catch( ClassNotFoundException e1 ) {
        BasicWindowHandler.showErrorDialog( null, e1, getValue( NAME ).toString() );
      }

      final Main root = (Main) AbstractApplication.getApplication();
//      new ProcessingThread( this, root, root, doc, text, coll, Session.DOOR_TIMETRNSMTE | Session.DOOR_GRP );
      final ProcessingThread pt;
      pt = new ProcessingThread( this, root, text );
      pt.putClientArg( "trns", collNewTrns );
      pt.putClientArg( "span", span );
View Full Code Here

    File[] fileArgs = new File[] {
      ggInputDir.getPath(),
      ggOutputDir.getPath()
    };
       
    final Main root = (Main) AbstractApplication.getApplication();
//    new ProcessingThread( this, root, root, doc, getTitle(), fileArgs, 0 );
    final ProcessingThread pt;
    pt = new ProcessingThread( this, root, getTitle() );
    pt.putClientArg( "files", fileArgs );
    pt.start();
View Full Code Here

     *            plus .XML suffix inside this folder
     *  @synchronization  this method is to be called in the event thread
     */
    protected ProcessingThread initiate( File docFile )
    {
      final Main root = (Main) AbstractApplication.getApplication();
      doc.getTransport().stop();
      final ProcessingThread pt;
//      return new ProcessingThread( this, root, root, doc, getValue( NAME ).toString(), docFile, Session.DOOR_ALL );
      pt = new ProcessingThread( this, root, getValue( NAME ).toString() );
      pt.putClientArg( "doc", doc );
View Full Code Here

TOP

Related Classes of de.sciss.meloncillo.Main

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.