本文整理汇总了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());
}