How to create an ActionToolbar with visible captions (menu-like)
Need to create a panel with actions similar to a menu list.
The only method i found is ActionManager.getInstance().createActionToolbar(...)
But this is creating an action toolbar which can be vertically oriented, but shows icons only. Need to show the action captions as well, like a menu.
Is this possible with the intellij.ui-api?
请先登录再写评论。
Have found the answer myself... :)
JBPopupFactory.getInstance().createActionGroupPopup(...)