当前位置: 首页>>代码示例>>Java>>正文


Java PopupMenuEvent.getSource方法代码示例

本文整理汇总了Java中javax.swing.event.PopupMenuEvent.getSource方法的典型用法代码示例。如果您正苦于以下问题:Java PopupMenuEvent.getSource方法的具体用法?Java PopupMenuEvent.getSource怎么用?Java PopupMenuEvent.getSource使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.swing.event.PopupMenuEvent的用法示例。


在下文中一共展示了PopupMenuEvent.getSource方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: popupMenuWillBecomeInvisible

import javax.swing.event.PopupMenuEvent; //导入方法依赖的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();
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:17,代码来源:OutputTab.java

示例2: popupMenuWillBecomeVisible

import javax.swing.event.PopupMenuEvent; //导入方法依赖的package包/类
@Override public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
    if (!menuInitialized) {
        JPopupMenu menu = (JPopupMenu)e.getSource();
        debugHistorySupport.init(menu);
        attachHistorySupport.init(menu);
        menuInitialized = true;
    } else {
        debugHistorySupport.refreshItems();
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:11,代码来源:DebugMainProjectAction.java

示例3: popupMenuWillBecomeInvisible

import javax.swing.event.PopupMenuEvent; //导入方法依赖的package包/类
@Override
public void popupMenuWillBecomeInvisible(final PopupMenuEvent e) {
	lastPopupCloseTime = System.currentTimeMillis();
	JPopupMenu jPopupMenu = (JPopupMenu) e.getSource();
	jPopupMenu.removePopupMenuListener(this);

	for (PopupMenuListener otherListener : otherListeners) {
		jPopupMenu.removePopupMenuListener(otherListener);
	}

}
 
开发者ID:transwarpio,项目名称:rapidminer,代码行数:12,代码来源:DropDownPopupButton.java

示例4: popupMenuWillBecomeVisible

import javax.swing.event.PopupMenuEvent; //导入方法依赖的package包/类
public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
//		GMA 1.4.8: Now check which combo box event is coming from
		if ( e.getSource() == box ) {

//			***** Changed by A.K.M. 6/23/06 *****
//			setPrototypeDisplayValue restricts the size of the box to a fixed 
//			length of eight characters
			box.setPrototypeDisplayValue("WWWWWWWW");
//			The popup listener adjusts the size of the popup to match the size 
//			of the text being displayed
			JComboBox tempBox = (JComboBox) e.getSource();
			Object comp = tempBox.getUI().getAccessibleChild(tempBox, 0);
			if (!(comp instanceof JPopupMenu)) {
				return;
			}
			JComponent scrollPane = (JComponent) ((JPopupMenu) comp).getComponent(0);
			Dimension size = scrollPane.getPreferredSize();
			UnknownDataSet tester1 = (UnknownDataSet)tempBox.getSelectedItem();
			CustomBRGTable.setReverseYAxis(false);
			CustomBRGTable.setIgnoreZeros(false);
//			6.5 is a hardcoded value that approximates the size of a 
//			character in pixels
//			TODO: Find exact size of text in pixels and adjust 
//			size.width accordingly
			if (tester1 != null) {
				if (maxDBNameLength < tester1.desc.name.length())	{
						maxDBNameLength = tester1.desc.name.length();
				}
				size.width = (int)(maxDBNameLength * 6.5);
				scrollPane.setPreferredSize(size);
			}
//			***** Changed by A.K.M. 6/23/06 *****
		}
	}
 
开发者ID:iedadata,项目名称:geomapapp,代码行数:35,代码来源:CustomDB.java

示例5: popupMenuWillBecomeVisible

import javax.swing.event.PopupMenuEvent; //导入方法依赖的package包/类
@Override
public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
    JComboBox combo = (JComboBox) e.getSource();
    confirm(new EventObject(combo.getEditor().getEditorComponent()));
    combo.removePopupMenuListener(this);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:7,代码来源:ConfigurationsComboModel.java


注:本文中的javax.swing.event.PopupMenuEvent.getSource方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。