/*
* SortComposerPanel.java
*
* Created on November 15, 2007, 3:27 PM
*/
package com.meapsoft.gui.composers;
import com.meapsoft.composers.ChromaTopComposer;
import com.meapsoft.composers.Composer;
import com.meapsoft.composers.SortComposer;
/**
* A GUI for the Chromatop Composer
* @author douglas@music.columbia.edu
*/
public class ChromaTopComposerPanel extends ComposerSettingsPanel
{
/** Creates new form SortComposerPanel */
public ChromaTopComposerPanel()
{
initComponents();
}
public int initComposer()
{
//create the composer here
mComposer = new ChromaTopComposer(mParentTab.featFile, mParentTab.edlFile);
return 0;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(0, 389, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(0, 113, Short.MAX_VALUE)
);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
// End of variables declaration//GEN-END:variables
}