List of usage examples for com.intellij.openapi.util DimensionService setLocation
public synchronized void setLocation(String key, Point point)
From source file:com.intellij.execution.ui.layout.impl.GridCellImpl.java
License:Apache License
public void saveUiState() { saveProportions();// w w w. jav a 2 s .c o m for (Content each : myContents.getKeys()) { saveState(each, false); } for (Content each : myMinimizedContents) { saveState(each, true); } final DimensionService service = DimensionService.getInstance(); final Dimension size = myContext.getContentManager().getComponent().getSize(); service.setSize(getDimensionKey(), size, myContext.getProject()); if (myContext.getWindow() != 0) { final Window frame = SwingUtilities.getWindowAncestor(myPlaceholder); if (frame != null) { service.setLocation(getDimensionKey(), frame.getLocationOnScreen()); } } }