本文整理匯總了Java中javax.swing.LookAndFeel.makeComponentInputMap方法的典型用法代碼示例。如果您正苦於以下問題:Java LookAndFeel.makeComponentInputMap方法的具體用法?Java LookAndFeel.makeComponentInputMap怎麽用?Java LookAndFeel.makeComponentInputMap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.LookAndFeel
的用法示例。
在下文中一共展示了LookAndFeel.makeComponentInputMap方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: installKeyboardActionsImpl
import javax.swing.LookAndFeel; //導入方法依賴的package包/類
/**
* Called by the KeyboardHandler when a popup is made visible.
*/
void installKeyboardActionsImpl()
{
Object[] bindings;
if (popupMenu.getComponentOrientation().isLeftToRight())
{
bindings = (Object[])
SharedUIDefaults.get("PopupMenu.selectedWindowInputMapBindings");
}
else
{
bindings = (Object[]) SharedUIDefaults.get
("PopupMenu.selectedWindowInputMapBindings.RightToLeft");
}
InputMap inputMap = LookAndFeel.makeComponentInputMap(popupMenu, bindings);
SwingUtilities.replaceUIInputMap(popupMenu,
JComponent.WHEN_IN_FOCUSED_WINDOW,
inputMap);
// Install ActionMap.
SwingUtilities.replaceUIActionMap(popupMenu, getActionMap());
}
示例2: installKeyboardActions
import javax.swing.LookAndFeel; //導入方法依賴的package包/類
/**
* This method installs the keyboard actions for the JMenuBar.
*/
protected void installKeyboardActions()
{
// Install InputMap.
Object[] bindings =
(Object[]) SharedUIDefaults.get("MenuBar.windowBindings");
InputMap inputMap = LookAndFeel.makeComponentInputMap(menuBar, bindings);
SwingUtilities.replaceUIInputMap(menuBar,
JComponent.WHEN_IN_FOCUSED_WINDOW,
inputMap);
// Install ActionMap.
SwingUtilities.replaceUIActionMap(menuBar, getActionMap());
}
示例3: installKeyboardActions
import javax.swing.LookAndFeel; //導入方法依賴的package包/類
/**
* This method installs keyboard actions for the JOptionpane.
*/
protected void installKeyboardActions()
{
// Install the input map.
Object[] bindings =
(Object[]) SharedUIDefaults.get("OptionPane.windowBindings");
InputMap inputMap = LookAndFeel.makeComponentInputMap(optionPane,
bindings);
SwingUtilities.replaceUIInputMap(optionPane,
JComponent.WHEN_IN_FOCUSED_WINDOW,
inputMap);
// FIXME: The JDK uses a LazyActionMap for parentActionMap
SwingUtilities.replaceUIActionMap(optionPane, getActionMap());
}