Search in sources :

Example 1 with SerialDashboardEditorPart

use of com.cubrid.common.ui.cubrid.serial.editor.SerialDashboardEditorPart in project cubrid-manager by CUBRID.

the class OpenTargetAction method openSerialsDetailInfoEditor.

/**
	 * open serial detail info part
	 * @param database
	 */
public void openSerialsDetailInfoEditor(CubridDatabase database, String serialName) {
    IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
    if (null == window) {
        return;
    }
    if (database == null) {
        return;
    }
    /*Check it open same editor*/
    IEditorPart editorPart = getOpenedEditorPart(database, SerialDashboardEditorPart.ID);
    if (editorPart == null) {
        OpenSerialDetailInfoPartProgress progress = new OpenSerialDetailInfoPartProgress(database);
        progress.loadSerialInfoList();
        if (progress.isSuccess()) {
            SerialDashboardInput input = new SerialDashboardInput(database, progress.getSerialList());
            try {
                SerialDashboardEditorPart serialDetailInfoPart = null;
                serialDetailInfoPart = (SerialDashboardEditorPart) window.getActivePage().openEditor(input, SerialDashboardEditorPart.ID);
                serialDetailInfoPart.select(serialName);
            } catch (PartInitException e) {
                LOGGER.error("Can not initialize the serial view list UI.", e);
            }
        }
    } else {
        SerialDashboardEditorPart serialDetailInfoPart = (SerialDashboardEditorPart) editorPart;
        window.getActivePage().activate(serialDetailInfoPart);
        serialDetailInfoPart.refresh();
        serialDetailInfoPart.select(serialName);
    }
}
Also used : IWorkbenchWindow(org.eclipse.ui.IWorkbenchWindow) OpenSerialDetailInfoPartProgress(com.cubrid.common.ui.spi.progress.OpenSerialDetailInfoPartProgress) SerialDashboardEditorPart(com.cubrid.common.ui.cubrid.serial.editor.SerialDashboardEditorPart) SerialDashboardInput(com.cubrid.common.ui.cubrid.serial.editor.SerialDashboardInput) IEditorPart(org.eclipse.ui.IEditorPart) PartInitException(org.eclipse.ui.PartInitException)

Example 2 with SerialDashboardEditorPart

use of com.cubrid.common.ui.cubrid.serial.editor.SerialDashboardEditorPart 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

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