Search in sources :

Example 1 with TriggerDashboardEditorPart

use of com.cubrid.common.ui.cubrid.trigger.editor.TriggerDashboardEditorPart in project cubrid-manager by CUBRID.

the class OpenTargetAction method openTriggersDetailInfoEditor.

/**
	 * open trigger detail info part
	 * @param database
	 */
public void openTriggersDetailInfoEditor(CubridDatabase database) {
    IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
    if (null == window) {
        return;
    }
    if (database == null) {
        return;
    }
    /*Check it open same editor*/
    IEditorPart editorPart = getOpenedEditorPart(database, TriggerDashboardEditorPart.ID);
    if (editorPart == null) {
        OpenTriggerDetailInfoPartProgress progress = new OpenTriggerDetailInfoPartProgress(database);
        progress.loadTriggerInfoList();
        if (progress.isSuccess()) {
            TriggerDashboardInput input = new TriggerDashboardInput(database, progress.getTriggerList());
            try {
                window.getActivePage().openEditor(input, TriggerDashboardEditorPart.ID);
            } catch (PartInitException e) {
                LOGGER.error("Can not initialize the trigger view list UI.", e);
            }
        }
    } else {
        TriggerDashboardEditorPart triggerDetailInfoPart = (TriggerDashboardEditorPart) editorPart;
        window.getActivePage().activate(triggerDetailInfoPart);
        triggerDetailInfoPart.refresh();
    }
}
Also used : IWorkbenchWindow(org.eclipse.ui.IWorkbenchWindow) OpenTriggerDetailInfoPartProgress(com.cubrid.common.ui.spi.progress.OpenTriggerDetailInfoPartProgress) TriggerDashboardInput(com.cubrid.common.ui.cubrid.trigger.editor.TriggerDashboardInput) IEditorPart(org.eclipse.ui.IEditorPart) PartInitException(org.eclipse.ui.PartInitException) TriggerDashboardEditorPart(com.cubrid.common.ui.cubrid.trigger.editor.TriggerDashboardEditorPart)

Example 2 with TriggerDashboardEditorPart

use of com.cubrid.common.ui.cubrid.trigger.editor.TriggerDashboardEditorPart in project cubrid-manager by CUBRID.

the class OpenTargetAction method getOpenedEditorPart.

/**
	 * Get  opened IEditorPart
	 * @param database CubridDatabase
	 * @param editorId String
	 * @return
	 */
private IEditorPart getOpenedEditorPart(CubridDatabase database, String editorId) {
    IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
    if (window == null) {
        return null;
    }
    IEditorReference[] editorReferences = window.getActivePage().getEditorReferences();
    for (IEditorReference reference : editorReferences) {
        if (reference.getId().equals(editorId)) {
            IEditorPart editor = reference.getEditor(false);
            if (editor != null) {
                if (editor instanceof TriggerDashboardEditorPart) {
                    TriggerDashboardEditorPart triggerDetailInfoPart = (TriggerDashboardEditorPart) editor;
                    if (triggerDetailInfoPart.getDatabase().equals(database)) {
                        return editor;
                    }
                } else if (editor instanceof SerialDashboardEditorPart) {
                    SerialDashboardEditorPart serialDetailInfoPart = (SerialDashboardEditorPart) editor;
                    if (serialDetailInfoPart.getDatabase().equals(database)) {
                        return editor;
                    }
                } else if (editor instanceof ViewDashboardEditorPart) {
                    ViewDashboardEditorPart viewsDetailInfoPart = (ViewDashboardEditorPart) editor;
                    if (viewsDetailInfoPart.getDatabase().equals(database)) {
                        return editor;
                    }
                } else if (editor instanceof UserDashboardEditorPart) {
                    UserDashboardEditorPart userDetailInfoPart = (UserDashboardEditorPart) editor;
                    if (userDetailInfoPart.getDatabase().equals(database)) {
                        return editor;
                    }
                } else {
                    return editor;
                }
            }
        }
    }
    return null;
}
Also used : UserDashboardEditorPart(com.cubrid.common.ui.cubrid.user.editor.UserDashboardEditorPart) IWorkbenchWindow(org.eclipse.ui.IWorkbenchWindow) IEditorReference(org.eclipse.ui.IEditorReference) ViewDashboardEditorPart(com.cubrid.common.ui.cubrid.view.editor.ViewDashboardEditorPart) SerialDashboardEditorPart(com.cubrid.common.ui.cubrid.serial.editor.SerialDashboardEditorPart) IEditorPart(org.eclipse.ui.IEditorPart) TriggerDashboardEditorPart(com.cubrid.common.ui.cubrid.trigger.editor.TriggerDashboardEditorPart)

Aggregations

TriggerDashboardEditorPart (com.cubrid.common.ui.cubrid.trigger.editor.TriggerDashboardEditorPart)2 IEditorPart (org.eclipse.ui.IEditorPart)2 IWorkbenchWindow (org.eclipse.ui.IWorkbenchWindow)2 SerialDashboardEditorPart (com.cubrid.common.ui.cubrid.serial.editor.SerialDashboardEditorPart)1 TriggerDashboardInput (com.cubrid.common.ui.cubrid.trigger.editor.TriggerDashboardInput)1 UserDashboardEditorPart (com.cubrid.common.ui.cubrid.user.editor.UserDashboardEditorPart)1 ViewDashboardEditorPart (com.cubrid.common.ui.cubrid.view.editor.ViewDashboardEditorPart)1 OpenTriggerDetailInfoPartProgress (com.cubrid.common.ui.spi.progress.OpenTriggerDetailInfoPartProgress)1 IEditorReference (org.eclipse.ui.IEditorReference)1 PartInitException (org.eclipse.ui.PartInitException)1