Examples of AuxEnvelopePanel


Examples of com.pcmsolutions.device.EMU.E4.gui.preset.presetviewer.envelope.AuxEnvelopePanel

    protected JPanel getFiltEnvPanel() throws IllegalParameterIdException {
        return new FilterEnvelopePanel().init(voice);
    }

    protected JPanel getAuxEnvPanel() throws IllegalParameterIdException {
        return new AuxEnvelopePanel().init(voice);
    }
View Full Code Here

Examples of com.pcmsolutions.device.EMU.E4.gui.preset.presetviewer.envelope.AuxEnvelopePanel

                        FilterEnvelopePanel filt = new FilterEnvelopePanel();
                        filt.init(voice);
                        vsp.addAnchoredComponent(filt, gridIndex++, 0, GridBagConstraints.NORTH);

                        AuxEnvelopePanel aux = new AuxEnvelopePanel();
                        aux.init(voice);
                        vsp.addAnchoredComponent(aux, gridIndex++, 0, GridBagConstraints.NORTH);
                    } else {
                        if ((sections & VoiceSections.VOICE_AMP_ENVELOPE) != 0) {
                            AmpEnvelopePanel p = new AmpEnvelopePanel();
                            p.init(voice);
                            vsp.addAnchoredComponent(p, gridIndex++, 0, GridBagConstraints.NORTH);
                        }
                        if ((sections & VoiceSections.VOICE_FILTER_ENVELOPE) != 0) {
                            FilterEnvelopePanel p = new FilterEnvelopePanel();
                            p.init(voice);
                            vsp.addAnchoredComponent(p, gridIndex++, 0, GridBagConstraints.NORTH);
                        }
                        if ((sections & VoiceSections.VOICE_AUX_ENVELOPE) != 0) {
                            AuxEnvelopePanel p = new AuxEnvelopePanel();
                            p.init(voice);
                            vsp.addAnchoredComponent(p, gridIndex++, 0, GridBagConstraints.NORTH);
                        }
                    }
                    dep.init(voice.getPreset().getDeviceContext(), vsp);
                    return dep;
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.