Example usage for com.intellij.openapi.wm ToolWindowScrollable getNextVerticalScroll

List of usage examples for com.intellij.openapi.wm ToolWindowScrollable getNextVerticalScroll

Introduction

In this page you can find the example usage for com.intellij.openapi.wm ToolWindowScrollable getNextVerticalScroll.

Prototype

int getNextVerticalScroll();

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;/*from  www . j  av a2 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);
    }
}