Examples of QuickSwitchEditorWindow


Examples of org.jitterbit.application.ui.window.editor.QuickSwitchEditorWindow

        notifications.addNotification(editor);
    }

    @Override
    public void openQuickSelector() {
        QuickSwitchEditorWindow window = QuickSwitchEditorWindow.open(getEditorService().getAppWin());
        if (window != null) {
            window.setActiveArea(tabPane.asComponent());
        }
    }
View Full Code Here

Examples of org.jitterbit.application.ui.window.editor.QuickSwitchEditorWindow

        EditorService editorService = model.getEditorService();
        EditorSelectorWindow window;
        if (editors.size() <= THUMBNAIL_SELECTOR_LIMIT) {
            window = new EditorThumbnailSelectorWindow(editorService, editors, southPosition);
        } else {
            QuickSwitchEditorWindow listWindow = new QuickSwitchEditorWindow(editorService, editors);
            listWindow.setIncludeSearchField(false);
            window = listWindow;
        }
        if (dialog != null) {
            window.setDialog(dialog);
        }
View Full Code Here

Examples of org.jitterbit.application.ui.window.editor.QuickSwitchEditorWindow

    protected abstract Component getActiveArea();

    @Override
    public final void openGlobalEditorSelector() {
        WindowCornerPosition position = getEditorListPosition();
        QuickSwitchEditorWindow window = QuickSwitchEditorWindow.openAt(model.getAppWin(), position);
        if (window != null) {
            Component activeArea = getActiveArea();
            window.setActiveArea(activeArea);
        }
    }
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.