Examples of EditableAmpEnvelopePanel


Examples of com.pcmsolutions.device.EMU.E4.gui.preset.preseteditor.envelope.EditableAmpEnvelopePanel

        vtp.init(voices);
        return vtp;
     }

    protected JPanel getAmpEnvPanel() throws IllegalParameterIdException {
        return new EditableAmpEnvelopePanel().init(voices);
    }
View Full Code Here

Examples of com.pcmsolutions.device.EMU.E4.gui.preset.preseteditor.envelope.EditableAmpEnvelopePanel

                        EditableTuningPanel p = new EditableTuningPanel();
                        p.init(voices);
                        vsp.addAnchoredComponent(p, gridIndex++, 0, GridBagConstraints.NORTH);
                    }
                    if ((sections & VoiceSections.VOICE_ENVELOPES) != 0) {
                        EditableAmpEnvelopePanel amp = new EditableAmpEnvelopePanel();
                        amp.init(voices);
                        vsp.addAnchoredComponent(amp, gridIndex++, 0, GridBagConstraints.NORTH);

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

                        EditableAuxEnvelopePanel aux = new EditableAuxEnvelopePanel();
                        aux.init(voices);
                        vsp.addAnchoredComponent(aux, gridIndex++, 0, GridBagConstraints.NORTH);
                    } else {
                        if ((sections & VoiceSections.VOICE_AMP_ENVELOPE) != 0) {
                            EditableAmpEnvelopePanel p = new EditableAmpEnvelopePanel();
                            p.init(voices);
                            vsp.addAnchoredComponent(p, gridIndex++, 0, GridBagConstraints.NORTH);
                        }
                        if ((sections & VoiceSections.VOICE_FILTER_ENVELOPE) != 0) {
                            EditableFilterEnvelopePanel p = new EditableFilterEnvelopePanel();
                            p.init(voices);
                            vsp.addAnchoredComponent(p, gridIndex++, 0, GridBagConstraints.NORTH);
                        }
                        if ((sections & VoiceSections.VOICE_AUX_ENVELOPE) != 0) {
                            EditableAuxEnvelopePanel p = new EditableAuxEnvelopePanel();
                            p.init(voices);
                            vsp.addAnchoredComponent(p, gridIndex++, 0, GridBagConstraints.NORTH);
                        }
                    }
                    dep.init(voices[0].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.