Examples of DesktopName


Examples of com.pcmsolutions.system.paths.DesktopName

* Date: 15-Feb-2004
* Time: 11:04:26
*/
public class SystemViewFactory {
    public static ViewInstance providePropertiesView() {
        final DesktopName name = new DesktopName(PropertiesPanel.class, SystemPathFactory.providePropertiesPath());
        final ViewPath vp = new ViewPath(ZDesktopManager.dockPROPERTIES, name);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    PropertiesPanel pp = new PropertiesPanel(ZoeosPreferences.getPropertyList(), Zoeos.getInstance());
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

    private static DesktopName[] join(DesktopName[] parent, DesktopName child) {
        return join(parent, new DesktopName[]{child});
    }

    public static DesktopName[] provideDefaultDesktopNames(DeviceContext device) {
        return new DesktopName[]{new DesktopName(Object.class, PathFactory.provideDevicePath(device))};
    }
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

        };
    }

    // PRESET
    public static DesktopName[] provideDefaultDesktopNames(ReadablePreset p) {
        return join(provideDefaultDesktopNames(p.getDeviceContext()), new DesktopName(DefaultPresetViewerPanel.class, PathFactory.providePresetPath(p)));
    }
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

            return index;
        }
    }

    public static DesktopName[] provideDefaultDesktopNames(ReadablePreset.ReadableVoice v) {
        return join(provideDefaultDesktopNames(v.getPreset()), new DesktopName(VoicePanel.class, PathFactory.provideVoicePath(v)));
    }
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

    public static DesktopName[] provideDefaultDesktopNames(ReadablePreset.ReadableVoice v) {
        return join(provideDefaultDesktopNames(v.getPreset()), new DesktopName(VoicePanel.class, PathFactory.provideVoicePath(v)));
    }

    public static DesktopName[] provideDefaultDesktopNames(ReadablePreset.ReadableVoice v, int sections) {
        return join(provideDefaultDesktopNames(v), new DesktopName(VoiceSectionPanel.class, PathFactory.provideVoiceSectionPath(v, sections)));
    }
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

                 */
    }

    public static DesktopName[] provideDefaultDesktopNames(ContextEditablePreset.EditableVoice[] voices) {
        // if (v.getGroupMode())
        return join(provideDefaultDesktopNames(voices[0].getPreset()), new DesktopName(EditableVoicePanel.class, PathFactory.provideVoicePaths(voices)));
        //  else
        //      return join(provideDefaultDesktopNames(v.getPreset()), new DesktopName(EditableVoicePanel.class, PathFactory.provideVoicePath(v)));
    }
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

        //      return join(provideDefaultDesktopNames(v.getPreset()), new DesktopName(EditableVoicePanel.class, PathFactory.provideVoicePath(v)));
    }

    public static DesktopName[] provideDefaultDesktopNames(ContextEditablePreset.EditableVoice[] voices, int sections) {
        // if (v.getGroupMode())
        return join(provideDefaultDesktopNames(voices), new DesktopName(EditableVoicePanel.class, PathFactory.provideVoiceSectionPaths(voices, sections)));
        //  else
        //      return join(provideDefaultDesktopNames(v.getPreset()), new DesktopName(EditableVoicePanel.class, PathFactory.provideVoicePath(v)));
    }
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

        };
    }

    // PALETTES
    public static ViewInstance provideDeviceView(final DeviceContext device) {
        final DesktopName name = new DesktopName(DevicePanel.class, PathFactory.provideDevicePath(device));
        final ViewPath vp = new ViewPath(ZDesktopManager.dockDEVICES, name);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    DefaultDeviceEnclosurePanel dep = new DefaultDeviceEnclosurePanel();
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

            }
        };
    }

    public static ViewInstance providePropertiesView(final DeviceContext device) {
        final DesktopName name = new DesktopName(PropertiesPanel.class, PathFactory.providePropertiesPath(device));
        final ViewPath vp = new ViewPath(ZDesktopManager.dockPROPERTIES, name);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    ArrayList props = new ArrayList();
View Full Code Here

Examples of com.pcmsolutions.system.paths.DesktopName

            }
        };
    }

    public static ViewInstance provideDefaultPresetContextView(final DeviceContext device) {
        final DesktopName name = new DesktopName(PresetContextEnclosurePanel.class, PathFactory.providePresetsPath(device));
        final ViewPath vp = new ViewPath(ZDesktopManager.dockPRESETS, name);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    PresetContextEnclosurePanel pcep = new PresetContextEnclosurePanel();
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.