Examples of ViewPath


Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    public static ViewInstance provideDefaultView(final ContextEditablePreset p) {
        final DesktopName[] names = provideDefaultDesktopNames(p);
        final ViewPath vp = new ViewPath(ZDesktopManager.dockWORKSPACE, names);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    DeviceWorkspaceEnclosurePanel dep = new DeviceWorkspaceEnclosurePanel();
                    dep.init(p.getDeviceContext(), new DefaultPresetEditorPanel(p));
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

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

    public static ViewInstance provideDefaultView(final ReadablePreset.ReadableVoice voice, final boolean empty) {
        final DesktopName[] names = provideDefaultDesktopNames(voice);
        final ViewPath vp = new ViewPath(ZDesktopManager.dockWORKSPACE, names);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    DeviceWorkspaceEnclosurePanel dep = new DeviceWorkspaceEnclosurePanel();
                    if (empty) {
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    public static ViewInstance provideDefaultView(final ReadablePreset.ReadableVoice voice, final int sections, final TitleProvider tp) {
        final DesktopName[] names = provideDefaultDesktopNames(voice, sections);
        final ViewPath vp = new ViewPath(ZDesktopManager.dockWORKSPACE, names);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    DeviceWorkspaceEnclosurePanel dep = new DeviceWorkspaceEnclosurePanel();
                    VoiceSectionPanel vsp = new VoiceSectionPanel(tp, ViewIndexFactory.getVoiceSectionIndex(sections));
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    public static ViewInstance provideDefaultView(final ContextEditablePreset.EditableVoice[] voices, final boolean empty) {
        final DesktopName[] names = provideDefaultDesktopNames(voices);
        final ViewPath vp = new ViewPath(ZDesktopManager.dockWORKSPACE, names);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    DeviceWorkspaceEnclosurePanel dep = new DeviceWorkspaceEnclosurePanel();
                    if (empty) {
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    public static ViewInstance provideDefaultView(final ContextEditablePreset.EditableVoice[] voices, final int sections, final TitleProvider tp) {
        final DesktopName[] names = provideDefaultDesktopNames(voices, sections);
        final ViewPath vp = new ViewPath(ZDesktopManager.dockWORKSPACE, names);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    int gridIndex = 0;
                    DeviceWorkspaceEnclosurePanel dep = new DeviceWorkspaceEnclosurePanel();
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

    }

    // 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();
                    DevicePanel dp = new DevicePanel(device);
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    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();
                    props.addAll(device.getDevicePreferences().getPropertyList());
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    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();
                    pcep.init(device);
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    public static ViewInstance provideDefaultSampleContextView(final DeviceContext device) {
        final DesktopName name = new DesktopName(SampleContextEnclosurePanel.class, PathFactory.provideSamplesPath(device));
        final ViewPath vp = new ViewPath(ZDesktopManager.dockSAMPLES, name);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    SampleContextEnclosurePanel scep = new SampleContextEnclosurePanel();
                    scep.init(device);
View Full Code Here

Examples of com.pcmsolutions.system.paths.ViewPath

        };
    }

    public static ViewInstance provideMultiModeView(final DeviceContext device) {
        final DesktopName name = new DesktopName(MultiModeEnclosurePanel.class, PathFactory.provideMultiModePath(device));
        final ViewPath vp = new ViewPath(ZDesktopManager.dockMULTI, name);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    MultiModeEnclosurePanel mmep = new MultiModeEnclosurePanel();
                    mmep.init(device);
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.