本文整理汇总了Java中com.intellij.openapi.actionSystem.Presentation.setHoveredIcon方法的典型用法代码示例。如果您正苦于以下问题:Java Presentation.setHoveredIcon方法的具体用法?Java Presentation.setHoveredIcon怎么用?Java Presentation.setHoveredIcon使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.actionSystem.Presentation
的用法示例。
在下文中一共展示了Presentation.setHoveredIcon方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: processPresentation
import com.intellij.openapi.actionSystem.Presentation; //导入方法依赖的package包/类
protected void processPresentation(Presentation presentation) {
if (!UISettings.getInstance().SHOW_ICONS_IN_MENUS || myForceHide) {
presentation.setIcon(null);
presentation.setDisabledIcon(null);
presentation.setHoveredIcon(null);
presentation.putClientProperty(HIDE_ICON, Boolean.TRUE);
}
}
示例2: update
import com.intellij.openapi.actionSystem.Presentation; //导入方法依赖的package包/类
protected void update(Presentation presentation) {
presentation.setDescription("Convert orientation to " + (myHorizontal ? VALUE_VERTICAL : VALUE_HORIZONTAL));
Icon icon = myHorizontal ? AndroidDesignerIcons.SwitchHorizontalLinear : AndroidDesignerIcons.SwitchVerticalLinear;
presentation.setIcon(icon);
presentation.setHoveredIcon(icon);
}