Package jpianotrain.gui

Examples of jpianotrain.gui.TonnetzMajorPanel


  }
 
  @Override
  public void actionPerformed(ActionEvent e) {
    Tonnetz t=new Tonnetz(Tonnetz.Sort.NORMAL);
    TonnetzMajorPanel tmp=new TonnetzMajorPanel(t);
    if (dlg==null) {
      dlg=new JDialog(ApplicationContext.getInstance().getDefaultDialogOwner(),
        ResourceFactory.getString(ACTION_MAJORTONNETZ_NAME),
        false);
      dlg.setLayout(new BorderLayout());
View Full Code Here


  @Override
  public void actionPerformed(ActionEvent e) {
    Tonnetz t=new Tonnetz(Tonnetz.Sort.WHOLESTEP, 8);
    t=t.merge(new Tonnetz(Tonnetz.Sort.WHOLESTEP, 2));
    //Tonnetz t=new Tonnetz(Tonnetz.Sort.WHOLESTEP, 2);
    TonnetzMajorPanel tmp=new TonnetzMajorPanel(t);
    if (dlg==null) {
      dlg=new JDialog(ApplicationContext.getInstance().getDefaultDialogOwner(),
        ResourceFactory.getString(ACTION_HYPERTONNETZ_NAME),
        false);
      dlg.setLayout(new BorderLayout());
View Full Code Here

TOP

Related Classes of jpianotrain.gui.TonnetzMajorPanel

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.