Package jpianotrain.gui.action

Examples of jpianotrain.gui.action.ConfigurationAction


      new JMenu(ResourceFactory.getString(MENU_EXTRA_NAME));
    JMenu configureMenu=
      new JMenu(ResourceFactory.getString(MENU_CONFIGURE_NAME));

    JMenuItem configureGUIItem=
      new JMenuItem(new ConfigurationAction(this,
        ACTION_CONFIGURE_GUI_NAME,
        ConfigurationDialog.Configurations.GUI));
    JMenuItem configureMidiItem=
      new JMenuItem(new ConfigurationAction(this,
        ACTION_CONFIGURE_MIDI_NAME,
        ConfigurationDialog.Configurations.MIDI));
    JMenuItem configureRandomItem=
      new JMenuItem(new ConfigurationAction(this,
        ACTION_CONFIGURE_RANDOM_NAME,
        ConfigurationDialog.Configurations.RANDOM));
    JMenuItem configureSynthItem=
      new JMenuItem(new ConfigurationAction(this,
        ACTION_CONFIGURE_SYNTHESIZER_NAME,
        ConfigurationDialog.Configurations.SYNTHESIZER));
    configureMenu.add(configureGUIItem);
    configureMenu.add(configureMidiItem);
    configureMenu.add(configureRandomItem);
View Full Code Here

TOP

Related Classes of jpianotrain.gui.action.ConfigurationAction

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.