本文整理汇总了Java中javax.swing.JPopupMenu.removeAll方法的典型用法代码示例。如果您正苦于以下问题:Java JPopupMenu.removeAll方法的具体用法?Java JPopupMenu.removeAll怎么用?Java JPopupMenu.removeAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.JPopupMenu
的用法示例。
在下文中一共展示了JPopupMenu.removeAll方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: popupMenuWillBecomeInvisible
import javax.swing.JPopupMenu; //导入方法依赖的package包/类
public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
JPopupMenu popup = (JPopupMenu) e.getSource();
popup.removeAll();
popup.setInvoker(null);
// hack
KeyStroke esc = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0);
JComponent c = getOutputPane().getTextView();
c.getInputMap().put(esc, handle);
getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(esc, handle);
//hack end
popup.removePopupMenuListener(this);
for (TabAction action : popupItems) {
action.clearListeners();
}
}
示例2: getPopupMenu
import javax.swing.JPopupMenu; //导入方法依赖的package包/类
public @Override JPopupMenu getPopupMenu(){
JPopupMenu pm = super.getPopupMenu();
pm.removeAll();
boolean enable = false;
BaseKit bKit = getKit();
if (bKit==null) bKit = BaseKit.getKit(NbEditorKit.class);
if (bKit!=null){
Action action = bKit.getActionByName(NbEditorKit.generateFoldPopupAction);
if (action instanceof BaseAction) {
JTextComponent component = NbCodeFoldingAction.getComponent();
MimePath mimePath = component == null ? MimePath.EMPTY : MimePath.parse(DocumentUtilities.getMimeType(component));
Preferences prefs = MimeLookup.getLookup(mimePath).lookup(Preferences.class);
boolean foldingAvailable = prefs.getBoolean(SimpleValueNames.CODE_FOLDING_ENABLE, EditorPreferencesDefaults.defaultCodeFoldingEnable);
if (foldingAvailable){
ActionMap contextActionmap = org.openide.util.Utilities.actionsGlobalContext().lookup(ActionMap.class);
if (contextActionmap!=null){
foldingAvailable = contextActionmap.get(BaseKit.collapseFoldAction) != null &&
component != null;
if (!foldingAvailable){
bKit = BaseKit.getKit(NbEditorKit.class);
if (bKit!=null){
Action defaultAction = bKit.getActionByName(NbEditorKit.generateFoldPopupAction);
if (defaultAction instanceof BaseAction) action = defaultAction;
}
}
}
}
JMenu menu = (JMenu)((BaseAction)action).getPopupMenuItem(foldingAvailable ? component : null);
if (menu!=null){
Component comps[] = menu.getMenuComponents();
for (int i=0; i<comps.length; i++){
pm.add(comps[i]);
if (comps[i].isEnabled() && !(comps[i] instanceof JSeparator)) {
enable = true;
}
}
}
}
}
setEnabled(enable);
pm.pack();
return pm;
}