Example usage for com.intellij.openapi.wm ToolWindowAnchor isHorizontal

List of usage examples for com.intellij.openapi.wm ToolWindowAnchor isHorizontal

Introduction

In this page you can find the example usage for com.intellij.openapi.wm ToolWindowAnchor isHorizontal.

Prototype

public boolean isHorizontal() 

Source Link

Usage

From source file:com.intellij.ide.actions.ResizeToolWindowAction.java

License:Apache License

protected void stretch(ToolWindow wnd, boolean isHorizontalStretching, boolean isIncrementAction) {
    ToolWindowScrollable scrollable = getScrollable(wnd, isHorizontalStretching);
    if (scrollable == null)
        return;/*  w ww .j  a  va  2 s  .c o m*/

    ToolWindowAnchor anchor = wnd.getAnchor();
    if (isHorizontalStretching && !anchor.isHorizontal()) {
        incWidth(wnd, scrollable.getNextHorizontalScroll(),
                (anchor == ToolWindowAnchor.LEFT) == isIncrementAction);
    } else if (!isHorizontalStretching && anchor.isHorizontal()) {
        incHeight(wnd, scrollable.getNextVerticalScroll(),
                (anchor == ToolWindowAnchor.TOP) != isIncrementAction);
    }
}