我正在为IntelliJ开发一个插件,插件的默认状态是hide(就像其他插件一样 - Maven Projects,Ant Build等...)
我的插件使用com.intellij.openapi.ui.popup.BalloonBuilder包来显示部分具有某种逻辑的类的气球。
现在我想添加显示或打开插件的功能:
builder.setClickHandler(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// Show or open the plugin
}
}, true);
我是怎么做到的?