當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。