Example usage for com.intellij.openapi.wm ToolWindowContentUiType COMBO

List of usage examples for com.intellij.openapi.wm ToolWindowContentUiType COMBO

Introduction

In this page you can find the example usage for com.intellij.openapi.wm ToolWindowContentUiType COMBO.

Prototype

ToolWindowContentUiType COMBO

To view the source code for com.intellij.openapi.wm ToolWindowContentUiType COMBO.

Click Source Link

Usage

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

License:Apache License

@Override
protected void setSelected(ToolWindow window, boolean state) {
    window.setContentUiType(state ? ToolWindowContentUiType.TABBED : ToolWindowContentUiType.COMBO, null);
}