本文整理匯總了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;
}