/* * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.designer; import com.intellij.designer.designSurface.DesignerEditorPanel; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.fileEditor.FileEditorManager; import com.intellij.openapi.project.Project; import com.intellij.openapi.util.Disposer; import com.intellij.openapi.wm.ToolWindowAnchor; import com.intellij.openapi.wm.ToolWindowManager; import com.intellij.openapi.wm.ex.ToolWindowEx; import com.intellij.openapi.wm.impl.content.ToolWindowContentUi; import com.intellij.ui.content.Content; import com.intellij.ui.content.ContentManager; import icons.UIDesignerNewIcons; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; /** * @author Alexander Lobas */ public final class DesignerToolWindowManager extends AbstractToolWindowManager { private DesignerToolWindow myToolWindowContent; ////////////////////////////////////////////////////////////////////////////////////////// // // Public Access // ////////////////////////////////////////////////////////////////////////////////////////// public DesignerToolWindowManager(Project project, FileEditorManager fileEditorManager) { super(project, fileEditorManager); } public static DesignerToolWindow getInstance(DesignerEditorPanel designer) { DesignerToolWindowManager manager = getInstance(designer.getProject()); if (manager.isEditorMode()) { return (DesignerToolWindow)manager.getContent(designer); } return manager.myToolWindowContent; } public static DesignerToolWindowManager getInstance(Project project) { return project.getComponent(DesignerToolWindowManager.class); } ////////////////////////////////////////////////////////////////////////////////////////// // // Impl // ////////////////////////////////////////////////////////////////////////////////////////// @Override protected void initToolWindow() { if (myToolWindowContent == null) { myToolWindowContent = new DesignerToolWindow(myProject, true); Disposer.register(this, () -> myToolWindowContent.dispose()); } myToolWindow = ToolWindowManager.getInstance(myProject).registerToolWindow(DesignerBundle.message("designer.toolwindow.name"), false, getAnchor(), myProject, true); myToolWindow.setIcon(UIDesignerNewIcons.ToolWindow); if (!ApplicationManager.getApplication().isHeadlessEnvironment()) { myToolWindow.getComponent().putClientProperty(ToolWindowContentUi.HIDE_ID_LABEL, "true"); } ((ToolWindowEx)myToolWindow).setTitleActions(myToolWindowContent.createActions()); initGearActions(); ContentManager contentManager = myToolWindow.getContentManager(); Content content = contentManager.getFactory() .createContent(myToolWindowContent.getToolWindowPanel(), DesignerBundle.message("designer.toolwindow.title"), false); content.setCloseable(false); content.setPreferredFocusableComponent(myToolWindowContent.getComponentTree()); contentManager.addContent(content); contentManager.setSelectedContent(content, true); myToolWindow.setAvailable(false, null); } @Override protected ToolWindowAnchor getAnchor() { DesignerCustomizations customization = getCustomizations(); return customization != null ? customization.getStructureAnchor() : ToolWindowAnchor.LEFT; } @Override protected void updateToolWindow(@Nullable DesignerEditorPanelFacade designer) { myToolWindowContent.update((DesignerEditorPanel)designer); if (designer == null) { myToolWindow.setAvailable(false, null); } else { myToolWindow.setAvailable(true, null); myToolWindow.show(null); } } @NotNull @Override public String getComponentName() { return "UIDesignerToolWindowManager2"; } ////////////////////////////////////////////////////////////////////////////////////////// // // Impl // ////////////////////////////////////////////////////////////////////////////////////////// @Override protected LightToolWindow createContent(@NotNull DesignerEditorPanelFacade designer) { DesignerToolWindow toolWindowContent = new DesignerToolWindow(myProject, false); toolWindowContent.update((DesignerEditorPanel)designer); return createContent(designer, toolWindowContent, DesignerBundle.message("designer.toolwindow.title"), UIDesignerNewIcons.ToolWindow, toolWindowContent.getToolWindowPanel(), toolWindowContent.getComponentTree(), 320, toolWindowContent.createActions()); } }